Wayne Rooney …………… after netting the ball in the final seconds of the game.
Choose the most appropriate pair of words from the options given below to complete the following.
Despite all the rhetoric about building a new democracy, and the ________ of bringing freedom and ________ to the country, the invasion has only resulted in increased violence and hardship.
1 Crore+ students have signed up on EduRev. Have you? Download the App |
Continue the sequence
2, 5, 10, 17, 28, 41, _, _, _
A point on AC in the following triangle such that ∠ADB = ∠ABC. Then BD in (cm) is
The numerical value of will be
An advance team of the elite special operations unit was sent to make a reconnaissance of the area before the main strike team reached the scene.
Which of the following is a statement that can be inferred from the facts stated in the above statement
Based on the distribution of surface area of the Earth at different elevations and depths (with reference to sea - level) shown in the figure, which of the following is FALSE?
Ananth takes 6 hours and Bharath takes 4 hours to read a book. Both started reading copies of the book at the same time. After how many hours is the number of pages remaining to be read by Ananth, twice that the number of pages remaining to read by Bharath? Assume Ananth and Bharath read all the pages with constant pace.
In a group of 11 people, 5 are wearing white shirt, 5 are wearing black shirt and one is wearing red shirt. Find the number of ways they can sit around a circular table so that no two people wearing same color shirt sit together.
Find the probability of a number which is divisible by either 5 or 3 out of first 500 natural Odd Numbers.
Consider the following proposition:
(p→q)∧(q→r)→(p→r)∨(r→p)
Above proposition is a
Given S = {a, b, c, d}.
Number of functions possible on S which are neither one-one nor onto is:
Consider the following grammar:
G = S → SS|ab|ba|aba|bab|ϵ
Which of the following string is not generated by above grammar?
The following numbers are inserted into an empty binary search tree in the given order:
10, 1, 3, 5, 11, 12, 6
What is the height of the binary search tree?
A network with CSMA/CD protocol in the MAC layer is running at 1 Gbps over a 1 km cable with no repeaters. The signal speed in the cable is 2x108 m/sec. The minimum frame size for this network should be:
Which of the following is an LL(1) conflict?
Which of the following sorting algorithm will be worst choice to sort a linked list?
The set of values of p for which the roots of the equation 3x2 + 2x + p(p – 1) = 0 are of opposite sign is
Which of the following operations is performed more efficiently by doubly linked list than by singly linked list?
Suppose that the maximum transmit window size for a TCP connection is 12000 bytes. Each packet consists of 2000 bytes. At some point of time, the connection is in slow-start phase with a current transmit window of 4000 bytes. Subsequently, the transmitter receives two acknowledgements. Assume that no packets are lost and there are no time-outs. What is the maximum possible value of the current transmit window? (in bytes).
Which of the following is true for an undirected graph G = (V,E) such that every vertex has degree greater than 1?
Consider set S = {The set of all rational numbers including zero} and operation
I. addition II. Multiplication III. Division
Under which operation the set will form a group?
Consider a DRAM chip connected to a channel having 8 memory banks. A bank contain 16K rows. DRAM is refreshed once per 64ms. And refreshing operation takes 60ns(nano second). How many refresh operation performed in 1 sec?( 1 sec ≈ 1.024 sec).
The minimum number of bits required to represent - 64 in 2’s complement representation is _________.
What is the broadcast address of the first sub network in a class-C network assigned with an IP address - 207.35.7.0 (The subnet mask is 255.255.255.248)
The following C function takes a simply-linked list as input argument.
typedef struct node {
int value;
struct node *next;
}
int func(node *head){
node *p;
int a;
if(head == NULL)
return 0;
if(head→next == NULL)
return(head→value)
p =head;
a = head→value;
while(p→next!= NULL){
p=p→next;
if(p→value < a)
a = p→value;
}
return a;
}
Which of the following is true for the above function?
Which of the following languages is/are context-free?
I. {anbmcndm│n,m≥0}
II. {anbnbmam│n,m≥0}
III. {anbmcn│n,m≥0}
Which of the following regular expression describes the language
L = {w is in (1 + 0)* │ w ends with 10}?
I. (1*0*)*10
II. (0 + 1(1 + 01)*00)*1(1 + 01)*0
III. (1*0*)*100*
Consider the following program:
a = 1;
b = 2;
c = 3;
c = a + b;
b = a + c;
d = b + c;
e = d + a;
Assuming that all operations take their operands from registers, what is the minimum number of registers needed to execute this program without spilling?
In a data link layer, bit stuffing is used in transferring data. If the sent data after bit stuffing is 001111101101011111001111 and the flag is 01111110, then what will be the data after destuffing?
55 docs|215 tests
|
55 docs|215 tests
|