UGC-NET CS 2017 Nov – II
Question 1 |
If the time is now 4 O’clock, what will be the time after 101 hours from now ?
9 O’clock | |
8 O’clock | |
5 O’clock | |
4 O’clock |
Discuss it
We know that there are 24 hours in a day, so we will take mod for 101 hours
ie
(101 mod 24) = 5. So residue is 5.
On adding these remaining 5 hours to the present time will give 9 O'CLOCK time.
Question 2 |
(635)4 | |
(32312)4 | |
(21323)4 | |
(1301)4 |
Discuss it
m = 3*42 + 1*41 + 3*40 m = 48 + 4 + 3 m = 55. Now n=3*42 + 2*41 +2*40 n = 48 + 8 +2 n = 58. m + n = 55 + 58 m + n = 113Now we have to convert 113 in to base 4:
ie step 1-113 % 4 = 1 113 / 4 = 28 step 2- 28 % 4 = 0 28 / 4 = 7 step 3- 7 % 4 = 3 7 / 4 = 1 step 4- 1 % 4 = 1 1 / 4 --> will not divide it in quant. So we have to stop here.The answer will be Residue from step 4 to step 1 inorder ie 1301 Ans-(1301)4
Question 3 |
Find the boolean product A⊙B of the two matrices.
(1) | |
(2) | |
(3) | |
(4) |
Discuss it
Here we have to follow two basics:
1- Matrix multiplication rule- For multiplication of two matrices, column in first matrix must be equal to rows in second matrix.
2- We have to find boolean product of two matrices so, we must know boolean product
ie
No we have A=
and B=
Now the product AB=
AB=
So, option (A) is correct.
Question 4 |
720 | |
120 | |
60 | |
360 |
Discuss it
Question 5 |

(1) | |
(1),(2) | |
(1),(2),(3) | |
(1),(2),(3),(4) |
Discuss it
Question 6 |

(A+C).D+B | |
(A+B).C+D | |
(A+D).C+B | |
(A+C).B+D |
Discuss it

Question 7 |
7353 | |
1353 | |
5651 | |
5657 |
Discuss it
Question 8 |
Only (I) and (II) | |
Only (II) and (III) | |
Only (III) and (IV) | |
None of the above |
Discuss it
Question 9 |
‘ptrdata’ is a pointer to a data type. The expression *ptrdata++ is evaluated as (in C++) :
Depends on compiler | |
(*ptrdata)++ | |
*(ptrdata)++ | |
*(ptrdata++) |
Discuss it
Here ++ (unary operator) have high precedence than * (unary operator). So ++ will be evaluated first then * will be in action. So A is the correct option.
So, option (A) is correct.
Question 10 |
Unary Operator | |
Logical not | |
Array element access | |
addressof |
Discuss it