Posts

Showing posts from September, 2021

Creativity, Innovation and Invention

Image
Creativity, Innovation and Invention Creativity- Networking is the best idea to get a new perspective for you. Mix with some best people around the globe. They will appreciate your idea and also you will get some ideas and inspiration to create a new in a completely different way. You will get a new perspective. Creativity is the imagination for generating new ideas, or alternative ideas or possibilities.  Want to go where usually don't expect.  Making a network communication that did not think. Trying to engage the brain to solve a problem in different ways of thinking Create a social value Example- Painting Innovation- Innovation is the implementation of new ideas to add some value to the organization, business and society to explore in some improved version. The ultimate matter is to bring change. Change is magic for innovation. It is adding value to something existing. Any person in an organization can contribute to innovation by branding the organization or business entity. S

C++ Programming Practice

// This program is written to find the sum of a series  1+2+3+.........+n. This program will calculate the sum value from 1 to entered value n. This program is tested. You can run it.// #include<iostream.h> #include<conio.h> void main() { clrscr(); long double sum=0,n,i; cout<<"enter n:"; cin>>n; for(i=1;i<=n;i++) { sum+=i; } cout<<sum; getch(); }  NB: You can put your valuable comments to improve the blog content.  The writer is Oracle Certified Professional, trainer, innovator,  researcher and can be contacted at the mail rashid.eee.cse@gmail.com My ORCID id