Computer Science - Online Test

Q1. Which of the following device identifies the location when address is placed in the memory address register?
Answer : Option C
Explaination / Solution:
No Explaination.


Q2. File Management manages
Answer : Option D
Explaination / Solution:
No Explaination.


Q3. Identify the default email client in Ubuntu
Answer : Option A
Explaination / Solution:
No Explaination.


Q4. Returning from the function is done by using
Answer : Option B
Explaination / Solution:
No Explaination.


Q5.

What is the output of the following snippet?

char ch = ‘A’;

ch = ch + 1;

Answer : Option A
Explaination / Solution:
No Explaination.


Q6. Identify the odd one from the keywords of jump statements:
Answer : Option B
Explaination / Solution:
No Explaination.


Q7. Which of the following header file defines the standard I/O predefined functions ?
Answer : Option A
Explaination / Solution:
No Explaination.


Q8. The data elements in the structure are also known as
Answer : Option B
Explaination / Solution:
No Explaination.


Q9. “Write once and use it multiple time” can be achieved by
Answer : Option B
Explaination / Solution:
No Explaination.


Q10.

 class x

{

int y;

 public:

 x(int z){y=z;}

 } x1[4];

int main()

{ x x2(10); return 0;}

How many objects are created for the above program

Answer : Option B
Explaination / Solution:
No Explaination.