New ! Computer Science MCQ Practise Tests



12th Standard English Medium Computer Science Subject Creative 5 Mark Questions with Solution Part - I

12th Standard

    Reg.No. :
  •  
  •  
  •  
  •  
  •  
  •  

Computer Science

Time : 01:00:00 Hrs
Total Marks : 125

    5 Marks

    25 x 5 = 125
  1. Explain the concept access control.

  2. Explain complexity of an algorithm.

  3. Differentiate Algorithm and program

  4. Explain the sorting algorithm that uses n-1 number passes to get the final sorted list.

  5. Explain Jump statement in python.

  6. Explain different types arguments used in python with an example.

  7. Write a python program to find Fibonacci series of n terms using recursion.

  8. Write a python program to print the following pattern
    *
    **
    ***
    ****
    *****

  9. How will access all elements of a list? Write the execution table example.

  10. Write a program to create a list of numbers in the range 1 to 10. Then delete all the odd numbers from the list and print the final list.

  11. Explain the detail about some important list function with an example.
    (i) copy ()
    (ii) count ()
    (iii) index ()
    (iv) reverse ()

  12. Write a python program to read marks of six subjects and to print the marks scored in each subject and show the total marks.

  13. Write a program to check and print if the given number is negative or positive using class.

  14. Write a menu driven program that keeps record of books available in you school library.

  15. Write a program to store product and its cost price. Display all the available products and prompt to enter quantity of all the products. Finally generate a bill which displays the total amount to be paid.

  16. Explain the components of DBMS.

  17. Write the processing skills of SQL.

  18. Write a note on
    (i) TRUNCATE command.
    (ii) DROP TABLE command.

  19. Write a program to read the CSV file with user defined delimiter.

  20. Write a program to read the CSV file and store it in a list.

  21. Write a program to read CSV file with user Defined Delimiter into a Dictionary.

  22. Write a program to set data at runtime and writing it in a CSV file.

  23. Write a python program to execute the following C++ program.
    /*. To check whether the number is palindrome or not using while Ioop.*/
    // Now select File →New in Notepad and type the C++ program
    #include < iostream >
    using namespace std;
    intmain ( )
    {
    int n, num, digit, rev = 0;
    cout<<  "Enter a positive number: ";
    cin >>num;
    n= num;
    while(num)
    {digit = num % 10;
    rev = (rev * 10) + digit;
    num = num / 10; }
    cout<< "The reverse of the number is: " << rev <<endl;
    if(n == rev)
    cout< < "The number is a palindrome";
    else
    cout << "The number is not a palindrome";
    return 0;
    }
    // Save this file as pali_cpp.cpp

  24. Write a python code to display the following, plot.

  25. Write s python code to display to following plot.
    Program

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

Reviews & Comments about 12th Standard English Medium Computer Science Subject Creative 5 Mark Questions with Solution Part - I

Write your Comment