4 votes
3 answers
41
The expression $1 * 2 \wedge 3 * 4 \wedge 5 * 6$ will be evaluated as$32^{30}$$162^{30}$49152173458In original quetion 5 is not given.
6 votes
3 answers
42
A one dimensional array A has indices 1....75. Each element is a string and takes up three memory words. The array is stored at location 1120 decimal. The starting addres...
6 votes
2 answers
43
The process of organizing the memory into two banks to allow $8$-and $16$-bit data operation is calledBank switchingIndexed mappingTwo-way memory interleavingMemory segme...
7 votes
4 answers
45
In which addressing mode, the effectives address of the operand is generated by adding a constant value to the content of a register?Absolute modeIndirect modeImmediate m...
6 votes
1 answer
46
The switching expression corresponding to $f(\text{A, B, C, D}) = \Sigma(1, 4, 5, 9, 11, 12)$ isBC'D' + A'C'D + AB'DABC' + ACD + B'C'DACD' + A'BC' + AC'D'A'BD + ACD' + BC...
7 votes
2 answers
47
Consider a system having "n" resources of same type. These resources are shared by 3 processes, A, B, C. These have peak demands of 3, 4, and 6 respectively. For what val...
4 votes
1 answer
48
Which is the correct definition of a valid process transition in an operating system?Wake up: ready $\rightarrow$ runningDispatch: ready $\rightarrow$ runningBlock: ready...
5 votes
5 answers
49
What is the primary purpose of a VLAN?Demonstrating the proper layout for a networkSimulating a networkTo create a virtual private networkSegmenting a network inside a sw...
6 votes
2 answers
50
The address resolution protocol (ARP) is used forFinding the IP address from the DNSFinding the IP address of the default gatewayFinding the IP address that corresponds t...
8 votes
3 answers
51
The primary purpose of an operating system isTo make most efficient use of the computer hardwareTo allow people to use the computerTo keep systems programmers employedTo ...
0 votes
1 answer
52
void main() { int i=100,j=10,k; int *p=&j; k=i/(*p); printf("%d",k); }OPTIONS : [ a] 0 [b] 10 [c] 100 [d] None of the above
0 votes
1 answer
53
0 votes
1 answer
54
int main(){ static int arr[20]; int x=0; arr[x] = x++; printf("\n %d %d %d", arr[0],arr ,x); }OPTIONS :A) 000b) 101c) 001D) can't say
0 votes
1 answer
55
main(){ int i=400,j=300; printf("%d..%d"); }OPTIONS :
0 votes
2 answers
56
int main(){ int x=5,y; x++; printf("x=%d\n",x); y=x= ++x+10/x; printf("new x= %d",x); }OPTIONS :
1 votes
1 answer
57
1 votes
1 answer
58
3 votes
1 answer
59
The maximum length of an attribute of type text is127255256It is variable
1 votes
1 answer
60