New ! Computer Science MCQ Practise Tests



11th Standard English Medium Computer Science Subject Arrays and Structures Book Back 3 Mark Questions with Solution

11th Standard

    Reg.No. :
  •  
  •  
  •  
  •  
  •  
  •  

Computer Science

Time : 01:00:00 Hrs
Total Marks : 15

    3 Marks

    5 x 3 = 15
  1. Define an Array? What are the types?

  2. Write note an Array of strings

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

  4. How will you pass a structure to a function?

  5. 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;
    }

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

Reviews & Comments about 11th Standard English Medium Computer Science Subject Arrays and Structures Book Back 3 Mark Questions with Solution

Write your Comment