3 votes
7
If N = 15! – 13!, then the largest prime number that divides N is _____________.
1 votes
8
In the context of merge sort, which of the following are true?$1.\ T(n)\ =\ o(n^2)\\ 2.\ T(n)\ =\ O(n^2)\\3.\ T(n)\ =\ \omega(n)\\4.\ T(n)\ =\ \Omega(n) $
1 votes
10
1.Asynchronous mode of transmission is suitable for systems with multiple peripheral devices.a) Trueb) False2.The asynhronous BUS mode of transmission allows for a faster...
2 votes
15
Assume that $a[4]$ is a one-dimensional array of $4$ elements, $p$ is a pointer variable and $p = a$ is performed. Now, which among these expressions is illegal?$p == a[0...
2 votes
16
Choose the correct operators to fill in the blanks:int i,j,k; i=1;j=2;k=3; printf("%d",i___5___j___2____k);Output is: $2$ + % – +* / – ++ % + /* % – /
0 votes
17
0 votes
18
what is the output of the following program ??
1 votes
19
rajiv spend 40% of his slary on food ,20%on house rent 10% on conveyance .if his saving at the month are 2000 rupees ,then his montholy slary is ............................
1 votes
21
#include <stdio.h int main() { unsigned char a = 5; a |= (1<<((sizeof(char)<<3)-1)); char b = a; printf("%d %d\n",b,a); printf("%u %u\n",b,a); }If the size of a char data...
0 votes
25