6 votes
41
1 votes
43
A starvation free job scheduling policy guarantees that no job indefinitely waits for a service. Which of the following job scheduling policies is starvation free?Priorit...
1 votes
44
The state of a process after it encounters an $I/O$ instruction is?ReadyBlockedIdle Running
2 votes
45
Embedded pointer providesA secondary access pathA physical record keyAn inverted indexA primary key
3 votes
46
Which of the following is not an image type used in $\text{MPEG}?$$\text{A}$ frame$\text{B}$ frame$\text{D}$ frame$\text{P}$ frame
2 votes
47
How many diagonals can be drawn by joining the angular points of an octagon?$14$$20$$21$$28$
2 votes
48
The network protocol which is used to get MAC address of a node by providing IP address isSMTPARPRIPBOOTP
2 votes
49
An example of poly-alphabetic substitution isP-boxS-boxCaesar cipherVigenere cipher
1 votes
50
The $\textsf{IEEE}$ standard for WiMax technology is$\textsf{IEEE 802.16}$$\textsf{IEEE 802.36}$$\textsf{IEEE 812.16}$$\textsf{IEEE 806.16}$
3 votes
51
Consider the following pseudocodex:=1; i:=1; while ( x <= 500) begin x:=2^x; i:=i+1; endWhat is the value of $\textsf{i}$ at the end of the pseudocode?$4$$5$$6$$7$
1 votes
52
In Java, after executing the following code what are the values of x, y and z?int x,y=10; z=12;x=y++ + z++;x=22, y=10, z=12x=24, y=10, z=12x=24, y=11, z=13x=22, y=11, z=1...
2 votes
53
The output expression of the following gate network is$\text{X.Y} + \overline{\text{X}} . \overline{\text{Y}}$$\text{X.Y + X.Y}$$\text{X.Y}$$\text{X + Y}$
4 votes
54
Which $\textsf{RAID}$ level gives block level striping with double distributed parity?$\textsf{RAID 10}$$\textsf{RAID 2}$$\textsf{RAID 6}$$\textsf{RAID 5}$
5 votes
55
Warnier Diagram enables the analyst to representClass structureInformation HierarchyData FlowState Transition
0 votes
56
Number of chips $(128 \times 8 \;\text{RAM})$ needed to provide a memory capacity of $2048$ bytes$2$$4$$8$$16$
1 votes
57
Which of the following UNIX command allows scheduling a program to be executed at the specifies time?cronnicedate and timeschedule
4 votes
58
The average depth of a binary search tree is$O(n^{0.5})$$O(n)$$O(\log n)$$O(n \log n)$
6 votes
59
What is the output of the following C code?#include <stdio.h int main() { int index; for(index=1; index<=5; index++) { printf("%d", index); if (index==3) continue; } }124...
1 votes
60
Which of the following algorithm design technique is used in merge sort?Greedy methodBacktrackingDynamic programmingDivide and Conquer
1 votes
61
Which of the following sentences can be generated by S - aS $\mid$ bAA - d $\mid$ cAbccddabbccaabcabcabcd
2 votes
62
Find the output of the following Java code line System.out.printIn(math.floor(-7.4))-7-8-7.4-7.0
1 votes
64
2 votes
65
Logic family popular for low power dissipationCMOSECLTTLDTL
1 votes
69
The addition of $4-bit$, two's complement, binary numbers $1101$ and $0100$ results in$0001$ and an overflow$1001$ and no overflow$0001$ and no overflow$1001$ and an over...