Posts

Showing posts from March, 2016

Project File for Class XI C++ Uploaded.

Hi, friends I have uploaded Practical File Coding for class XI students studying C++. I hope this will be helpful to you, with this you can complete your practical file very easily. https://drive.google.com/open?id=0B0gZdYWZqhtgMXlzMDA0UEVOSlU

Coding for Class XI Uploaded. Click on the link below to view.

http://wapcplusplus.blogspot.in/p/coding-class-xi.html //WAP to read marks of 3 students and store them under an array. #include<iostream.h> #include<conio.h> void main() {      const int size=3;      float marks[size];      //    cout<<"Enter marks of student"<<i+1<<"\n";      for(int i=0; i<size;i++)      {            cout<<"Enter marks of student"<<i+1<<"\n";            cin>>marks[i];      }      cout<<"\n";      for(i=0;i<size;i++)      cout<<"Marks["<<i<<"]="<<marks[i]<<"\n";      getch(); } -----------------------------------------------...

Class XI | Chapter 1: Computer Overview Uploaded

Image
Hi, friends Class XI, chapter 1 uploaded. Must check out. It is informative. http://wapcplusplus.blogspot.in/p/class-xi-chapter-1.html Computer Fundamentals Introduction Computers are seen everywhere around us, in all spheres of life. May it be the field of education and research, travel and tourism, weather forecasting, social networking, ecommerce or any other, computers have now become an indispensable part of our lives. The  manner,  in  which  computers  have  revolutionized  our  lives  because  of  their accuracy and speed of performing a job, is truly remarkable. Today no organization can function without a computer. In fact various organizations are trying to become paper free owing to benefits of computers. But the computers of today have evolved over the years from a simple calculating device to the portable high speed computers that we see today. Evolution of Computers The growth of computer industry start...