New ! Computer Science MCQ Practise Tests



11th Standard English Medium Computer Science Subject Book Back 3 Mark Questions with Solution Part - I

11th Standard

    Reg.No. :
  •  
  •  
  •  
  •  
  •  
  •  

Computer Science

Time : 01:00:00 Hrs
Total Marks : 75

    3 Marks

    25 x 3 = 75
  1. Write the applications of computer

  2. Name any three output devices.

  3. Write short note on impact printer.

  4. Differentiate CD and DVD.

  5. What are the differences between Windows and Linux Operating system?

  6. What is abstraction?

  7. What is the form and meaning of assignment statement?

  8. If C is false in line 2, trace the control flow in this algorithm.
    1 S1
    2 -- C is false
    3 if C
    4 S2
    5 else
    6 S3
    7 S4

  9. A knockout tournament is a series of games. Two players compete in each game; the loser is knocked out (i.e. does not play anymore), the winner carries on. The winner of the tournament is the player that is left after all other players have been knocked out. Suppose there are 1234 players in a tournament. How many games are played before the tournament winner is decided?

  10. Is C++ case sensitive? What is meant by the term “case sensitive”?

  11. Assume a=10, b=15; What will be the value of a^b?

  12. What are the differences between “Logical error” and “Syntax error”?

  13. Why is main function special?

  14. Rewrite the following code so that it is functional:
    v = 5;
    do;
    {
    total += v;
    cout << total;
    while v <= 10

  15. Write a C++ program to accept and print your name?

  16. The following code sums up the total of all students name starting with ‘S’ and display it.Fill in the blanks with required statements.
    struct student {int exam no,lang,eng,phy,che,mat,csc,total;char name[15];};
    int main()
    {
    student s[20];
    for(int i = 0; i < 20; i ++)
    {
    …………………….. //accept student details
    }
    for(int i = 0; i < 20; i ++)
    {
    …………………….. //check for name starts with letter “S”
    ……………………. // display the detail of the checked name
    }
    return 0;
    }

  17. Write a note on the features of procedural programming.

  18. What do you mean by modularization and software reuse?

  19. Rewrite the following program after removing the syntax errors if any and underline the errors:
    #include
    $include
    class mystud
    { int studid =1001;
    char name[20];
    public
    mystud( ) { }
    void register ( )
    {cin>>stdid; gets(name); }
    void display ( )
    {cout<<studid<<”: “<<name<<endl;}
    }
    int main( )
    { mystud MS;
    register.MS( );
    MS.display( );
    }

  20. What are advantages of declaring constructors and destructor under public accessability?

  21. Discuss the benefits of constructor overloading?

  22. What is the difference between polymorphism and inheritance though are used for reusability of code?

  23. Write some facts about the execution of constructors and destructors in inheritance.

  24. Write about encryption and decryption.

  25. What are the guidelines to be followed by any computer user?

*****************************************

Reviews & Comments about 11th Standard English Medium Computer Science Subject Book Back 3 Mark Questions with Solution Part - I

Write your Comment