Class 11
SA1-Computer Science (C++) Sample Question Paper
(2014-15)(submitted by a student)
Computer Science
|
Total Marks-45 | |
Q.1 | (a) What are the major strengths of a computer? | (1) |
(b) State the basic units of the computer. Name the subunits that make up the CPU. | (2) | |
(c) What is the difference between software and firmware? | (1) | |
(d) What is meant by the term throughput? What is its significance? | (2) | |
Q.2 | (a) What is the difference between copying and moving files and folders? | (2) |
(b) How are devises treated in C++? | (1) | |
(c) What will be the output of following code fragment when the input is (i) 'C' (ii) 'A' (iii) 'D' (iv) 'F'? cin>>ch; switch(ch) { case 'A' : cout <<"Grade A\n"; break; case 'B' : cout<<"Grade B\n"; case 'C' : cout<<"Grade C\n"; break; case 'D' : cout<<"Grade D\n"; break; default : cout<<"Grade F\n"; } |
(2) | |