Computer Science - Online Test

Q1. From the options given below, choose the operations managed by the operating system.
Answer : Option D
Explaination / Solution:
No Explaination.


Q2. Which of the following activities is not algorithmic in nature?
Answer : Option D
Explaination / Solution:
No Explaination.


Q3.

Which of the following properties is true after the assignment (at line 3?

1 -- i+j = 0

2 i, j := i+1, j-1

3 -- ?

Answer : Option C
Explaination / Solution:
No Explaination.


Q4. We wish to cover a chessboard with  dominoes, the number of black squares and the number of white squares covered by dominoes, respectively, placing a domino can be modeled by
Answer : Option D
Explaination / Solution:
No Explaination.


Q5. Assume a=5, b=6; what will be result of a&b?
Answer : Option A
Explaination / Solution:

a=5 0 1 0 1

b=6 0 1 1 0

a&b 0 1 0 0 


Q6. This function is used to convert the given character into its lowercase.
Answer : Option D
Explaination / Solution:
No Explaination.


Q7. The structure declared within another structure is called
Answer : Option B
Explaination / Solution:
No Explaination.


Q8. In this method ,the name of the constructor is explicitly given to invoke the parameterized constructor so that the object can be created and initialized .
Answer : Option B
Explaination / Solution:
No Explaination.


Q9. In C++, the group of statements should enclosed within:
Answer : Option A
Explaination / Solution:
No Explaination.


Q10. Which of the following is a user defined data type?
Answer : Option A
Explaination / Solution:
No Explaination.