Question 1 |
In the slow start phase of the TCP congestion control algorithm, the size of the congestion window
does not increase | |
increases linearly | |
increases quadratically | |
increases exponentially
|
Question 2 |
Let A be a sequence of 8 distinct integers sorted in ascending order. How many distinct pairs of sequences, B and C are there such that (i) each is sorted in ascending order, (ii) B has 5 and C has 3 elements, and (iii) the result of merging B and C gives A?
2 | |
30 | |
56 | |
256 |
→ If we are pick 3 elements from 8 sequence integers then remaining 5 elements are already in ascending order. After merging these elements then it gives A.
→ No. of possibilities of choosing 8 elements from total of 8 = 8C3
= 8!/3!5!
= 8 * 7
= 56
Question 3 |
And since every attribute is key so the decomposed relation will be in BCNF and hence in 3NF.
Question 4 |
Now since all the attributes are keys, so R1 ∩ R2 will be a key of the decomposed relation.
And since every attribute is key so the decomposed relation will be in BCNF and hence in 3NF.
Question 5 |
R) False. We can give counter example. Let G has 5 vertices and 9 edges which is planar graph. Assume degree of one vertex is 2 and of all others are 4. Now, L(G) has 9 vertices (because G has 9 edges) and 25 edges. But for a graph to be planar,
|E| ≤ 3|v| - 6
For 9 vertices |E| ≤ 3 × 9 - 6
⇒ |E| ≤ 27 - 6
⇒ |E| ≤ 21. But L(G) has 25 edges and so is not planar.
As (R) is false, option (B) & (C) are eliminated.
Question 6 |
Which one of the following is NOT logically equivalent to ¬∃x(∀y(α) ∧ ∀z(β))?
∀x(∃z(¬β)→∀y(α)) | |
∀x(∀z(β)→∃y(¬α)) | |
∀x(∀y(α)→∃z(¬β)) | |
∀x(∃y(¬α)→∃z(¬β)) |
∀x(∃z(¬β) → ∀y(α))
⇒ ∀x(¬∃z(¬β) ∨ ∀y(α))
⇒ ∀x(∀z(β)∨y(α))
⇒ ¬∃x¬(∀z(β)∨∀y(α))
⇒ ¬∃x(¬∀z(β)∧¬∀y(α))
A is Not equivalent to the given.
Option B:
∀x(∀z(β)→∃y(¬α))
⇒ ∀x(¬∀z(β)∨∃y(¬α))
⇒ ¬∃x¬(¬∀z(β)∨∃y(¬α))
⇒ ¬∃x(∀z(β)∨∀y(α))
B is Matching and equivalent to given.
Option C:
∀x(∀y(α)→∃z(¬β))
⇒ ∀x(¬∀y(α)∨∃z(¬β))
⇒ ¬∃x¬(¬∀y(α)∨∃z(¬β))
⇒ ¬∃x(∀y(α)∧z(β))
C is equivalent to the given.
Option D:
∀x(∃y(¬α)→∃z(¬β))
⇒ ∀x(¬∃y(¬α)∨∃z(β))
⇒ ∀x(∀y(α)∨∃z(β))
⇒ ¬∃x¬(∀y(α)∨∃z(β))
⇒ ¬∃x(¬∀y(α)∧¬∃z(β))
⇒ ¬∃x(¬∀y(α)∧∀z(¬β))
So D is Not equivalent to the given.
Question 7 |
A D flip-flop is to be connected to an 8085 microprocessor chip as a 1-bit output port with a port address of FF hex. Data bit D3 should be involved in the data transfer from CPU to the flip-flop. The flip-flop should be cleared on power ON.
(a) Using only one NAND gate (fan in of 10), one NOT gate and one D flip-flop. Draw the required interface logic circuit (only the relevant signals should be shown).
(b) Write a program to generate a square wave on the output of the flip-flop. ON and OFF periods of the square wave should be 7 bus cycles each.
Theory Explanation. |
Question 8 |
Consider the following program in Pseudo-Pascal syntax.
program what:var z: integer procedure recur(x): begin if x <= 40 then begin x:x+z recur(x); z:=x+10 end end(*recur*) begin(*what*) z=10; recur(z); writeln(z) end
(a) Suppose the parameter to the procedure ‘recur’ is passed by value.
i. What value is printed by program?
ii. How many times is ‘recur’ called?
(b) What value is printed by the program if the parameter is passed by reference?
Theory Explanation. |
Question 9 |
Consider the grammar
S → bSe S → PQR P → bPc P → ε Q → cQd Q → ε R → dRe R → ε
where S,P,Q,R are non-terminal symbols with S being the start symbol; b,c,d,e are terminal symbols and ‘ε’ is the empty string. This grammar generates strings of the form bi, cj, dk, em for some i,j,k,m ≥ 0.
(a) What is the condition on the values of i,j,k,m?
(b) Find the smallest string that has two parse trees.
Theory Explanation. |
Question 10 |
Let G = (V, E) be an undirected graph with a subgraph G1 = (V1, E1). Weights are assigned to edges of G as follows:
A single-source shortest path algorithm is executed on the weighted graph (V,E,w) with an arbitrary vertex ν1 of V1 as the source. Which of the following can always be inferred from the path costs computed?
The number of edges in the shortest paths from v1 to all vertices of G | |
G1 is connected | |
V1 forms a clique in G | |
G1 is a tree |
Question 11 |
Let L = {a1, a2, ......, an} n ≥ 0 be a list whose Pascal representation is
type list = record next: ↑ list; val: integer end
The following function returns a list in which a2i and a2i-1, 1 ≤ i ≤ [n/2] are interchanged. Complete the function by filling the boxes. Write the line number and the content of the box in your answer sheet.
1. function change (p: ↑ list): ↑ list; 2. var q.t: ↑ list; 3. begin 4. if p = nil then change := p 5. else if p ↑ next = nil then change : ▭ 6. else begin 7. q : p ↑ next; 8. ▭ := q; 9. t : q ↑ next; 10. ▭ := p; 11. ▭ := change(t) 12. end 13. end
Theory Explanation. |
Question 12 |
Consider a graph whose vertices are points in the plane with integer co-ordinates (x,y) such that 1≤x≤n and 1≤y≤n, where n≥2 is an integer. Two vertices (x1,y1) and (x2,y2) are adjacent iff ∣x1−x2∣ ≤ 1 and ∣y1–y2∣ ≤1. The weight of an edge {(x1,y1),(x2,y2)} is √(x1–x2)2 + (y1–y2)2
(a) What is the weight of a minimum weight-spanning tree in this graph? Write only the answer without any explanations.
(b) What is the weight of a maximum weight-spanning tree in this graph? Write only the answer without any explanations.
Theory Explanation. |
Question 13 |
Consider a hash table with n buckets, where external (overflow) chaining is used to resolve collisions. The hash function is such that the probability that a key value is hashed to a particular bucket is 1/n. The hash table is initially empty and K distinct values are inserted in the table.
(a) What is the probability that bucket number 1 is empty after the Kth insertion?
(b) What is the probability that no collision has occurred in any of the K insertions?
(c) What is the probability that the first collision occurs at the Kth insertions?
Theory Explanation. |
Question 14 |
Let F be the set of one-to-one functions from the set {1,2,…,n} to the set {1,2,…,m}, where m≥n≥1.
(a) How many functions are members of F?
(b) How many functions f in F satisfy the property f(i) = 1 for some i, 1≤i≤n?
(c) How many functions f in F satisfy the property f(i) < f(j) for all 1≤i≤j≤n?
Theory Explanation. |
Question 15 |
Let R be a reflexive and transitive relation on a set A. Define a new relation E on A as
E = {(a,b) ∣ (a,b)∈R and (b,a)∈R}
(a) Prove that E is an equivalence relation on A.
(b) Define a reason ≤ on the equivalence classes of E as E1 ≤ E2 if ∃a,b such that a∈E1, b∈E2 and (a,b)∈R. Prove that ≤ is a partial order.
Theory Explanation. |
Question 16 |
Consider the following function.
Function F (n, m: integer): integer; begin If (n <= 0) or (m <= 0) then F:=1 else F:= F(n-1, m) + F(n, m-1); end;
Use the recurrence relation to answer the following question. Assume that n, m are positive integers. Write only the answers without any explanation.
(a) What is the value of F(n,2)?
(b) What is the value of (n,m)?
(c) How many recursive calls are made to the function F, including the original call, when evaluating F(n,m).
Theory Explanation. |
Question 17 |
A size-balanced binary tree is a binary tree in which for every node, the difference between the number of nodes in the left and right subtree is at most 1. The distance of a node from the root is the length of the path from the root to the node. The height of a binary tree is the maximum distance of a leaf node from the root.
(a) Prove, by using induction on h, that a size-balance binary tree of height h contains at least 2h nodes.
(b) In a size-balanced binary tree of height h≤1, how many nodes are at distance h−1 from the root? Write only the answer without any explanations.
Theory Explanation. |
Question 18 |
Construct a finite state machine with minimum number of states, accepting all strings over {a,b} such that the number of a's is divisible by two and the number of b's is divisible by three.
Theory Explanation. |
Question 19 |
Given that L is a language accepted by a finite state machine, show that LP and LR are also accepted by some finite state machines, where
LP = {s|ss' ∈ L, for some string s'}
LR = {s|s obtainable by reversing some string in L}
Theory Explanation. |
Question 20 |
A language L is a subset of Pascal with the following constructs:
- (a) Expressions involving the operators '+' and '<' only
(b) Assignment statements
(c) 'while' statements and
(d) Compound statements with the syntax 'begin...end'
Give an unambiguous grammar for L.
Theory Explanation. |
Question 21 |
Following is a state table for some finite state machine.
(a) Find the equivalence partition on the states of the machine.
(b) Give the state table for the minimal machine. (Use appropriate names for the equivalent states. For example if states X and Y are equivalent then use XY as the name for the equivalent state in the minimal machine.)
Theory Explanation. |
Question 22 |
Let f = (w'+y)(x'+y)(w+x'+z)(w'+z)(x'+z)
(a) Express f as the minimal sum of products. Write only the answer.
(b) If the output line is stuck at 0, for how many input combinations will the value of f be incorrect?
Theory Explanation. |
Question 23 |
An array A contains n≥1 positive integers in the locations A[1], A[2],... A[n]. The following program fragment prints the length of a shortest sequence of consecutive elements of A, A[i], A[i+1],...A[j] such that the sum of their values is ≥M, a given positive number. It prints ‘n+1’ if no such sequence exists. Complete the program by filling in the boxes. In each case use the simplest possible expression. Write only the line number and the contents of the box.
1. begin 2. i: +1; j:=1; 3. Sum := ▭; 4. min: n; finish:=false; 5. While not finish do 6. If ▭ then 7. if j=n then finish:=true. 8. else 9. begin 10. j:=j+1; 11. sum:=▭ 12. end 13. else 14. begin 15. If(j-1) < min then min:=j-1; 16. sum:=sum - A[i]; 17. i:=i+1; 18. end 19. writeln (min+1); 20. end.
Theory Explanation. |
Question 24 |
Consider the following piece of 'C' code fragment that removes duplicates from an ordered list of integers.
Node *remove-duplicates(Node *head, int *j) { Node *t1, *t2; *j=0; t1 = head; if (t1! = NULL) t2 = t1 →next; else return head; *j = 1; if(t2 == NULL) return head; while t2 != NULL) { if (t1.val != t2.val) --------------------------→ (S1) { (*j)++; t1 → next = t2; t1 = t2: ----------→ (S2) } t2 = t2 → next; } t1 → next = NULL; return head; }
Assume the list contains n elements (n≥2) in the following questions.
(a) How many times is the comparison in statement S1 made?
(b) What is the minimum and the maximum number of times statements marked S2 get executed?
(c) What is the significance of the value in the integer pointed to by j when the function completes?
Theory Explanation. |
Question 25 |
A B+ - tree of order d is a tree in which each internal node has between d and 2d key values. An internal node with M key values has M+1 children. The root (if it is an internal node) has between 1 and 2d key values. The distance of a node from the root is the length of the path from the root to the node. All leaves are at the same distance from the root. The height of the tree is the distance of a leaf from the root.
(a) What is the total number of key values in the internal nodes of a B+ - tree with l leaves (l≥2)?
(b) What is the maximum number of internal nodes in a B+ - tree of order 4 with 52 leaves?
(c) What is the minimum number of leaves in a B+ - tree of order d and height h(h≥1)?
Theory Explanation. |
Question 26 |
The language L, defined by the following grammar allows use of real or integer data in expressions and assignment statements.
(assign-stmt):: = (LHS):= (E) (E) :: = (E) + (T)|(T) (T) :: = (T) * (V)|(V) (V) :: = id|((E)) (LHS) :: = id
It is required to convert expression and assignment strings of L into postfix strings that use the type-specific operators (+, i), (+, r), (*, i), (*, r), (:=, i) and (:=,r).
Write a syntax directed translation scheme to convert expression and assignment strings into the post-fix form. You may assume that the name and type of a variable can be obtained by making the function calls 'give-type (id)' and 'give-name (id)' respectively.
Theory Explanation. |
Question 27 |
Consider the following program fragment in Pascal:
Program Main; var X : integer; procedure A: var Y : integer; procedure B: var Z : integer; procedure C: var Z : integer; begin(* Procedure C *) : end(* Procedure C *) begin(*Procedure B*) : C; (* call to C *) A; (* call to A *) : end(*Procedure B*) begin(* Procedure A *) : B; (* call to B *) : end(* Procedure A *) begin (* Main *) : A; (* call to A *) : end(* Main *)
Assume that there are no calls to any procedures other than the ones indicated above. It is known that at some point of time during the execution of this program five activation records exist on the run-time stack. Describe the run-time stack at this point of time by clearly indicating the following: the top of the stack, the contents of the static link and dynamic link, and allocation of the local variables in each record.
Theory Explanation. |
Question 28 |
Following floating point number format is given
f is a fraction represented by a 6-bit mantissa (includes sign bit) in sign magnitude form e is a 4-bit exponent (includes sign hit) in sign magnitude form n = (f,e) = f, 2e is a floating point number.
Let A = 54.75 in decimal and
B = 9.75 in decimal.
(a) Represent A and B as floating point numbers in the above format.
(b) Show the steps involved in floating point addition of A and B.
(c) What is the percentage error (upto one position beyond decimal point) in the addition operation in (b)?
Theory Explanation. |
Question 29 |
For merging two sorted lists of sizes m and n into a sorted list of size m+n, we required comparisons of
O(m) | |
O(n) | |
O(m+n) | |
O(logm+logn) |
In worst case, no. of comparisons is m+n-1.
Then we require O(m+n) comparisons to merging two sorted lists.
Question 30 |
A binary tree T has n leaf nodes. The number of nodes of degree 2 in T is:
log2 n | |
n - 1 | |
n | |
2n |
The no. of subtrees of a node is called the degree of the node. In a binary tree, all nodes have degree 0, 1 and 2.
The degree of a tree is the maximum degree of a node in the tree. A binary tree is of degree 2.
The number of nodes of degree 2 in T is "n - 1".
Question 31 |
The root directory of a disk should be placed
at a fixed address in main memory | |
at a fixed location on the disk | |
anywhere on the disk | |
at a fixed location on the system disk | |
anywhere on the system disk |
Question 32 |
Find if the following statements in the context of software testing are TRUE or FALSE.
(S1) Statement coverage cannot guarantee execution of loops in a program under test.
(S2) Use of independent path testing criterion guarantees execution of each loop in a program under test more than once.
True, True | |
True, False | |
False, True | |
False, False |
Question 33 |
Which of the following requirement specifications can be validated?
- (S1) If the system fails during any operation, there should not be any loss of data
(S2) The system must provide reasonable performance even under maximum load conditions
(S3) The software executable must be deployable under MS Windows 95, 2000 and XP
(S4) User interface windows must fit on a standard monitor's screen
S4 and S3 | |
S4 and S2 | |
S3 and S1 | |
S2 and S1 |
Question 34 |
A concurrent system consists of 3 processes using a shared resource R in a non-preemptible and mutually exclusive manner. The processes have unique priorities in the range 1.....3, 3 being the highest priority. It is required to synchronize the processes such that the resource is always allocated to the highest priority requester. The pseudo code for the system is as follows.
Shared Data mutex:semaphore = 1:/* initialized to 1*/ process[3]:semaphore = 0; /*all initialized to 0 */ R_requested [3]:boolean = false; /*all initialized to false */ busy: boolean = false; /*initialized to false */ Code for processes begin process my-priority:integer; my-priority:=____; /*in the range 1...3*/ repeat request_R(my-priority); P (proceed [my-priority]); {use shared resource R} release_R (my-priority); forever end process; Procedures procedure request_R(priority); P(mutex); if busy = true then R_requested [priority]:=true; else begin V(proceed [priority]); busy:=true; end V(mutex);
Give the pseudo code for the procedure release_R.
Theory Explanation. |
Question 35 |
A program P reads and processes 1000 consecutive records from a sequential file F stored on device D without using any file system facilities. Given the following
Size of each record = 3200 bytes Access time of D = 10 msecs Data transfer rate of D = 800 × 103 bytes/second CPU time to process each record = 3 msecs
What is the elapsed time of P if
(a) F contains unblocked records and P does not use buffering?
(b) F contains unblocked records and P uses one buffer (i.e., it always reads ahead into the buffer)?
(c) records of F are organized using a blocking factor of 2 (i.e., each block on D contains two records of F) and P uses one buffer?
You may assume that the CPU time needed to transfer a record from a buffer to a local variable of P is negligible.
Theory Explanation. |
Question 36 |
An operating system handles requests to resources as follows.
A process (which asks for some resources, uses them for some time and then exits the system) is assigned a unique timestamp are when it starts. The timestamps are monotonically increasing with time. Let us denote the timestamp of a process P by TS(P).
When a process P requests for a resource the OS does the following:
(i) If no other process is currently holding the resource, the OS awards the resource to P.
(ii) If some process Q with TS(Q) < TS(P) is holding the resource, the OS makes P wait for the resources.
(iii) If some process Q with TS(Q) > TS(P) is holding the resource, the OS restarts Q and awards the resources to P.
(Restarting means taking back the resources held by a process, killing it and starting it again with the same timestamp)
When a process releases a resource, the process with the smallest timestamp (if any) amongst those waiting for the resource is awarded the resource.
(a) Can a deadlock ever arise? If yes, show how. If not, prove it.
(b) Can a process P ever starve? If yes, show how. If not, prove it.
Theory Explanation. |
Question 37 |
Consider the following relational database schema:
EMP (eno name, age) PROJ (pno name) INVOLVED (eno, pno)
EMP contains information about employees. PROJ about projects and INVOLVED about which employees involved in which projects. The underlined attributes are the primary keys for the respective relations.
(a) What is the relational algebra expression containing one or more of {σ,π,x,u,−} which is equivalent to SQL query.
select eno from EMP, INVOLVED where EMP.eno=INVOLVED.eno and INVOLVED.pno=3
(b) State in English (in not more than 15 words).
What the following relational algebra expressions are designed to determine
(i) πeno(INVOLVED) − πeno((πeno(INVOLVED) X πpno(PROJ))−INVOLVED)
(ii) πage(EMP) − πEage
(Note: ρE(EMP) conceptually makes a copy of EMP and names it K (ρ is called the rename operator))
Theory Explanation. |
Question 38 |
Given the following algorithm for sorting an array X of N numbers:
SUBROUTINE SORT(X,N) IF(N < 2) RETURN FOR(i=2 TO N INCREMENT BY 1) FOR(j=1 TO i INCREMENT BY 1) IF (X[i] > X[j]) CONTINUE TEMP X[i] X[i] = X[j] X[j] = TEMP END FOR END FOR END SUBROUTINE
A good approximation of Halstead's estimated program length is
20 | |
50 | |
80 | |
110 |
Question 39 |
row of the table consisting of condition entries | |
row of the table consisting of action entries | |
column of the table consisting of condition entries and corresponding action entries | |
columns of the table consisting of conditions of the stub |
Question 40 |
is part of the operating system paging algorithm | |
is useless when swapping is used | |
is the hardware necessary to implement paging | |
storage pages at a specific location on disk |
Question 41 |
2 | |
3 | |
4 | |
5 |
The determinant of 2x2 matrix is (ad-bc), If the elements are a,b,c and d.
From the given matrix, a=3,b=3,c=x and d=5 then ad-bc =15-3x
15-3x=3 ⇒ 3x=12 ⇒ x=4
Question 42 |
A graphic display system has a frame buffer that is 640 pixels wide, 480 pixels high and 1 bit of color depth. If the access time for each pixel on the average is 200 nanoseconds, then the refresh rate of this frame buffer is approximately :
16 frames per second | |
19 frames per second | |
21 frames per second | |
23 frames per second
|
- Width (or) wide = 640 pixels
- Height (or) High = 480 pixels
- Color depth =1 bit/pixel
- Access time of each pixel on the average = 200ns
- Refresh rate of frame buffer = ?
Step-1: Graphic display system = 640 * 480 =307200
Step-2: Memory required for Graphic display system = 640 * 480 * 1 = 307200
Step-3: Total screen access time = Memory required for Graphic display system * Access time of each pixel
= 307200 * 200 ns
= 61440000 ns
Step-4: Refresh rate of frame buffer per second =(10-9)/61440000
= 16.27604166 frames per second
[ Note: 10-9 = 1000000000 ]
Question 43 |
The period of a signal is 100 ms. Its frequency is
1003 Hertz | |
10−2 KHz
| |
10−3 KHz | |
105 Hertz |
100 ms = 100 × 10-3s = 10-1s
f = 1/T = 1/10-1Hz = 10 Hz = 10 × 10-3kHz = 10-2kHz
Question 44 |
CMOS is a Computer Chip on the motherboard, which is :
RAM | |
ROM | |
EPROM | |
Auxiliary storage
|
Question 45 |
Swapping | |
Demand Paging | |
Deadlock | |
Page Fault |
Question 46 |
Merge Sort | |
Travelling Salesman Problem | |
Knapsack Problem | |
Optimal Binary Search Tree Problem |
Travelling Salesman Problem → Dynamic Programming
Knapsack Problem → Dynamic Programming
Optimal Binary Search Tree Problem → Dynamic Programming
Question 47 |
(010 ) 3 | |
(011 )3 | |
(121 ) 3 | |
(121 ) 2 |
Question 48 |
PC | |
Server | |
Smartphone | |
Switch |
● A network switch (also called switching hub, bridging hub, officially MAC bridge) is a computer networking device that connects devices on a computer network by using packet switching to receive, process, and forward data to the destination device.
Question 49 |
Stack addressing | |
Indirect addressing | |
Immediate addressing | |
None of the above |
e.g. ADD Pop top two items from stack and add
-----> The stack mode of addressing is a form of implied addressing,the machine instructions need not include a memory reference but implicitly operate
Question 50 |
CPU Scheduler | |
long term Scheduler | |
Context Switching | |
Medium term Scheduler |
→ The long-term scheduler is responsible for controlling the degree of multiprogramming.
Question 51 |
2,1 | |
1,2 | |
1,1 | |
2,2 |
Step-2: Append 0 in LSB of 2’s complement number=000111100
Step-3: Use the following codes. Procedure starts with LSB
(00→ 0)
(11→ 0)
(01→ +1)
(10→ -1)
1 1 1 0 0 0 0 1 0
0 0 -1 0 0 0 +1 -1
Step-4: There are total 1 additions and 2 subtractions
Question 52 |
32564 | |
44155 | |
50215 | |
43562 |
= 10x16 3 +12x16 2 + 7x16 + 11
= 40960 + 3072 + 112 +11
= 44155
Question 53 |
remove(var-name) | |
free(var-name) | |
delete(var-name) | |
dalloc(var-name) |
Syntax of free()
free(ptr);
This statement frees the space allocated in the memory pointed by ptr.
Question 54 |
Cells are generally smaller that packets | |
Cells do not incorporate physical address | |
all cell have the same fixed length | |
packet cannot be switched |
● For example, the fixed-length, 53-byte messages sent in Asynchronous Transfer Mode (ATM) are called cells. Like frames, cells usually are used by technologies operating at the lower layers of the OSI model.
Question 55 |
atomic attribute | |
candidate attribute | |
non prime attribute | |
prime attribute |
1. the relation does not have two distinct tuples (i.e. rows or records in common database language) with the same values for these attributes (which means that the set of attributes is a superkey)
2. there is no proper subset of these attributes for which (1) holds (which means that the set is minimal).
● Candidate keys are also variously referred to as primary keys, secondary keys or alternate keys.
● The constituent attributes are called prime attributes. Conversely, an attribute that does not occur in ANY candidate key is called a non-prime attribute.
Ex: AB, BC, CD are candidate keys of R(ABCD). In the FDs set one attribute may not be part of all the FDs.
Question 56 |
Suppose a system has 12 instances of some resources with n processes competing for that resource. Each process may require 4 instances of the resource. The maximum value of n for which the system never enters into deadlock is
3 | |
4 | |
5 | |
6 |
→ If we allocates 3 instance( one instance less than the requirement of each process) of the resource and to one process we allocate its minimum requirement then in that way with limited available instance of resource, without entering into deadlock we can fulfill requirement of maximum number of processes.
→ Now in question it is given that we have 12 instance then using above strategy we can allocate resources to 3 process without entering into deadlock.
Question 57 |
Consider the following statements related to AND-OR Search algorithm.
- S1 : A solution is a subtree that has a goal node at every leaf.
S2 : OR nodes are analogous to the branching in a deterministic environment
S3 : AND nodes are analogous to the branching in a non-deterministic environment.
Which one of the following is true referencing the above statements?
Choose the correct answer from the code given below:
Code:S1- False, S2- True, S3- True
| |
S1- True, S2- True, S3- True | |
S1- False, S2- True, S3- False
| |
S1- True, S2- True, S3- False
|
• A solution in an AND-OR tree is a sub tree whose leaves are included in the goal set.
Question 58 |
248000 | |
44000 | |
19000 | |
25000 |
Question 59 |
Which homogeneous 2D matrix transforms the figure (a) on the left side to the figure (b) on the right ?
The image in figure a is translated (by 1 unit in x axis), scaled (2 units in y axis) and rotated (90 degrees counterclockwise) to figure in b.
Question 60 |
Identify the correct sequence in which the following packets are transmitted on the network by a host when a browser requests a web page from a remote server, assuming that the host has been restarted.
HTTP GET request, DNS query, TCP SYN
| |
DNS query, TCP SYN, HTTP GET request | |
TCP SYN, DNS query, HTTP GET request
| |
DNS query, HTTP Get request, TCP SYN |
Step 1: DNS query is sent to Domain name server to convert the Domain name into it’s IP address.
Step 2: TCP SYN request packet is sent by sender to establish a connection for data transmission.
Step 3: HTTP GET request is used to request data from a specified IP address.
Question 61 |
Which of the following is true for semi-dynamic environment ?
The environment itself does not change with the passage of time but the agent’s performance score does.
| |
The environment change while the agent is deliberating.
| |
Even if the environment changes with the passage of time while deliberating, the performance score does not change.
| |
Environment and performance score, both change simultaneously.
|
The environment itself does not change with the passage of time but the agent’s performance score does.
Question 62 |
T(n)=O(n2) | |
T(n)=O(nlogn) |
Question 63 |
Who among the following devised the ryotwari system during the british rule in india?
Lord Dalhousie
| |
Warren Hastings | |
Lord Minto
| |
Capt. Alexander read
|
Question 64 |
Among the various electrical safety device in the options, the one based on the heating effect of electric current is the:
protective relay | |
circuit breaker
| |
fuse | |
surge protectors |
Question 65 |
Consider the following statements
- S1: A heuristic is admissible if it never overestimates the cost to reach the goal
S2: A heuristic is monotonous if it follows triangle inequality property.
Which one of the following is true referencing the above statements?
Choose the correct answer from the code given below:
Code:Statement S1 is true but statement S2 is false. | |
Statement S1 is false but statement S2 is true.
| |
Neither of the statements S1 and S2 are true. | |
Both the statements S1 and S2 are true.
|
Question 66 |
Match the following secret key algorithm (List-1) with the corresponding key lengths (List-2) and choose the correct answer from the code given below,
LIST-1 List-2 a) Blow Fish (i) 128-256 bits b) DES (ii) 128 bits c) IDEA (iii) 1-448 bits d) RC5 (iv) 56 bitsCodes:
(a)-(ii), (b)-(iii), (c)- (iv), (d)-(i)
| |
(a)-(iv), (b)-(iii), (c)-(ii), (d)-(i)
| |
(a)-(iii), (b)-(iv), (c)-(ii), (d)-(i) | |
(a)-(iii), (b)-(iv), (c)-(i), (d)-(ii)
|
• DES uses a 64-bit key, but eight of those bits are used for parity checks, effectively limiting the key to 56-bits.
• IDEA (International Data Encryption Algorithm) is an encryption algorithm which uses a block cipher with a 128-bit key, and is generally considered to be very secure. It is considered among the best publicly known algorithms.
• RC5 has a variable block size (32, 64 or 128 bits), key size (0 to 2040 bits) and number of rounds (0 to 255). The original suggested choice of parameters were a block size of 64 bits, a 128-bit key and 12 rounds.
Question 67 |
Which of the following statement/s is/are true ?
-
(i) Facebook has the world’s largest Hadoop cluster.
(ii) Hadoop 2.0 allows live stream processing of real time data
Choose the correct answer from the code given below :
Code:Neither (i) nor (ii) | |
Both (i) and (ii)
| |
(i) only
| |
(ii) only
|
Here are some of the details about this single HDFS cluster:
1. 21 PB of storage in a single HDFS cluster
2. 2000 machines
3. 12 TB per machine (a few machines have 24 TB each)
4. 1200 machines with 8 cores each + 800 machines with 16 cores each
5. 32 GB of RAM per machine
6. 15 map-reduce tasks per machine
That's a total of more than 21 PB of configured storage capacity! This is larger than the previously known Yahoo!'s cluster of 14 PB.
→ Hadoop 2.0 allows live stream processing of real time data.
Question 68 |
Consider the midpoint (or Bresenham) algorithm for rasterizing lines given below :
(1) Input (x1,y1) and (x2,y2) (2) y = y1 (3) d = f(x1+1, y1+½) // f is the implicit form of a line (4) for x = x1 to x2 (5) do (6) plot (x,y) (7) if (d<0) (8) then (9) y = y+1 (10) d = d+(y1 - y2) + (x2 - x1) (11) else (12) d = d+(y1 - y2) (13) end (14) end
Which statements are true ?
- P: For a line with slope m>1, we should change the outer loop in line (4) to be over y.
Q: Lines (10) and (12) update the decision variable d through an incremental evaluation of the line equation f.
R: The algorithm fails if d is ever 0.
Choose the correct answer from the code given below :
Code :Q and R only | |
P only
| |
P and Q only | |
P, Q and R
|
Line 10 and 12 will update the value of d , So the statement Q is true.
Question 69 |
Article 45 of the constitution of india provides provision for early childhood care and education to children below the age of:
6 years
| |
9 years
| |
12 years
| |
10 years |
"45 . Provision for early childhood care and education to children below the age of six years -- The State shall endeavour to provide early childhood care and education for all children until they complete the age of six years."
Question 70 |
Article 26 of the constitution of india deals with:
validation of certain acts and regulations
| |
equality of opportunity in matters of public employment | |
freedom to manage religious affairs | |
prohibition of trafficking in human beings |
(a) to establish and maintain institutions for religious and charitable purposes
(b) to manage its own affairs in matters of religion
(c) to own and acquire movable and immovable property
(d) to administer such property in accordance with law
Question 71 |
In which of the following states is the tuluni festival celebrated?
Arunachal pradesh
| |
Manipur
| |
Nagaland
| |
Sikkim
|
Amid the Tuluni Festival there are petitions and contributions that are given to Litsaba, who is the god of productivity who gives life and insurance to the crops. During the Tuluni Festival in Nagaland , a flagon is made with the leaf of plantain, to serve the rice lager. Tuluni is the name of this wine is devoured by the Sumi clan. "anni' is another name for 'Tuluni' which means the period of plenteous harvests.
Question 72 |
Which team won the ICC world twenty20 2016(Men's) tournament?
England
| |
West Indies
| |
South africa
| |
Australia
|
1. West Indies won the toss and elected to field.
2. Marlon Samuels (WI) made the highest score in a World T20 final.
3. West Indies became the first team to win both the men's and women's World Twenty20s on the same day, with the women defeating Australia by 8 wickets.
Question 73 |
The asian development bank(ADB) has approved a USD 346 million loan for road improvements in which of the following states?
Telangana
| |
Maharashtra
| |
Karnataka
| |
Gujarat |
This would be in addition to an ongoing road improvement project financed by the ADB with a loan of $315 million which involves upgradation of about 615 km of state roads.
The loan agreement for the Karnataka State Highways Improvement III Project (KSHIP-III) was signed between Sameer Kumar Khare, Joint Secretary in the Finance Ministry and Kenichi Yokoyama, Country Director of ADB’s India Resident Mission.
Kenichi Yokoyama said the new loan will continue ADB support to the Karnataka government's statewide road improvement programme, and will also help improve road safety.
Question 74 |
In which country was the ninth edition of the mountain echoes literature festival held in august 2018?
Sri lanka
| |
India
| |
China | |
Bhutan |
Question 75 |
______ can produce a virtual image larger than the object
Concave lens | |
Concave mirror | |
Convex mirror
| |
Plane mirror
|
Question 76 |
From the given options, select the word that can be formed using the letters from the given word
ALTERNATE
TAVERN | |
LANTERN
| |
TALENT
| |
TANNER
|
→ LANTERN: Here, N appears 2 times but actual given word having only one ‘N’ letter.
→ TALENT: It is completely formed in given word ALTERNATE.
→ TANNER: Here, N appears 2 times but actual given word having only one ‘N’ letter.
Question 77 |
Select the option that is different from the other three options
Resentful | |
Serene | |
Desolate
| |
Sad
|
→ Resentful, Desolate and Sad are same category.
Question 78 |
Select the options that is related to the third term in the same way as the second term is related to the first term
CEGI:XVTR::FHJL:?
OQSU | |
USPO
| |
VSQO
| |
USQO |
Question 79 |
Select the option that is different from the other three options
117 | |
78 | |
60 | |
52 |
78 and 52 difference is 13*2
52 and 39 difference is 13*1
So, 60 is the odd one because difference is 13.
Actual difference is 39, 52, 78, 117.
Question 80 |
'Restaurant' is related to 'chef; in the same way as 'garage' is related to:
car | |
vehicle
| |
mechanic | |
accountant
|
→ Garage is related to mechanic
Question 81 |
Choose the correct options that will complete the given number series:
2, 2, 3, 8, 35, ?, 1421
204 | |
40 | |
408 | |
70 |
3 (1st term) * 1 - 1 = 2 (2nd term)
2 (2nd term) * 2 - 2 = 2 (3rd term)
2 (3rd term) * 3 - 3 = 3 (4th term) and so on…
Going by this pattern the next number in the series will be 35 * 6 – 6 = 204
Question 82 |
Ruby met Nisha at a party. Nisha introduced herself as the eldest daughter of the brother-in-law of Ruby's friends mother?How is Ruby's friend related to Nisha?
Niece
| |
Friend | |
Cousin | |
Daughter
|
Question 83 |
Five children are standing in a single file line in ascending order of their heights. Q is second in line. P and R are taller than O. N is taller than P but shorter than R. P is the middle of the line. Who is at end of the line?
P | |
O | |
R | |
Q |
P is middle means 3rd position.
N is taller than P means but shorter than R means 4th position.
O is shorter than P and R means 1st position.
R is end of the line.
O, Q, P, N, R
Question 84 |
If the seventh day of the month is four days after friday, what day will it be on the thirty first day of the month?
Tuesday
| |
Wednesday
| |
Friday | |
Monday
|
14th day- Tuesday
21st day- Tuesday
28th day-Tuesday
29th-wednesday
30th-thursday
31st- friday
Question 85 |
14
| |
7 | |
15 | |
13 |
Question 86 |
Abhi bought an article and sold it at a loss of 10%. If he had bought it for 20% less and sold it for Rs.121 more, he would have had a profit of 40%. If he decides to sell it for Rs.506, what will he percentage gain/loss be?
Loss 8% | |
Gain 8%
| |
Loss 5.50%
| |
Gain 5.5%
|
Question 87 |
A shopkeeper sold an article for Rs.494 after giving a discount of 18% on its marked proce. had he NOT given the discount, he would have earned a profit of 25% on the cost price. What is the cost price(in Rs) of the article?
Rs.484
| |
Rs.480 | |
Rs.410
| |
Rs.450
|
Question 88 |
In folding the HCF of two numbers by the division method, the quotients are 1 and 6 respectively. If the HCF of the two numbers in 300, then their LCM will be:
12600
| |
6300
| |
8400 | |
2100
|
Question 89 |
Of three numbers, the first is 7 times the second and is also 4 times the third. If the average of the three numbers is 299/7 , what is the sum of the first and the third number?
736/7
| |
253/7 | |
115 | |
110 |
Question 90 |
20 | |
1/2 | |
2 | |
1/20 |
Question 91 |
A vessel contains a solution of A and B in the ratio 5:7. If 4 1/2L of the solution is replaced by the sme quality of A, then their ratio becomes 9:7. How much(in liters) of liquid B was there in the bucket initially?
15 | |
21 | |
7 1/2 | |
10 1/2 |
Question 92 |
There are eleven numbers whose average is 64. The first number is 4 more than second but 10 less than the third. The average of the numbers from the fourth to the seventh is 62.5, and the average of the remaining numbers is 65.5. What is the average of the second and the third number?
65.5
| |
64 | |
65 | |
64.5 |
Question 93 |
A bag contains coins of Rs.1, 50 paise and 25 paise in the ratio 4:3:8. If the total amount in the bag is Rs.240, then the number of 50 paise coins is:
96 | |
128 | |
256 | |
192 |
Question 94 |
Select the most appropriate antonym of the given word
AUDACITYboldness
| |
courage
| |
timidity | |
nerve |
Question 95 |
Select the wrongly spelt word
improbable
| |
impudent
| |
impression
| |
impropreity
|
Question 96 |
Select the option which is NOT an antonym of another word by way of adding the prefix 'in-'.
indomitable
| |
individualism | |
incompetent
| |
incoherent
|
Question 97 |
Select the most appropriate option to fill in the blank.
Divyanshu didn't like to work at a corporate. He wants to start____ own business.
our
| |
their
| |
his | |
my
|
Question 98 |
Select the most appropriate option to fill in the blank.
____ their clothes were proper, they didn't look smart.
Whether
| |
Despite | |
Although | |
Because |
Question 99 |
In the following sentence, four words or phrases have been underlined. one of them is incorrect. Choose the incorrect word or phrase from the given options.
Most of the projects is struggling to make progress due to various like land acquisition, forest clearance or release of funds from the government.
release of funds
| |
to make progress
| |
due to
| |
is struggling
|
Question 100 |
Select the most appropriate synonym of the given word
STEALTHYdirect
| |
daring
| |
unrestricted
| |
sly
|
Question 101 |
Select the most appropriate option to fill in the blank.
Usually she has milk, but today she____hot herbal tea because she has a sore throat.
had taken
| |
was taking
| |
takes
| |
is taking
|
Question 102 |
Select the most appropriate option to fill in the blank.
This ward is meant for critically____children.
injury | |
injured | |
injurious | |
injuring
|
Question 103 |
S1: 3NF decomposition is always lossless join and dependency preserving
S2: 3NF decomposition is always lossless join but may or may not be dependency preserving
S3: BCNF decomposition is always lossless join and dependency preserving
S4: BCNF decomposition is always lossless join but may or may not be dependency preserving
Only S1 | |
Only S4 | |
boh S1 and S4 | |
Both S2 and S3 |
→ lossless join should be compulsory in any normal form.
Question 104 |
(0+1+0+1+0+1+0+1)4 | |
(0+1)4 | |
(01)4 | |
(0+1+ɛ)4 |
Question 105 |
(1.25,1.5) | |
(1,1.25) | |
(1,1.5) | |
None of the options |
root= X4-X-1.
Root lies Between 1 and 2,
After second iteration=?
Using bisection method.
f(1)=X4-X-1
=1-1-1
= -1
f(2)=X4-X-1
= 24 -2 -1
=13
Given constraint that “root lies between 1 and 2”
Iteration-1: x1=(a+b)/2
=(1+2)/2
= 1.5
f(1.5) = 2.5625
Iteration-2: x2=(a+b)/2
=(1+1.5)/2
=1.25
f(1.25)=0.19140625 >0
Root may lie in between (1, 1.25)
Algorithm - Bisection Scheme
Given a function f (x) continuous on an interval [a,b] and f (a) * f (b) < 0
Do
c=(a+b)/2
if f(a)*f(c)< 0 then b=c
else a=c
while (none of the convergence criteria C1, C2 or C3 is satisfied)
More info:
Bisection method is the simplest among all the numerical schemes to solve the transcendental equations. This scheme is based on the intermediate value theorem for continuous functions .
Consider a transcendental equation f(x)=0 which has a zero in the interval [a,b] and f(a)*f(b)<0. Bisection scheme computes the zero, say c, by repeatedly halving the interval [a,b]. That is, starting with
c = (a+b) / 2
The interval [a,b] is replaced either with [c,b] or with [a,c] depending on the sign of f (a) * f (c) . This process is continued until the zero is obtained. Since the zero is obtained numerically the value of c may not exactly match with all the decimal places of the analytical solution of f (x) = 0 in the interval [a,b]. Hence any one of the following mechanisms can be used to stop the bisection iterations :
C1. Fixing a priori the total number of bisection iterations N i.e., the length of the interval or the maximum error after N iterations in this case is less than | b-a | / 2N.
C2. By testing the condition | ci - c i-1| (where i are the iteration number) less than some tolerance limit, say epsilon, fixed a priori.
C3. By testing the condition | f (ci ) | less than some tolerance limit alpha again fixed a priori.
http://mat.iitm.ac.in/home/sryedida/public_html/caimna/transcendental/bracketing%20methods/bisection/bisection.html
Question 106 |
28 | |
log2s | |
s2 | |
s |
→ Note that in a fully-associative cache, there is only 1 set so the set index will not exist. The remaining bits are used for the tag.
→ If ℓ is the length of the address (in bits), then the number of tag bits is t = ℓ − b − s.
Question 107 |
Loop optimization | |
Redundancy Elimination | |
Folding | |
All of the options |
Question 108 |
Zero address | |
one address | |
two address | |
three address |
A stack-organized computer does not use an address field for the instructions ADD and MUL. The PUSH and POP instructions, however, need an address field to specify the operand that communicates with the stack. The following program shows how X=(A+B)*(C+D) will be written for a stack-organized computer. (TOS stands for top of stack).
To evaluate arithmetic expressions in a stack computer, it is necessary to convert the expression into reverse Polish notation. The name “zero-address” is given to this type of computer because of the absence of an address field in the computational instructions.
Question 109 |
Any derivation of W1 has exactly the same number of steps as any derivation of W2 | |
Different derivation have different length | |
Some derivation of W1 may be shorter the derivation of W2 | |
None of the options |
W1 and W2 are 2 strings,
|W1|=|W2| means same length
Example CFG grammar:
S→ Cbb | cc
C→ a
W1=cc W2=Cbb
As per the grammar, W1 require only one derivation S→ cc
W2 requires two derivations S→ Cbb→ abb
It means W1 is smaller than W2.
Question 110 |
24 | |
27 | |
36 | |
38 |
⇒162 =2×3×3×3×3 = 33×(2×3)
For (2×3) to be a perfect cube, it should be multiplied by (22×32)
∴ Required number = y = 22×32 = 36
Question 111 |
Set of strings with either a or one or more occurences of b followed by c. | |
(b*c+a) | |
Set of strings with either a or zero or more occurence of b followed by c | |
Both (B) and (C) |
Question 112 |
What is the average turnaround time (in ms) for these processes using FCFS scheduling algorithm ?
15 | |
12.8 | |
13 | |
none of the options |
Average Turnaround Time =(8+13.4+14.2+15.6)/4=(51.2)/4=12.8
Question 113 |
(7!)2 | |
(8!)2 | |
7!8! | |
15! |
→ Now place each girl between a pair of boys. So, total ways of seating arrangement of girls is 8!
→ Finally, 7!8! Possible ways are possible.
Question 114 |
Set difference | |
Complement | |
Both (A) and (B) | |
None of the options |
→ The set difference L-P may or may not be recursively enumerable.
→ If L is recursively enumerable, then the complement of L is recursively enumerable if and only if L is also recursive.
Question 115 |
2 | |
4 | |
3 | |
5 |
→ As in this array sequence of 0’s is followed by sequence of 1’s, the array is sorted. We can apply binary search directly without sorting it.
→ So number of probes = ⌈(log2 31)⌉
= ⌈4.954196310386876⌉
⇒5
Question 116 |
P1: The language generated by some CFG contains any words of length less than some given number n.
P2: Let L1 be CFL and L2 be regular, to determine whether L1 and L2 have common elements
P3: Any given CFG is ambiguous or not
P4: For any given CFG G, to determine whether ɛ belongs to L(G)
P2 only | |
P1 and P2 only | |
P2 and P3 only | |
P3 only |
A problem is decidable if we can construct a Turing machine which will halt in finite amount of time for every input and give answer as ‘yes’ or ‘no’. A decidable problem has an algorithm to determine the answer for a given input.
Examples
Equivalence of two regular languages:Given two regular languages, there is an algorithm and Turing machine to decide whether two regular languages are equal or not.
Finiteness of regular language: Given a regular language, there is an algorithm and Turing machine to decide whether regular language is finite or not.
Emptiness of context free language: Given a context free language, there is an algorithm whether CFL is empty or not.
Undecidable Problems
A problem is undecidable if there is no Turing machine which will always halt in finite amount of time to give answer as ‘yes’ or ‘no’. An undecidable problem has no algorithm to determine the answer for a given input.
Examples
Ambiguity of context-free languages: Given a context-free language, there is no Turing machine which will always halt in finite amount of time and give answer whether language is ambiguous or not.
Equivalence of two context-free languages: Given two context-free languages, there is no Turing machine which will always halt in finite amount of time and give answer whether two context free languages are equal or not.
Everything or completeness of CFG: Given a CFG and input alphabet, whether CFG will generate all possible strings of input alphabet (∑*)is undecidable.
Regularity of CFL, CSL, REC and REC: Given a CFL, CSL, REC or REC, determining whether this language is regular is undecidable.
Question 117 |
7 | |
14
| |
3.11 | |
6.22 |
Non pipelined machine with 6 stages,
Length of each stage=20,10,30,25,40,15 ns.
Implementing the pipelining the machine adds each stage=5ns overhead.
Speed up factor of the pipelining system=?
Step-1: Non pipeline for 1 instruction to all stages=20+10+30+25+40+15 ns
=140 ns
Step-2: Per cycle adds 5ns overhead to each stage =25,15,35,30,45,20 ns
= 45 ns
Step-3: Speedup factor= Time non pipelining / Time with pipeline
= 140/45
= 3.11 ns
Question 118 |
Reference bit | |
Dirty bit | |
Tag Bit | |
Valid Bit |
→ The bit indicates that its associated block of memory has been modified and has not been saved to storage yet. When a block of memory is to be replaced, its corresponding dirty bit is checked to see if the block needs to be written back to secondary memory before being replaced or if it can simply be removed.
→ Dirty bits are used by the CPU cache and in the page replacement algorithms of an operating system.
→ Dirty bits can also be used in Incremental computing by marking segments of data that need to be processed or have yet to be processed.
Question 119 |
Can never occur | |
Has to occur | |
May occur | |
None of the options |
Question 120 |
Any string containing '1' as substring
| |
Any string containing '01' as substring | |
Any string containing '011' as substring | |
All string containing '001' as substring |
Question 121 |
15 | |
30 | |
56 | |
60 | |
None of the above |
8 vertices and distinct cycles length=5
Step-1: To find number of distinct cycles
C(n,r)=C(8,5)
=8! / (5!(8−5)!)
=56
Total number of distinct cycles we can get n-1= 5-1 = 4
= 56*4
= 224
Question 122 |
Every relation in 3NF is also in BCNF | |
A relation R is in 3NF if every non prime attributes of R is fully functionally dependent on every key of R | |
Every relation in BCNF is also in 3NF | |
No relation can be in both BCNF and 3NF |
Question 123 |
2NF | |
BCNF | |
3NF | |
1NF |
AB+={A,B,C,D,E} it clearly shows that right side, there is no B. So, definitely candidate key require B.
→ The functional dependency B→D violates 2NF requirement. It is a partial dependency, D is partially dependent on B, where B is a proper subset of a candidate key.
Question 124 |
t1>t2 | |
t1=t2 | |
t1< t2 | |
Nothing can be said about the relation between t1 and t2
|
→ Context switches can occur only in kernel mode. Kernel mode is a privileged mode of the CPU in which only the kernel runs and which provides access to all memory locations and all other system resource
→ Other programs, including applications, initially operate in user mode, but they can run portions of the kernel code via system calls
→ The existence of these two modes in Unix-like operating systems means that a similar, but simpler, operation is necessary when a system call causes the CPU to shift to kernel mode. This is referred to as a mode switch rather than a context switch, because it does not change the current process.
→ Context switch between the processes involves mode switch also.
Question 125 |
Should release all the locks only at beginning of transaction | |
Should release exclusive locks only after the commit operation | |
Should acquire all the exclusive locks at beginning of transaction | |
Should acquire all the locks at beginning of transaction |
. The difference between 2PL and C2PL is that C2PL's transactions obtain all the locks they need before the transactions begin. This is to ensure that a transaction that already holds some locks will not block waiting for other locks.
→ In heavy lock contention, C2PL reduces the time locks are held on average, relative to 2PL and Strict 2PL, because transactions that hold locks are never blocked.
→ In light lock contention, C2PL holds more locks than is necessary, because it is hard to tell what locks will be needed in the future, thus leads to higher overhead.
→ Also, a transaction will not even obtain any locks if it cannot obtain all the locks it needs in its initial request. Furthermore, each transaction needs to declare its read and write set (data items to be read/written during transaction), which is not always possible. Because of these limitations, C2PL is not used very frequently.
Question 126 |
2 | |
1 | |
1/2 | |
-1 |
Let u, v be vectors in R2, increasing at a point, with an angle θ.
A vector bisecting the angle should split θ into θ/2,θ/2
Means ‘w’ should have the same angle with u, v and it should be half of the angle between u and v.
Assume that the angle between u, v be 2θ (thus angle between u,w=θ and v,w=θ) Cosθ=(u∙w)/(∥u∥ ∥w∥) ⇾①
Cosθ=(v∙w)/(∥v∥ ∥w∥) ⇾②
①/②⇒1/1=((u∙w)/(∥u∥ ∥w∥))/((v∙w)/(∥v∥ ∥w∥))⇒1=((u∙w)/(∥u∥))/((v∙w)/(∥v∥))
⇒(u∙w)/(v∙w)=(∥u∥)/(∥v∥) which is given that ∥u∥=2 ∥v∥
⇒(u∙w)/(v∙w)=(2∥v∥)/(∥v∥)=2 ⇾③
Given ∥u∥=2∥v∥
u∙v=∥u∥ ∥v∥Cosθ
=2∙∥v∥2 Cosθ
w=u+αv
(u∙w)/(v∙w)=2
(u∙(u+αv))/(v∙(u+αv))=2
(u∙u+α∙u∙v)/(u∙v+α∙v∙v)=2a∙a=∥a∥2
4∥v∥2+α∙2∙∥v∥2 Cosθ=2(2∥v∥2 Cosθ+α∙∥v∥2/sup>)
4+2αCosθ=2(2Cosθ+α)
4+2αCosθ=4Cosθ+2α⇒Cosθ(u-v)+2α-4=0
4-2α=Cosθ(4-2α)
(4-2α)(Cosθ-1)=0 4-2α=0
Question 127 |
Unambiguous CFG | |
Ambiguous CFG | |
Not a CFG | |
Deterministic CFG |
Question 128 |
Regular | |
Context free but not regular | |
Recursive but not necessarily context free | |
Recursively enumerable but not necessarily recursive |
Question 129 |
Data flow diagram | |
Prototype model | |
Entity Relationship diagram | |
Data dictionary |
Question 130 |
11,31,23,50,73,62,41 | |
31,11,23,50,41,62,73 | |
11,31,50,23,73,62,41 | |
11,31,23,50,62,73,41 |
According to pre order we will get below graph based on Inorder is 11,23,31,41,50,62,73.
Question 131 |
Ω(logn) | |
Ω(nlogn) | |
Ω(n) | |
Ω(n2) |
Question 132 |
i.Union
ii.Intersection
iii.complement
iv.Concatenation
v.star closure
i only | |
Both i,iv | |
i,ii,iv and v | |
All of the options |
1)Union
2)Intersection
3)Concatenation
4)Star closure
Question 133 |
S1: LR(0) grammar and SLR(1) grammar are equivalent
S2: LR(1) grammar are subset of LALR(1) grammars
S1 only | |
S1 and S2 both | |
S2 only | |
None of the options |
FALSE: S1: LR(0) grammar and SLR(1) grammar are equivalent
FALSE: S2: LR(1) grammar are subset of LALR(1) grammars
Question 134 |
Maximum cardinality should be one | |
Minimum cardinality should be one | |
Minimum cardinality should be zero | |
None of the options |
Question 135 |
r1*r2* | |
(r1r2)* | |
r1*r2*+r1r2 | |
(r1*r2*)* |
→ Given in regular expression to get together also many number of occurrences. So, correct answer is option D.
Question 136 |
3m=2n | |
7m=8n | |
8m=7n | |
2m=3n |
Total number of hosts per network is 216-2
Substitute 8m and 7n
⇒ 14*8=16*7
112=112
Question 137 |
S1: The power of a multi tape Turing machine is greater than the power of a single tape turing machine
S2: Every non deterministic Turing machine has an equivalent deterministic Turing machine
S1 | |
S2 | |
Both S1 and S2 | |
None of the options |
S2:Non-Deterministic TM is equivalent to DTM
Question 138 |
mealy and moore machine are language acceptors | |
Finite state automata is language translator | |
NPDA is more powerful than DPDA | |
mealy machine is more powerful than moore machine |
→ NPDA is more powerful than DPDA which means for every language for which a dpda exist, there exist an NPDA but there are some languages that are accepted by NPDA but are not accepted by DPDA.
→ In case of DFA and NFA they are equivalent in power. So for every language accepted by DFA there exists an NFA and vice versa.
Hence,we can’t convert NPDA to DPDA always and we can convert NFA to an equivalent DFA always.
Question 139 |
i.Large number of addressing modes
ii.Uniform instruction set
i only | |
ii only | |
Both i and ii | |
None of the options |
1. RISC processors use a small and limited number of instructions.
RISC processors only support a small number of primitive and essential instructions. This puts emphasis on software and compiler design due to the relatively simple instruction set.
2. RISC machines mostly uses hardwired control unit.
Most of the RISC processors are based on the hardwired control unit design approach. In hardwired control unit, the control units use fixed logic circuits to interpret instructions and generate control signals from them. It is significantly faster than its counterpart but are rather inflexible.
3. RISC processors consume less power and have high performance.
RISC processors have been known to be heavily pipelined this ensures that the hardware resources of the processor are utilized to a maximum giving higher throughput and also consuming less power.
4. Each instruction is very simple and consistent.
Most instructions in a RISC instruction set are very simple that get executed in one clock cycle. 5. RISC processors use simple addressing modes.
RISC processors don’t have as many addressing modes and the addressing modes these processors have are rather very simple. Most of the addressing modes are for register operations and do not refer memory.
6. RISC instruction is of uniform fixed length.
The decision of RISC processor designers to provide simple addressing modes leads to uniform length instructions. For example, instruction length increases if an operand is in memory as opposed to in a register. a. This is because we have to specify the memory address as part of instruction encoding, which takes many more bits. This complicates instruction decoding and scheduling.
7. Large Number of Registers.
The RISC design philosophy generally incorporates a larger number of registers to prevent in large amounts of interactions with memory
Question 140 |
Reduces the space of the code | |
Optimization the code to reduce execution time | |
Both (A) and (B) | |
Neither (A) nor (B) |
→ The most common requirement is to minimize the time taken to execute a program; a less common one is to minimize the amount of memory occupied.
→ The growth of portable computers has created a market for minimizing the power consumed by a program
Question 141 |
"None of my friends are perfect"
~∃x(p(x) ⋀ q(x)) | |
∃x(~p(x) ⋀ q(x)) | |
∃x(~p(x) ⋀ ~q(x)) | |
∃x(p(x) ⋀ ~q(x)) |
P(x) ⇒ x is perfect
There doesn't exist any person who is my friend and perfect
Question 142 |
*(x+i) is same as *(&x[i]) | |
&x[i] is same as x+i-1 | |
*(x+i) is same as *x[i] | |
*(x+i) is same as *x+i |
⇒* is nothing but Value at address location
⇒&x[i] means address of ith element
⇒*(&x[i]) means Value at “i” location of “ x address”.
We can also write it into *(X+i) = X[i] =*(&x[i])
Question 143 |
(00+(11)*0) | |
1(0+1)*101 | |
(10)*(01)*(00+11)* | |
110*(0+1) | |
Option-1 and 3 |
Question 144 |
Immediate addressing | |
Indirect addressing | |
Implied addressing | |
Relative addressing |
→ An implied sequence commences when the PC reaches the opcode for an implied instruction
(a). loads that opcode into the IR
(b). Increments the PC (c). Recognizing that this is an implied instruction, the CPU executes it and continues on to the next instruction.
→ Instructions that use implied addressing are: CLRIM, DECA, DECX, HALT, INCA, INCX, NOP, POPA, POPSR, PUSHA, PUSHSR, ROLC, RORC, RTI, RTS, SETIM, SHL, and SHR.
Question 145 |
n(n+1) | |
n2 +1 | |
n2 -1 | |
n(n+1)/2 |
→ There are total n(n+1)/2 table entries, the whole table construction process takes O(n3) time in worst case.
Question 146 |
9 | |
10 | |
8 | |
11 |
Total number of page faults are 10.
Question 147 |
26 | |
24 | |
20 | |
22 |
=(a*10+b)+(b*10+a)+(a*10+c)+(c*10+a)+(b*10+c)+(c*10+b)
=2(a+b+c)(10+1)
=22
Question 148 |
269 | |
20 | |
271 | |
272 |
Let A = number divisible by 3
B = numbers divisible by 5
C = number divisible by 7
We need to find “The number of integers between 1 and 500 that are divisible by 3 or 5 or 7" i.e.,|A∪B∪C|
We know,
|A∪B∪C|=|A|+|B|+C-|A∩B|-|A∩C|-|B∩C|+|A∩B|
|A|=number of integers divisible by 3
[500/3=166.6≈166=166]
|B|=100
[500/5=100]
|C|=71
[500/7=71.42]
|A∩B|=number of integers divisible by both 3 and 5 we need to compute with LCM (15)
i.e.,⌊500/15⌋≈33
|A∩B|=33
|A∩C|=500/LCM(3,7) 500/21=23.8≈28
|B∩C|=500/LCM(5,3) =500/35=14.48≈14
|A∩B∩C|=500/LCM(3,5,7) =500/163=4.76≈4
|A∪B∪C|=|A|+|B|+|C|-|A∩B|-|A∩C|-|B∩C|+|A∩B∩C|
=166+100+71-33-28-14+4
=271
Question 149 |
Only S1 | |
Only S3 | |
Only S1,S2 and S3 | |
Only S1, S2 and S4 |
S2: FALSE: Interpreter translates and executes the instruction before it goes to the second line but not doing error free operations.
S3: FALSE: Compiler more faster than interpreter
S4: FALSE:LISP and Prolog are interpreted rather than compiler based
Question 150 |
2NF | |
BCNF | |
3NF | |
1NF |
Finding candidate key of given relation is relation is
A+={A,B,C} because we don’t have an A element in right hand side.
A→ BC dependency A is the candidate key and also part of FD. So, it is lossless.
C→ D is following Transitive dependency. So, it never become 3NF.
According to given choices, A is the correct choice.
Question 151 |
Deterministic Context free language are closed under complement | |
Deterministic Context free language are not closed under union | |
Deterministic Context free language are closed under intersection with regular set | |
All of the options |
→ Deterministic Context free language are not closed under union
→ Deterministic Context free language are closed under intersection with regular set
Question 152 |
PDA | |
TM | |
LBA | |
None of the options |
1)DPDA accept only a proper subset of CFL's ie. LL grammars.
2)NPDA can accept any CFL, which makes them more powerful over DPDA
→ Deterministic TM is equal power to Non deterministic TM
Question 153 |
L1: Set of languages accepted by NFA
L2: Set of languages accepted by DFA
L3: Set of languages accepted by DPDA
L4: Set of languages accepted by NPDA
L5: Set of recursive languages
L6. Set of recursively enumerable languages?
L1,L2⊂ L3⊂ L4⊂ L5⊂ L6 | |
L1⊂L2⊂ L3 ⊂L4⊂ L5 ⊂L6 | |
L2⊂L1⊂ L3 ⊂L4⊂ L5⊂ L6 | |
L1⊂L2⊂ L3⊂ L4⊂ L6⊂ L5 |
Question 154 |
M2 is non singular | |
M2 is null Matrix | |
M2 is the identity matrix | |
M2 is transpose of M1 |
The easiest way we can prove this is by looking at the determinant, since det(AB)=det(A)det(B)
and a matrix A is singular iff det(A)=0
Question 155 |
Pushdown automata | |
Turing machine | |
Linear Bounded Automata | |
None of the options |
→ NPDA is more powerful than DPDA.
Question 156 |
n(n-1)/2 | |
nn-2 | |
nx | |
n |
→ Maximum number of edges are=n.
Question 157 |
Interrupts which are initially by an instruction are software interrupts | |
When a subordinate is called, the address of the instruction following the CALL instruction is stored in the stack pointer | |
A micro program which is written as 0's and 1's is a binary micro program | |
None of the options |
→ Hardware interrupts are used by devices to communicate that they require attention from the operating system.
→ A software interrupt is caused either by an exceptional condition in the processor itself, or a special instruction in the instruction set which causes an interrupt when it is executed.
Question 158 |
212 | |
210 | |
219 | |
213 |
address line=7
Data lines=8
Chip selected lines=2
Step-1: Total address lines are 27 and chips select lines
Step-2: The chips select lines are 22
Step-3: Total address and chip selected lines are 27 * 22 = 29
Step-4: Number of memory locations for 8 data lines =29 * 23
= 212
Question 159 |
i.((01)*(10)*)*
ii.(10+01)*
iii.(01)*+(11)*
iv.(0*+(11)*+0*)*
i and ii | |
ii and iii | |
iii and iv | |
iv and i |
{ε,01,10,0110,0101,1010,010110,01011010, ……}
→ The set of strings generated by the expression (10+01)* are
{ε,10,01,1010,0101,0110,101010,010101….}
→ The set of strings generated by the expression (01)*+(11)* are
{ε,01,11,0101,1111,010101,111111…}
→ The set of strings generated by the expression (0*+(11)*+0*)*are
{ε,0,11,00,000,011,110,0110,00110,01100,.....}
Compare the strings which are generated by option-1 and option-2.
Question 160 |
The relation is:
Commutative but not associative | |
neither commutative nor associative | |
Both commutative and associative | |
Associative but not commutative |
Question 161 |
5 | |
6 | |
7 | |
4 |
→ The purpose of the branch predictor is to improve the flow in the instruction pipeline.
→ The technique involves only executing certain instructions if certain predicates are true.
→ Branch prediction is typically implemented in hardware using a branch predictor.
→ Branch target conditions resolved at stage 5 means upto 4 stages there are incorrect branch target conditions are there.
→ So Branch condition is resolved at nth stage means, the number of stalls are (n-1)
Question 162 |
A+B+2 | |
A+B+1 | |
B+1 | |
A+B |
When executing the present instruction program counter gets incremented to the address of the next instruction.
So, latest value in PC=A+2.
In the instruction operand value is B, which is used as a offset for the effective address calculation.
So, Effective address= Program counter + Offset.
Here Program counter= A+2, Offset = B
Effective address= A+2+B
Question 163 |
length of UDP=length of IP - length of IP header | |
length of UDP=length of UDP - length of UDP header | |
length of UDP=length of IP + length of IP header | |
length of UDP=length of UDP + length of UDP header |
→ The size of the data by computing "total length - header length"
→ A user datagram is encapsulated in an IP datagram. There is a field in the IP datagram the defines the total length. There is another field in the IP datagram that defines the length of the header. So if we subtract the length of a UDP datagram that is encapsulated in an IP datagram, we get the length of UDP user datagram.
Question 164 |
Inorder | |
Preorder | |
Postorder | |
None of the above |
(i) Traverse the left most subtree starting at the left external node,
(ii) Visit the root, and
(iii) Traverse the right subtree starting at the left external node.
The Inorder traversal of the above tree will outputs: 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10
Question 165 |
NFA
| |
DFA | |
NFA-ɛ / NFA-l
| |
All of the above |
We extend the class of NFAs by allowing instantaneous (ε) transitions:
1. The automaton may be allowed to change its state without reading the input symbol.
2. In diagrams, such transitions are depicted by labeling the appropriate arcs with ε.
3. Note that this does not mean that ε has become an input symbol. On the contrary, we assume that the symbol ε does not belong to any alphabet.
Question 166 |
making starting state as final state | |
make final as a starting state | |
make final states non-final and non final as final | |
None of the options |
Question 167 |
Union | |
Dot | |
Kleene | |
none of the options |
→ If one gets a chance to group the expression, one should group them from left for convenience. For instance, 012 is grouped as (01)2.
Question 168 |
mealy and moore machine are language acceptors | |
Finite state automata is language translator | |
NPDA is more powerful than DPDA | |
mealy machine is more powerful than moore machine |
1.DPDA accept only a proper subset of CFL's ie. LL grammars.
2.NPDA can accept any CFL, which makes them more powerful over DPDA
Question 169 |
Linked allocation
| |
Indexed allocation
| |
Contiguous allocation | |
None of the options |
Advantages:
Faster access as all blocks are nearby.
Suitable for small sequentially accessed file
Disadvantages:
Poor performance if file grows or shrinks.
Linked Allocation:Each block stores pointer to next block
Advantages:
No fragmentation.
Suitable for large sequentially accessed file
Disadvantages:
Random access is not possible, If one link is lost, cannot access subsequent blocks
Note: In File Allocation Table (FAT) all links are cached in a table for faster access.
Indexed Allocation:A single bock stores indexes of all blocks of a file.
Advantage:
Suitable for large randomly accessed file
Eg: UNIX inode stores the first 12 or so data block pointers and then singly, doubly, and triply indirect pointers.
Question 170 |
Ist generation | |
IInd generation
| |
IIIrd generation | |
IV generation |
1. Vacuum tubes were called the first generation;
2. Transistors and diodes, the second;
3. Integrated circuits, the third;
4. Microprocessors, the fourth.
5. Whereas previous computer generations had focused on increasing the number of logic elements in a single CPU, the fifth generation, it was widely believed at the time, would instead turn to massive numbers of CPUs for added performance.
Question 171 |
Remove congestion after it occurs | |
Remove congestion after sometime | |
Prevent congestion before it occurs | |
Prevent congestion before sending packets |
open-loop congestion control (prevention)
closed-loop congestion control (removal).
Question 172 |
International data encryption algorithm | |
private data encryption algorithm | |
Internet data encryption algorithm | |
none of the options |
→ IDEA is an optional algorithm in the OpenPGP standard. PGP encrypts data by using a block cipher called international data encryption algorithm.
→ IDEA operates on 64-bit blocks using a 128-bit key and consists of a series of 8 identical transformations (a round, see the illustration) and an output transformation (the half-round).
→ The processes for encryption and decryption are similar.
Question 173 |
each process | |
each thread | |
each instruction | |
each address |
→ Physically, the memory of each process may be dispersed across different areas of physical memory, or may have been moved (paged out) to another storage, typically to a hard disk drive.
→ When a process requests access to data in its memory, it is the responsibility of the operating system to map the virtual address provided by the process to the physical address of the actual memory where that data is stored.
→ The page table is where the operating system stores its mappings of virtual addresses to physical addresses, with each mapping also known as a page table entry (PTE).
Question 174 |
CDMA | |
CSMA/CA
| |
ALOHA | |
None of the Options |
A wireless LAN can be characterized by the following attributes
Architecture
Physical layer
Medium access control layer
Architecture
Based on IEEE 802.11 standards, wireless LANs can be classified as follows: infrastructure and ad hoc. With the ad hoc architecture, wireless stations communicate directly with each other on an ad hoc basis.
Physical Layer
The physical layer is characterized by the following three elements: the frequency band, the multiple access method (which are similar to "multiplexing" in the wired environment, and the data rate.
Medium Access Control (MAC) Layer
This layer provide the same function as the MAC layer in the wired LAN environment. IEEE 802.11, instead of using Ethernet's CSMA/CD, specifies a scheme called CSMA/CA.
CA stands for Collision Avoidance. (In the wireless environment, since a station may not be able to hear all other stations, CD, Collision Detection is not feasible)
Question 175 |
Regular | |
Non regular | |
Recursive | |
Non Recursive |
Example
L1= {am bn | n ≥ 0 and m ≥ 0} and L2= {am bn ∪ bn am | n ≥ 0 and m ≥ 0}
L3 = L1 ∩ L2 = {am bn | n ≥ 0 and m ≥ 0} is also regular.
Question 176 |
-256
| |
-128 | |
-127 | |
0 |
→ The smallest integer that can be represented by an 8-bit number in 2’s complement form is =-(2(n-1))
= -128
Question 177 |
Pages | |
Frames | |
Partition | |
Segments |
Question 178 |
2 | |
4 | |
3 | |
6 |
=log263
=6
Question 179 |
Q*P | |
QP* | |
Q*P* | |
(P*Q*)* |
→ In order to find out a regular expression of a Finite Automaton, we use Arden’s Theorem along with the properties of regular expressions.
Statement:
Let P and Q be two regular expressions.
If P does not contain null string, then R = Q + RP has a unique solution that is R = QP*
Proof:
R=Q+(Q+RP)P [After putting the value R=Q+RP]
=Q+QP+RPP
When we put the value of R recursively again and again, we get the following equation:
R=Q+QP+QP2+QP3…..
R=Q(ε+P+P2+P3+…. )
R=QP*[As P* represents (ε+P+P2+P3+….)]
Question 180 |
215 | |
214 | |
213 | |
212 |
=26(5)/2
=215
Question 181 |
2-4 tree | |
B+ tree
| |
B-Tree | |
None of the options
|
The numbers mean a tree where every node with children (internal node) has either two, three, or four child nodes:
→ a 2-node has one data element, and if internal has two child nodes;
→ a 3-node has two data elements, and if internal has three child nodes;
→ a 4-node has three data elements, and if internal has four child nodes.
Question 182 |
720 MB | |
1.44 MB | |
720 KB | |
1.44 KB |
→ 3.5-inch floppy diskettes come in sizes of 720 KB low-density, 1.44 MB high density capacity, and IBM even developed an Extended Density disk capable of holding 2.88 MB.
Question 183 |
10 | |
24 | |
12 | |
7 |
→ Convert 255.255.255.0 into binary format.
11111111.11111111.11111111.00000000.
→ Total number of 1’s are 24. And total number of 0’s are 8.
Question 184 |
Number of previous bytes to receive | |
Total number of bytes to receive | |
Number of next bytes to receive | |
Sequence of zero's and one's |
Question 185 |
11001 | |
10001 | |
11000 | |
10000 |
Here, First we have to convert (25)6 into decimal number system. Then we have to convert into binary. (25)6=(17)10=(10001)2
Question 186 |
230.0.0.0 | |
130.4.5.6 | |
230.7.6.5 | |
30.4.5.6 |
→ Class B IP Addresses range from 128.0.x.x to 191.255.x.x. The default subnet mask for Class B is 255.255.x.x.
→ Class C IP addresses range from 192.0.0.x to 223.255.255.x. The default subnet mask for Class C is 255.255.255.x.
Note: Class A addresses 127.0.0.0 to 127.255.255.255 cannot be used and is reserved for loopback and diagnostic functions.
Private IP Addresses:
Question 187 |
255.255.255.192 | |
255.255.255.248 | |
255.255.255.240 | |
255.255.255.224
|
Question 188 |
a technique for overcoming internal fragmentation | |
a paging technique | |
a technique for overcoming external fragmentation | |
a technique for overcoming fatal error |
→ It moves all the occupied areas of store to one end and leaves one large free space for incoming jobs, instead of numerous small ones.
→ In compaction, the system also maintains relocation information and it must be performed on each new allocation of job to the memory or completion of job from memory.
Question 189 |
$ | |
% | |
/ | |
All of the options |
Question 190 |
Type 0 | |
Type 1
| |
Type 2 | |
Type 3 |
Question 191 |
NLSP | |
RIP | |
SAP | |
NCP |
→ NCP (NetWare Core Protocol)provides client-to-server connections and applications.
→ RIP is a distance vector routing protocol.
Question 192 |
Transport layer | |
Network layer | |
Data link layer | |
Session layer |
→ Session, presentation and application layers are user support layers.
→ Transport layer layer connects the network support layers and user support layers
Question 193 |
When process is scheduled to run after some execution
| |
When process is unable to run until some task has been completed | |
When process is using the CPU | |
None of the above |
Question 194 |
{0,1,01,ɛ} | |
{0,1,ɛ} | |
{0,1,01,11,00,10,ɛ} | |
{0,1} |
={ ε, 0, 1, 01 }
Question 195 |
is far less than 1 | |
equals 1 | |
is far greater than 1 | |
none of the options |
Question 196 |
main()
{
printf("process");
fflush();
fork();
fork();
}
8 | |
4 | |
6 | |
7 |
→ The two fork() calls create 3 child processes, and hence "PROCESS" will be executed 4 times if we don't use fflush.
→ If we put a '\n' at end of printf or use fflush(stdout); only 1 printf will be done.
Question 197 |
20 | |
30 | |
40 | |
50 |
Here as given, F=?,V=25 and E=17
→ F+25-17=2
→ 40
Question 198 |
Divide and conquer | |
Backtracking | |
Heuristic approach | |
Greedy approach |
→ The solutions to the sub-problems are then combined to give a solution to the original problem.
→ So Merge Sort first divides the array into equal halves and then combines them in a sorted manner.
Question 199 |
DFA>NFA | |
NFA>DFA
| |
Equals | |
Can't be said |
Question 200 |
char*str="Raj is a research scholar"; | |
charstr[25]="Raj is a research Scholar"; | |
charstr[40]="Raj is a research Scholar";
| |
char[] str="Raj is a research Scholar"; |
Variable initialization syntax : Datatype varible_name[size]="sring"
(or)
Datatype variable_name[ ]=”string”
Question 201 |
Classless addressing | |
Classful addressing | |
Subnet advertising | |
None of the options |
→ The problem with this classful addressing method is that millions of class A address are wasted, many of the class B address are wasted, whereas, number of addresses available in class C is so small that it cannot cater the needs of organizations.
→ Class D addresses are used for multicast routing, and are therefore available as a single block only. Class E addresses are reserved.
Note: Because of these problems, Classful networking was replaced by Classless Inter-Domain Routing (CIDR) in 1993.
Question 202 |
Unicast address | |
Multicast address | |
Broadcast address | |
All of the options |
The first octant of MAC address written in binary format.
07=0000 0111.
The least significant bit 0 then unicast, 1 means Multicast and entire 8 bits are 1’s then broadcast.
Question 203 |
5/32 | |
15/128 | |
35/128 | |
None of the options |
→ Past 6 tosses, What happen we don’t know. But according to 7th toss, we will find that head appeared for 3 times.
→ Any coin probability of a head=½ and probability of a tail=½
→ If we treat tossing of head as success,then this leads to a case of binomial distribution.
→ According to binomial distribution, the probability that in 6 trials we get 3 success is
6C3*(½)3 *(½)3= 5/16 (3 success in 6 trials can happen in 6C3 ways). → 7th toss, The probability of obtaining a head=1/2
→ In given question is not mention that what happens after 7 tosses.
→ Probability for that for 7th toss head appears exactly 4 times is =(5/16)*(1/2)
=5/32.
Question 204 |
Additively | |
Multiplicatively | |
Exponentially | |
None of the options |
→ TCP slow start is an algorithm which balances the speed of a network connection. Slow start gradually increases the amount of data transmitted until it finds the network’s maximum carrying capacity.
→ TCP slow start is one of the first steps in the congestion control process. It balances the amount of data a sender can transmit (known as the congestion window) with the amount of data the receiver can accept (known as the receiver window).
→ The lower of the two values becomes the maximum amount of data that the sender is allowed to transmit before receiving an acknowledgment from the receiver.
Question 205 |
file content | |
file permission | |
open count | |
close count |
Question 206 |
Booting | |
Spooling
| |
Thrashing | |
Formatting |
Question 207 |
it is easy to generate | |
it cannot be shared | |
it is different for every access | |
it can be easily decrypted |
Question 208 |
16 | |
26 | |
32 | |
64 |
=22*24
=4*16
=64
Question 209 |
contain address of next node | |
may contain null character
| |
contain address of next pointer | |
both (A) and (B) |
→ The field of each node that contains the address of the next node is usually called the 'next link' or 'next pointer'.
→ The remaining fields are known as the 'data', 'information', 'value', 'cargo', or 'payload' fields. Note: Option C is also correct.
Question 210 |
m*n | |
minimum of m,n | |
Maximum of m,n | |
M+n-1 |
→ Since we need to merge 2 at a time, the optimal strategy would be to take smallest size lists first.
→ The reason for picking smallest two items is to carry minimum items for repetition in merging.
Question 211 |
π | |
∅ | |
a | |
b |
Question 212 |
Programs exhibits temporal locality | |
Programs have small working set | |
Read operation is frequently required rather than write operation | |
Programs exhibits spatial locality |
1)Temporal locality says that if something is accessed once, “it will probably be accessed again soon"
2)Spatial locality says that if something is accessed, something nearby it will probably be accessed
Note: Larger block sizes help with spatial locality. Easiest way to reduce miss rate is to increase cache block size
Question 213 |
i.By using shortest job first resource allocation policy
ii.By using first come first serve resources allocation policy
i only | |
i and ii only | |
ii only | |
None of the options |
→ Starvation never happen into FCFS because it is purely non preemptive allocation strategy.
Question 214 |
Process tend to be I/O bound | |
Locality of reference is applicable to the process | |
size of pages is reduced | |
Process tend to be CPU bound |
1.We can increase size of main memory
2.Decreasing the degree of multiprogramming
3.Locality of reference is applicable to the process
4.Possible to increase the page size.
Question 215 |
'-' is left associative and '*' has precedence over '-'
| |
'-' is right associative and '*' has precedence over '-' | |
'-' is right associative and '-' has precedence over '*' | |
'-' is left associative and '-' has precedence over '*' |
Step-1: 5-2-3*5-2 will be 19.
Step-2: if it is treated as (5-(2-3))*(5-2)
Step-3: - has precedence over * and if it associates from the right.
Question 216 |
1 | |
0 | |
2 | |
none of the options |
Question 217 |
1 | |
0 | |
11 | |
800 |
I.1+ X = 1. So 1+(1+1…+1)= 1+(X)= 1
II.0+ X = X
Question 218 |
Continuous and differentiable
| |
Continuous but not differentiable | |
Differentiable but not continuous | |
Neither continuous nor differentiable |
So we can’t any thing about continuous or differentiable .So suitable options are neither continuous nor differentiable.
Question 219 |
0.54 | |
0.66 | |
0.33 | |
0.44 |
P(X)+P(Y)+P(Z)=1
Given data is P(X)=0.5P(Y) and P(Z)=0.3P(Y)
Substitute the values in the above equation
0.5P(Y)+P(Y)+0.3P(Y) =1
1.8P(Y)=1
P(Y)=1/1.8=0.5555
Question 220 |
Codes | |
Blocks | |
IPs | |
Sizes |
→ To overcome the problem of address depletion and give more organizations access to internet, classless addressing was designed and implemented.
→ The size of the block (the number of addresses) varies based on the nature and size of the entry. For example, a household may be given only two addresses; a large organization may be given thousands of addresses. An ISP, may be given thousands or hundreds of thousands based on the number of customer it may serve.
→ To simplify the handling of addresses, the Internet authorities impose three restrictions on classless address blocks:
1. The addresses in a block must be contiguous, one after the other.
2. The number of addresses in a block must be a power of 2 (1, 2, 4,8, .... ).
3. The first address must be evenly divisible by the number of address.
Question 221 |
Complex routers | |
Open to DOS attack | |
No overlapping of fragments | |
(A) and (B) both |
→ The support for fragmentation of larger packets provides a protocol allowing routers to fragment a packet into smaller packets when the original packet is too large for the supporting data link frames.
→ IP fragmentation exploits (attacks) use the fragmentation protocol within IP as an attack vector.
IP fragment over lapped:
The IP fragment overlapped exploit occurs when two fragments contained within the same IP packet have offsets that indicate that they overlap each other in positioning within the packet. This could mean that either fragment A is being completely overwritten by fragment B, or that fragment A is partially being overwritten by fragment B.
Overlapping fragments may also be used in an attempt to bypass Intrusion Detection Systems
Question 222 |
RE=P/L | |
RE=P+L | |
RE=P*L | |
RE=2*P*L |
where P is the probability of occurrence for a risk, and L is the cost to the project should the risk occur.
Question 223 |
Which statement about bank rate in India is correct?
RBI gives loan to commercial banks at this rate against collateral
| |
The Reserve Bank of India (RBI) determines bank rate in India | |
The ministry of finance determines bank rate
| |
This is the rate at which commercial banks lend to their customers |
Question 224 |
Which of the following steps are taken to control inflation?
Reduction I bank rate | |
Decreasing government expenditure
| |
Decreasing cash reserve ratio (CRR)
| |
Increasing the money supply in the economy
|
Question 225 |
Which of the following kings assumed the title of Gangaikonda chola?
Vijaydevraya
| |
Rajaraja chola
| |
Samudragupta
| |
Rajendra I |
Question 226 |
Who established the Christi order in India?
Nizamuddin Aulia
| |
Bhaktiyar Kaki
| |
Farid-ud-Din-Ganj-i-Shakar
| |
Khwaja Moinuddin
|
Question 227 |
Which one of the following statements is NOT correct?
Lok Sabha is the lower house of the parliament
| |
Rajya Sabha is the upper house of the parliament | |
Lok Sabha is the permanent house of the parliament
| |
Rajya Sabha is the permanent house of the parliament
|
Question 228 |
Which of the following statements is correct?
The governor appoints the chief minister of a state
| |
The president appoints the chief minister of a state | |
The chief minister appoints the governor of a state | |
The prime minister appoints the governor of a state |
Question 229 |
Which Port was first developed after India lost Karachi Port to Pakistan?
Marmagao
| |
Nhava Sheva | |
Paradeep
| |
Kandla
|
Question 230 |
Millions of years ago. The area now occupied by the Himalayas and the northern plains was under___________.
the Tethys sea
| |
the Shipkila pass | |
Lake Mansarovar
| |
River Satluj
|
Question 231 |
What are Metalloids?
Unreactive, inert elements
| |
Elements that show the properties of both metals and non-metals | |
Mixtures formed by the combination of two or more non-metals | |
Compounds formed by the combination of two or more elements |
Question 232 |
Which is the longest bone in human body?
Back bone
| |
Hip bone | |
Thigh bone | |
Shoulder bone
|
Question 233 |
_________ is a folk theatre form comprising music, dance, make-up, costume and dialogue.
Bharatanatyam
| |
Ghoomar
| |
Yakshgana
| |
Bagurumba
|
Question 234 |
Who among the following authored the popular Bengali novel Hajar Churashir Maa?
Tarashankar Bandopadhyaya
| |
Ashapurna Devi
| |
Mahasweta Devi | |
Bishnu Dey
|
Question 235 |
In the year 1957, who among the following became the first recipient of the Padma Shri award in Sports category?
Mihir Sen | |
Milkha Singh
| |
Balbir Singh
| |
Sardar Singh
|
Question 236 |
Which of the following was chosen as the Best Feature Film in the 63rd National Film Awards?
Court
| |
Nannu Avanalla Ayalu | |
Baahubali – The Beginning
| |
Prem Ratan Dhan payo |
Question 237 |
Who is the first man to hold both the 100 metres and 200 metres world records since fully automatic time became mandatory?
Usain Bolt | |
Asafa Powel
| |
Carl Lewis
| |
Tyson Gay
|
Question 238 |
Select the related letters / numbers from the given alternatives,
BHEK: YVSP: :DGJM:?FILO | |
WTQN
| |
WYAC | |
NQTX |
Question 239 |
Select the related letters / numbers from the given alternatives,
12 : 20 : : 30 : ?36 | |
40 | |
42 | |
44 |
Question 240 |
Select the one which is different from other three alternatives
Safe : Secure
| |
Kind : Cruel | |
Clear : Vague | |
Shallow : Deep
|
Question 241 |
Select the one which is different from other three alternatives
6 : 15 | |
8: 23
| |
10 : 31
| |
12 : 37
|
Question 242 |
Choose the correct alternative from the given ones which will complete the series;
4, 9, 20, 43, ? 18588 | |
90 | |
92 | |
96 |
Question 243 |
Choose the correct alternative from the given ones which will complete the numbers/letter series.
NBM, KEP, HHS, ? , BNYEJW | |
EKU
| |
EKV
| |
FLV |
Question 244 |
Pointing to a lady in a photograph Savita said, “Her father’s only son’s wife is my mother-in-law”. How is that lady in the photograph related to the Savita’s husband?
Aunt | |
Mother
| |
Cousin
| |
Sister – in – Law |
Question 245 |
Seven friends P, Q, R, S, T, V and X are sitting in a row, facing North. ‘P’ is to the immediate left of ‘Q’, but on the immediate right of ‘R’. ‘S’ is on the right of ‘P’ but is on the left of ‘T’, ‘V’ is on the left of ‘X’ who is to the left of ‘R’, Who is sitting right in the middle?
X | |
S | |
R | |
P |
Question 246 |
From the given alternatives, select the word which cannot be formed using the letters of the given word,
CLASSIFICATIONFICTION | |
NATIONAL
| |
LIAISON
| |
NILOTIC |
Question 247 |
If in a certain code languages STRONG is written as QVPQLI. How would SILVER be written in the same code language?
TJMWFS
| |
QGJTCP
| |
QKJXCT | |
REVLIS
|
Question 248 |
Some equations are solved on the basis of a certain system, Find the correct answer for the unsolved equation on that basis.
3X2=10, 4X3=14, 6X5=22, 7X6=?42 | |
36 | |
30 | |
26 |
Question 249 |
Identify the diagram that best represents the relationship among classes given below.
People, Carpenters, BooksQuestion 250 |
Sachin walked 7 Km West of his house and turned to his left and walked 5 Km. Then he moves 10 Km towards East and then again 3 Km West, Finally, he turns left and walks 2 Km. How far and in which direction is Sachin from his house i,e, starting point?
7 Km towards South | |
7 Km towards West | |
10 Km towards North
| |
10 Km towards East
|
Question 251 |
Consider the given statements to be true even if they seem to be at variance from commonly known facts. You have to decide which one of the conclusions can definitely be drawn from these statements.
- Statements:
(i) All Books are Pens.
(ii) All Pens are Pencils.
Conclusions:
I. All Pencils are Books.
II. Some Pencils are Books.
Only conclusion I follows | |
Only conclusion II follows
| |
Both conclusion I and II follow
| |
Neither I nor II follows
|
Question 252 |
Which of the answer figure is exactly the mirror image of the given figure, when mirror is held at MN?
Question 253 |
The least number which when divided by 12, 16, 24 and 36 leaves remainder 7 in each case:
139 | |
144
| |
151 | |
295 |
Question 254 |
The length, breadth and height of a room are respectively 825 cm. 675 cm and 450 cm, what is longest tape which can measure the three dimensions of room exactly?
25 cm | |
50 cm | |
55 cm | |
75 cm |
Question 255 |
Let X varies inversely as Y and Y = 60 when X = 1.5. What is the value of X, when Y= 4.5?
20 | |
809 | |
30 | |
45 |
Question 256 |
If 25, X, 2X, 72 are in proportion then what is value of X?
20 | |
24 | |
30 | |
32 |
Question 257 |
The simple interest on certain sum of money at 6% per annum for 3 ½ years is ₹ 200. What is the sum invested?
₹ 1000
| |
₹ 900 | |
₹ 800 | |
₹ 700 |
Question 258 |
The compound interest on ₹ 48,000 for 1 year at 10% per annum compounded half-yearly in Rs is;
4800
| |
4920 | |
5800 | |
10080
|
Question 259 |
A shopkeeper marks his goods 20% above cost price and gives a discount of 20%. What is his net profit or loss?
gain 4% | |
loss 4%
| |
loss 5% | |
no profit no loss
|
Question 260 |
By selling 50 pens, a shopkeeper gained the amount equal to selling price of 10 pens, what is his profit percent?
403%
| |
503% | |
20% | |
25% |
Question 261 |
Two vessels A and B contains water and sprit in the ratio 3 : 4 and 5 : 2 respectively. They are mixed in the ratio 4 : 5. What is the ratio of water and sprit in the new mixture?
3 : 2 | |
2 : 3
| |
30 : 37 | |
37 : 30
|
Question 262 |
A train of length 110 m is moving with a speed of 90 Km/h and another train of length 130 m is moving with a speed of 36 Km/h in the same direction along parallel tracks. What is the time taken in seconds by the faster train to cross the slower train?
223 | |
263 | |
16 | |
18 |
Question 263 |
The speed of a boat in still water is 30 Km/h and speed of stream is 6 Km/h. What is the time taken by the boat to cover a distance of 5 Km in upstream direction?
50 minutes
| |
16 min 40 seconds
| |
10 minutes | |
8 min 20 seconds
|
Question 264 |
The sum of infinite G.P 8, -4, -2, -1, _______ is:
16/3 | |
8/3 | |
5 | |
8 |
Question 265 |
A and B working together can finish a work in 20 days, A, B and C working together can finish same work in 15 days. In how many days, B alone can finish twice the same work?
120/7
| |
60 | |
90 | |
120 |
Question 266 |
From the top of a 60 m high tower, the angle of depression of top and bottom of a building are 300 and 450 respectively. What is the height of building?
20(3-√3) m
| |
20√3 m
| |
30√3 m | |
30(√3-1) m |
Question 267 |
What are the values of K for which the equation x2 + Kx + 1 = 0 has no real roots?
-2< K< 2 | |
-2 < K < 2
| |
2 < K < -2
| |
2 < K < -2
|
Question 268 |
Fill in the blank with appropriate words.
He does not like to be kept waiting for so long. Next time, make sure you __________ on time.
reaching | |
reach | |
are reach | |
reached |
Question 269 |
Find the error in the following sentences.
Whenever there is excess raining, the standing crops tend to get damaged.
there is | |
raining | |
tend to | |
damaged
|
Question 270 |
It was a long journey by train but we were well equipped with food and water to lasted us the way.
by train
| |
we were
| |
food and water
| |
to lasted
|
Question 271 |
Choose the correct synonyms of the underlined words.
I witnessed an injured man being picked up by an auto rickshaw driver. Who reached him to hospital. I marveled at the latter’s sense of duty.
admired | |
looked
| |
shocked
| |
mocked |
Question 272 |
Sunita and I are good friends but since she quite temperamental I am always unsure of the response she will give me.
clever
| |
moody | |
naughty
| |
popular |
Question 273 |
Choose the correct antonyms of the underlined words.
Not everyone enjoys going on a cruise as the waters can get choppy at sea.
disturbed
| |
turbulent | |
calm | |
dangerous |
Question 274 |
The travelers found themselves in a predicament when no one opened the door in the night.
dilemma | |
good fortune
| |
place | |
spotlight
|
Question 275 |
Choose the word that is spelt correctly.
ilumination
| |
creasion
| |
hallucination | |
imajination
|
Question 276 |
Find the meaning of the underlined idiom/phrase.
My brother was ready to go out and play cricket at the drop of a hat even during exam times. Which exasperated my mother
as soon as possible
| |
at any given opportunity | |
very hesitatingly
| |
whenever his friends dropped by |
Question 277 |
Find the meaning of the underlined idiom/phrase.
The teacher asked the student to stop beating around the bush.
come straight to the point
| |
not to tell a lie
| |
be bold and face the reality
| |
be shy and troubled |
Question 278 |
Fill in the blanks with appropriate words.
“All is not lost yet.” Our lawyer said after listening to strong arguments by our case with fresh arguments.”
counsel | |
councilor | |
consul | |
consulate |
Question 279 |
The way to the National Park was ________ a village which was said to be full of bandits.
though | |
thought | |
thorough
| |
through
|
Question 280 |
Fill in the blank with the correct voice form.
Let’s not worry about what hs happened so far. Let’s concentrate on what _________ for the underprivileged by us.
will be doing
| |
we have done
| |
can be done
| |
can be doing |
Question 281 |
Fill in the blank with the correct voice form.
The match __________ with great enthusiasm by all of us as the Indian team was playing.
is being watched
| |
were watched
| |
was watching
| |
was being watched
|
Question 282 |
Read the passage and arrange the sentences B to E in the correct order. The sentence marked ‘A’ comes in the beginning and the sentence marked ‘F’ comes at the end of the passage.
- A. We had a wonderful holiday in Europe this summer when we flew from Delhi to Paris.
B. We travelled from Paris to Switzerland by bus.
C. In Paris we saw the Eiffel Tower, many palaces and churches.
D. Our last stop was in Italy where we went to Florence, Venice and Rome.
E. In Switzerland we took a train to the highest mountain top in Europe called Jungfrau.
F. From Rome we flew back to Delhi.
CBED
| |
ECDB
| |
CEBD
| |
BEDC |
Question 283 |
Pure sine wave | |
Pulse code modulation
| |
Sampling | |
Rarefaction |
where:
A = amplitude, the peak deviation of the function from zero.
f = ordinary frequency, the number of oscillations (cycles) that occur each second of time.
ω = 2πf, angular frequency, the rate of change of the function argument in units of radians per second
φ = phase, specifies (in radians) where in its cycle the oscillation is at t = 0.
When
φ is non-zero, the entire waveform appears to be shifted in time by the amount
φ /ω seconds. A negative value represents a delay, and a positive value represents an advance.
Question 284 |
Hub | |
Modem | |
Switch | |
Gateway |
→ Physical layer uses HUB and repeater
→ Data link layer uses Switch. MAC address comes into data link layer.
Question 285 |
The city has become impossible | |
to live | |
mainly because | |
the prices are prohibitive. |
Question 286 |
of genome structure and behaviour,established by researchers | |
clever and wise, but sometimes difficult to understand | |
of metallic substances that are soluble in water | |
slowly working on your mind but hard to experience physically |
Question 287 |
detain soldiers for physical examination and security alert in military camps | |
remove somebody, especially a ruler, from power after a long revolution | |
to move soldiers into a position where they are ready for military action | |
disapprove of something in strong terms on ethical grounds |
Question 288 |
duty-bound | |
needing immediate attention | |
of imperial command | |
obligatory |
Question 289 |
so many good things that it is difficult to choose just one | |
so few good things that it is practically impossible to choose | |
plenty of riches of which you are embarrassed owing to your bad behaviour | |
too much of wealth that makes you feel embarrassed among poor people
|
Question 290 |
has portrayed | |
portrayed | |
will have portrayed
| |
shall portray |
Question 291 |
The man has not been keeping well for a long time. He didn't look quite the self this morning.
look quite the same person | |
look quite the self as usual | |
seem quite himself | |
quite seem himself |
Question 292 |
I can still vividly remember my grandfather _____ me to play cards.
teach | |
taught | |
has taught | |
teaching |
Question 293 |
given options :
The administration was quite helpful. They tried everything they could possibly improve the situation.
they possibly could to improve | |
they could possible to improve | |
they could to possibly improve | |
they possibly to could improve |
Question 294 |
Confident | |
Easy | |
Limited | |
Agile |
Question 295 |
श्रद्धा, इड़ा | |
इड़ा, पिंगला | |
प्रज्ञा, चेतना | |
मेधा, शची |
Nagendra Prasad Singh Patel,
Research Scholar,
University of Hyderabad
Question 296 |
सकर्मक, द्विकर्मक | |
द्विकर्मक, प्रेरणार्थक | |
अकर्मक, सकर्मक | |
मुख्य, सहायक |
Question 297 |
सौंदरता | |
सौंदर्य | |
सौंदर्यता | |
सुंदरत्व |
Question 298 |
भारतेंदु हरिश्चन्द्र | |
अमीर खुसरो | |
नजीर अकबराबादी | |
हजारी प्रसाद द्विवेदी |
Question 299 |
अनुभाव , संचारी | |
आलंबन ,उद्दीपन | |
साधारणीकरण, आस्वादन | |
नायक, नायिका |
Question 300 |
अधिकारी | |
पैर | |
ओहदा | |
चरण |
Question 301 |
हाथ | |
टेक्स | |
किरण | |
काम |
Question 302 |
अस्त्र | |
शस्त्र | |
प्रक्षेपास्त्र | |
गोला –बारूद |
Question 303 |
माथा भन्ना जाना | |
माथा ठनकना | |
माथा गर्म होना | |
माथा झुकजाना |
Question 304 |
घृणा | |
लज्जा | |
करुणा | |
आतंक |
Question 305 |
Direct elections from national constituencies | |
Direct elections from assembly constituencies | |
Indirect elections from territorial constituencies | |
Direct elections from territorial constituencies |
Question 306 |
Pakistan, China, India | |
China, India, Pakistan | |
Pakistan, India, China | |
China, Pakistan, India |
Question 307 |
1956 - 1966 | |
1960 - 1966 | |
1966 - 1976 | |
1970 - 1976 |
Question 308 |
Species → Genus→ Family → Order → Class → Phylum or Division → Kingdom | |
Species → Genus → Order → Family → Class → Phylum or Division → Kingdom | |
Species → Genus → Family → Class → Order → Phylum or Division → Kingdom | |
Species → Family -→ Genus → Order → Class → Phylum or Division → Kingdom |
Question 309 |
Eleventh Schedule | |
Twelfth Schedule | |
Ninth Schedule | |
Sixth Schedule |
Question 310 |
Arctic Circle | |
Great Circle | |
Small Circle | |
Antarctic Circle |
Question 311 |
Rabindranath Tagore | |
Vinoba Bhave | |
Baba Amte | |
Aurobindo Ghosh |
Question 312 |
Allahabad (Prayag) Pillar Inscription of Samundragupta | |
Aihole Inscription of Pulakesin II | |
Bhitari Pillar Inscription of Skandagupta | |
Nandsa Inscription of A.D. 226 |
Question 313 |
(1) a female cricketer
(2) a member of the Indian women's hockey team
(3) a well known woman chess player
(4) a woman biker and social activist
1992 | |
1998 | |
1993 | |
1978 |
Question 314 |
1992 | |
1998 | |
1993 | |
1978 |
Question 315 |
(i) Arti is a year older than Nidhi.
(ii) Anku is two years younger than Nidhi, but one year younger than Shantanu.
Who is the youngest among all ?
Anku | |
Arti | |
Nidhi | |
Shantanu |
Question 316 |
13 km | |
10 km | |
8 km | |
5 km |
Question 317 |
RTQ | |
UQR | |
SQU | |
PTU |
Question 318 |
BDGK | |
CEHL | |
EGJN | |
DEHM |
Question 319 |
TUDVUT | |
QDZCDQ | |
UTVDTU | |
SBFEFS |
Question 320 |
17/25 | |
18/49 | |
23/30 | |
23/36 |
Question 321 |
1135 | |
1235 | |
1288 | |
1335 |
Question 322 |
Ammeter | |
Barometer | |
Voltameter | |
Thermometer |
Question 323 |
GHz | |
Gbps | |
pps | |
ppm |
Question 324 |
Esc, S | |
Esc, N | |
Ctrl, F | |
Ctrl, S |
Question 325 |
Unix | |
Linux | |
Ubuntu | |
Python |
Question 326 |
lower, shift | |
upper, shift | |
lower, escape | |
upper, escape |
Question 327 |
Drag and drop | |
Cut-Copy-Paste | |
Cut-Paste | |
Copy-Paste |
Question 328 |
Copy cat | |
Carbon copy of e-mail | |
Copy to consumer of e-mail | |
Create a copy of e-mail |
Question 329 |
Servers, Clients | |
Clients, Servers | |
Servers, Operating system | |
0perating system, Clients |
Question 330 |
Centre Processing Unit | |
Central Processing Unit | |
Core Processing Unit | |
Core Product Unit |
Question 331 |
Maliciousware | |
Malware | |
Badware | |
Illegalware |
Question 332 |
Portals | |
Output devices | |
Input devices | |
Processing devices |
Question 333 |
12 months | |
2 years | |
6 months | |
Four or five years |
Question 334 |
locomotor problems | |
aggressive and destructive behaviour | |
limitation in adaptive skills for daily functioning | |
barriers in visual acuity
|
Question 335 |
I. The diagnosis of physical body of a child is important.
II. The children are valued in their own
III. Intervention is defined by the diagnosis.
IV. Disability is caused by the way society is organised.
I and III | |
II and III | |
II and IV | |
I, II and III |
Question 336 |
As human beings they need help and pity from the society | |
An attitude of benevolence | |
An attitude of isolation and indifference | |
Like normal children they need and deserve independence in living and equal opportunities and participation |
Question 337 |
Leprosy-cured person | |
Mentally retarded | |
Hearing impaired | |
Autistic child |
Question 338 |
I. Repetition and reproduction of message
II. Large volume of communication
III. Organisation of messages in flow
IV. Verbal presentation interspersed
I and II । | |
III and IV | |
I, II and III | |
II, III and IV |
Question 339 |
Message, communicator, medium, effect, receiver | |
Communicator, message, medium, receiver, effect | |
Message, medium, communicator, receiver, effect | |
Communicator, medium, message, receiver, effect |
Question 340 |
to help individuals adjust to their environment | |
to enable individuals to fulfil their "potentialities | |
processing of information in order to control the environment in which one lives | |
to help individuals maintain equilibrium in social relationships |
Question 341 |
Virtual Classroom | |
Shaala Saarth | |
Smart Classroom | |
Infibeam |
Question 342 |
Teacher is able to identify brilliant students | |
Teacher is able to identify weak students | |
Teacher is able to assess the learners' achievement and can re-plan his/her teaching strategies in future | |
Teacher is able to grade his/her learners |
Question 343 |
constant repetition of a portion of another's spoken words/speech | |
constant movement of the limbs | |
constant blinking of eyes | |
flapping of hands |
Question 344 |
Mathematics | |
Statistics | |
Science | |
Simple arithmetic tools |
Question 345 |
Construction | |
Conduct | |
Language | |
Evaluation |
Question 346 |
Effective ventilation and water drainage system | |
Adequate furniture | |
Adequate chemicals and equipments | |
Availability of gas connection |
Question 347 |
There should be sufficient number of books | |
Books should be relevant to interests of the children | |
Learners should have open access to books | |
More books on local culture should be there |
Question 348 |
Teach 'B' without including in next day's lesson plan | |
Include 'B' in next day's lesson plan | |
Ignore 'B' and go ahead with second day's lesson plan | |
Compress the content of next day's lesson plan and teach 'B' along with it |
Question 349 |
Annual Plan | |
Instructional Plan | |
Unit Plan | |
Lesson Plan |
Question 350 |
Psychology of learners | |
Social and cultural ethos | |
Innate potential of learners | |
Linguistic abilities of learners |
Question 351 |
Selection of content | |
Gradation of content | |
Organisation of content | |
Curricular motives |
Question 352 |
5K
| |
10K | |
15K | |
20K |
=100*10-3 sec
=1 /10 sec
Step-2: Sampling rate= 100KS/s
= 100*1000 S/sec
= 100000 sec
Step-3: 1/10 sec= 10000 S/sec
= 10*1000
= 10K
Question 353 |
had given some money | |
will have some money on you | |
might have had some money on you | |
might given some money |
Question 354 |
showing extreme resistance to certain types of food | |
having resilience and tenacity not usually found in others. | |
displaying signs of fatigue and infection in the body | |
having had habits that cannot be changes or improved |
Question 355 |
System of classifying things | |
uses of | |
value of | |
system of naming things |
Question 356 |
latest next Saturday | |
latest by Saturday next | |
next Saturday at the latest | |
next Saturday latest |
Question 357 |
was prompted | |
will be prompted | |
has to be prompted | |
had to be prompted |
Question 358 |
abduct | |
contract | |
expand | |
shrink |
Question 359 |
a situation on which you have no choice because of you don’t accept what is given, you get nothing at all | |
a situation in which you have all choice but if you accept the choice you forfeit the right to choice again. | |
a choice where your fortunes have already been decided before you exercise the choice | |
a choice which is a win-win situation for parties involved in unlike business |
Question 360 |
members of a group who do not actually fight but observe combat from outside | |
notes written in the margins of a book or documents you have read | |
people who have had an experience of border countries and territories | |
marked with pencil and drawn on the roofs of public buildings |
Question 361 |
Roses grow | |
with abundance against this | |
old wall | |
in this season |
Question 362 |
from some remove | |
in a remove | |
at one remove | |
at certain remove |
Question 363 |
ज्ञानमार्गी निर्गुण भक्तिधारा | |
राम भक्तिधारा | |
प्रेममार्गी सूफी काव्यधारा | |
कृष्ण भक्तिधारा |
Question 364 |
उर्वशी | |
यशोधरा | |
चिदंबरा | |
कामायनी |
Question 365 |
शिक्षक | |
एक नक्षत्र | |
पचाने में कठिन | |
भारी |
Question 366 |
सोने पे सुहागा | |
बेपेंदी का लोटा | |
मोटी अक्ल का | |
पत्थर की लकीर |
Question 367 |
युवा भारतीय टीम ने | |
बल्लेबाज़ी | |
टॉस | |
भारतीय टीम ने |
Question 368 |
ध्वनि | |
अभिधा मूला | |
व्यंजना | |
लक्षणा |
Question 369 |
आयुध | |
तलवार | |
अस्त्र | |
शस्त्र |
Question 370 |
भय | |
भ्रम | |
संदेह | |
जिज्ञासा |
Question 371 |
शब्द | |
वाक्य | |
ध्वनि | |
वर्ण |
Question 372 |
चिकनाई | |
गोद | |
प्रेम | |
तेल |
Question 373 |
Karnataka | |
Chennai
| |
Delhi | |
Mumbai |
Question 374 |
B.R. Ambedkar | |
Rajendra Prasad | |
B.N. Rau | |
Jawaharlal Nehru |
Question 375 |
It is comparable to the Roman script. | |
It is written from left to right like the Devanagari. | |
It is an alphabetic script. | |
It is a pictographic script. |
Question 376 |
Linear | |
Circular | |
Rectangular | |
Star-shaped |
Question 377 |
Michael Ondaatje | |
Kiran Desai | |
V.S. Naipaul | |
Salman Rushdie |
Question 378 |
The emphasis of Brown Agenda is on Inter-generational equity | |
Brown agenda deals with locals issues of the urban poor and the disadvantaged | |
Brown agenda deals with environmental issues, associated with urban and industrial areas | |
Brown agenda deals with issues such as pollution, waste disposal and the provision of safe drinking water and affordable housing. |
Question 379 |
Nikita Khrushchev | |
Mikhail Gorbachev | |
Boris Yeltsin | |
Vladimir Putin |
Question 380 |
January 2016 | |
July 2016 | |
January 2015 | |
July 2015 |
Question 381 |
Saina Nehwal | |
Syed Modi | |
P.V. Sindhu | |
Taipeis Tai Tzuying |
Question 382 |
Amensalism | |
Mutualism | |
Competition | |
Commensalism |
Question 383 |
840 | |
504 | |
672 | |
1008 |
Question 384 |
(a) C is sitting to immediate left of A.
(b) B is sitting to the right of A and D.
(c) E is sitting to the left of C and A.
Who is sitting in the middle?
C | |
D | |
A | |
B |
Question 385 |
BFJN | |
BEGK | |
DEGJ | |
EBGM |
Question 386 |
SGFVAQN | |
SGFNVAQ | |
SGFNQNA | |
SGFVQAN |
Question 387 |
22nd | |
23rd | |
20th | |
21st |
Question 388 |
South-West | |
South | |
North-West | |
West |
Question 389 |
Question 390 |
- There are two married couples and two unmarried persons
- The doctor is married to Lawyer
- X is married to the CA
- A’s father is a professor
- The Lawyer is C’s daughter-in-law
- Z is not A’s husband
- Y is not X’s son, nor is he an Architect or Professor
Who is the Architect?
X | |
Z | |
A | |
B |
Question 391 |
Tricycle | |
Tricolour | |
Trifle | |
Trident |
Question 392 |
36 | |
48 | |
21 | |
27 |
Question 393 |
dpi | |
ppm | |
Gbps | |
GHz |
Question 394 |
bmp, image, mp3, sound | |
jpeg, image, sound, mp3 | |
bmp, sound, mp3, song | |
bmp, sound, mp3, image |
Question 395 |
Favourite Asked Question | |
Favourite and Answered Questions | |
Frequently Answered Questions | |
Frequently Asked Questions |
Question 396 |
number, enter key | |
function, enter key | |
function, space bar | |
alphabetic, space bar |
Question 397 |
clients, serves | |
Applications, complex software | |
System software, application software | |
Servers, clients |
Question 398 |
Ctrl, F | |
Ctrl, S | |
Alt, F | |
Alt, S |
Question 399 |
3-d | |
Landscape | |
Laserjet | |
Inkjet |
Question 400 |
To and Bcc. Cc | |
To and Cc, Bcc | |
Bcc, To | |
Cc and Bcc, To |
Question 401 |
scan device and identify | |
scan device, identify and eliminate | |
scan device and eliminate | |
identify and eliminate |
Question 402 |
select file, hit delete key | |
double click on file, hit delete key | |
drag and drop in recycle bin | |
select file → right click → delete |
Question 403 |
(a) It involves exchange of ideas, facts and questions
(b) It is a continuous process
(c) It is both verbal and non-verbal
(d) It is synchronous in nature
(a), (b) and (d) | |
(b), (c) and (d) | |
(a), (c) and (d) | |
(a), (b) and (c) |
Question 404 |
Instructional Plan | |
Unit Plan | |
Lesson plan | |
Activity plan |
Question 405 |
International considerations | |
Family aspirations | |
Societal goals | |
National goals |
Question 406 |
Gas connection | |
Drainage system | |
Availability of natural light and ventilation | |
Demonstration Table |
Question 407 |
Additional curriculum for special needs children | |
Curriculum on skill areas which are specific to special difficulties of CWSN | |
A modified curriculum for education of the children with special needs (CWSN) | |
Lessons or academic content meant for CWSN |
Question 408 |
Provide material in less important areas | |
Increase learner’s text reading interests | |
Further enrich learner’s interest in various subjects | |
Provide material in the areas not covered by the teacher |
Question 409 |
Six C’s and Three S’s | |
Eight C’s and Four S’s | |
Seven C’s and Four S’s | |
Seven C’s and three S’s |
Question 410 |
Situational test | |
Diagnostic test | |
Achievement test | |
In basket test |
Question 411 |
Low cost | |
Popular | |
Involving participation of maximum senses | |
Easy to handle |
Question 412 |
Herbertian steps | |
Hila Taba steps | |
Hilgardian steps | |
Haber’s steps |
Question 413 |
formal communication | |
informal communication | |
advertisement and publicity | |
selective perception |
Question 414 |
Multimedia | |
Online Communication | |
Convergence | |
Integrated media |
Question 415 |
dyspraxia | |
dyslexia | |
dysgraphia | |
dysphasia |
Question 416 |
Selection of content | |
Gradation of content | |
Organisation of content | |
Classification of content |
Question 417 |
qualified to offer special services in different inclusive/integrated schools | |
expert in a number of curricular areas | |
a special teacher appointed for a particular inclusive school | |
a special teacher appointed temporarily on ad hoc basis |
Question 418 |
barriers in communication by language | |
barriers in moving around | |
barriers in individuals self-care skills | |
barriers in tactile skills |
Question 419 |
Know what students have learnt | |
Know the areas where the learners are weak | |
Grade learners as sharp, weak and average | |
Ascertain the fulfillment of scholastic goals |
Question 420 |
(a) Impairments should be fixed by medical or other treatments.
(b) Disability is caused by the way society is organized.
(c) Impairment is the focus of attention.
(d) The children are valued in their own right.
(b) and (d) | |
(a) and (c) | |
(a) and (d) | |
(b), (c) and (d) |
Question 421 |
They lack in ability to generalize | |
They feel difficulty in abstraction | |
They are poor in communication ability | |
They can understand cause-effect relationship |
Question 422 |
Subjectivity | |
Objectivity | |
Reliability | |
Validity |
Question 423 |
Reliability | |
Objectivity | |
Ambiguity | |
Validity |
Question 424 |
Overhead projector | |
Blackboard | |
Epidiascope | |
Slide projector |
Question 425 |
Writing fast and as clearly as possible. | |
Writing the matter first and then asking students to read it. | |
Asking a question to students and then writing the answer as stated by them. | |
Writing the important points as clearly as possible. |
Question 426 |
helps students in becoming better citizens | |
imparts subject knowledge to students | |
prepares students to pass the examination | |
presents the subject matter in a well organized manner |
Question 427 |
Teaching should be forceful and effective | |
Teachers should be energetic and dynamic | |
The topics of teaching should not be static, but dynamic | |
The students should be required to learn through activities |
Question 428 |
Media Online Open Course | |
Massachusetts Open Online Course | |
Massive Open Online Course | |
Myrind Open Online Course |
Question 429 |
Consulting an authority | |
Deductive reasoning | |
Scientific thinking | |
Inductive reasoning |
Question 430 |
(a) Lecture
(b) Interactive lecture
(c) Group work
(d) Self study
Select the correct answer from the codes given below:
(a), (b) and (d) | |
(a), (b) and (c) | |
(a), (b), (c) and (d) | |
(b), (c) and (d) |
Question 431 |
Robustness | |
Correctness | |
Reliability | |
Accuracy |
→ Software reliability is defined as the ability of a system or component to perform its required functions under stated conditions for a specified period of time. It is the probability of a failure free operation of a program for a specified time in a specified environment.
→ Robustness is the ability of a computer system to cope with errors during execution and cope with erroneous input.
→ Correctness of an algorithm is asserted when it is said that the algorithm is correct with respect to a specification.
→ Accuracy of a measurement system is the degree of closeness of measurements of a quantity to that quantity's true value.
Question 432 |
Association | |
Visualization | |
Correlation | |
Segmentation |
→ This rule-based approach also generates new rules as it analyzes more data. The ultimate goal, assuming a large enough dataset, is to help a machine mimic the human brain’s feature extraction and abstract association capabilities from new uncategorized data.
Question 433 |
flak | |
fragmented feedback | |
passive response | |
non-conformity |
Question 434 |
a-v, b-iii, c-iv, d-ii, e-i | |
a-iii, b-i, c-ii, d-v, e-iv | |
a-i, b-ii, c-iv, d-iii, e-v | |
a-ii, b-iii, c-iv, d-i, e-v |
Question 435 |
Seminar | |
Workshop | |
Lecture | |
Group Discussion |
Question 436 |
Any MLA | |
Chief of Army Staff | |
Solicitor General of India | |
Mayor of Delhi |
Question 437 |
Good citizen | |
Successful businessman | |
Popular teacher | |
Efficient manager |
Question 438 |
a-(i), b-(ii), c-(iii), d-(iv), e-(v) | |
a-(iv), b-(iii), c-(ii), d-(i), e-(v) | |
a-(v), b-(i), c-(iii), d-(ii), e-(iv) | |
a-(v), b-(ii), c-(i), d-(iii), e-(iv) |
CMM levels:
1. Initial
2. Repeatable
3. Defined
4. Managed
5. Optimizing
Question 439 |
1 + 7 | |
1 + 9 | |
1 + 10 | |
1 + 5 |
Question 440 |
Digestive upsets | |
Explosive behaviour | |
Fatigue | |
Worry |
Question 441 |
Syllabus is an annexure to the curriculum. | |
Curriculum is the same in all educational institutions. | |
Curriculum includes both formal, and informal education. | |
Curriculum does not include methods of evaluation. |
Question 442 |
BOBY | |
COBY | |
DOBY | |
OOBY |
Question 443 |
10 | |
100 | |
1000 | |
10000 |
10 ms=10*10 -3 s
=10 -2 s
Frequency(f)= 1/T
= 1/10 -2 Hz
=100 Hz
Question 444 |
S1 : A hard handover is one in which the channel in the source cell is retained and used for a while in parallel with the channel in the target cell.
S2 : A soft handover is one in which the channel in the source cell is released and only then the channel in the target cell is engaged.
S1 is true and S2 is not true. | |
S1 is not true and S2 is true. | |
Both S1 and S2 are true. | |
Both S1 and S2 are not true. |
→ Soft handover (or) Soft Handoff: New systems use a soft Handoff. In this case, a mobile station can communicate with base stations at the same time. This means that, during handoff, a mobile station may continue with the new base station before breaking off from the old one.
Question 445 |
i. The 2’s complement of 0 is 0.
ii. In 2’s complement, the left most bit cannot be used to express a quantity.
iii. For an n-bit word (2’s complement) which includes the sign bit, there are 2n–1 positive
integers, 2n+1 negative integers and one 0 for a total of 2n unique states.
iv. In 2’s complement the significant information is contained in the 1’s of positive numbers and 0’s of the negative numbers.
i & iv | |
i & ii | |
iii | |
iv |
2n–1 -1 positive integers,
2n-1 negative integers
and
zero.
Total=2n–1 -1+ 2n-1 +1= 2n unique states for 2n unique integers
Question 446 |
(a)-(iv), (b)-(v), (c)-(i), (d)-(iii), (e)-(ii) | |
(a)-(i), (b)-(ii), (c)-(iv), (d)-(v), (e)-(iii) | |
(a)-(v), (b)-(iv), (c)-(ii), (d)-(iii), (e)-(i) | |
(a)- (iv), (b)-(v), (c)-(ii), (d)-(iii), (e)-(i) |
Repeatable : There’s a plan and people stick to it.
Defined : The plan for a project comes from a template for plans.
Managed: The plan uses processes that can be measured quantitatively.
Optimizing : Processes are improved quantitatively and continually.
Question 447 |
1003 Hertz | |
10 −2 KHz | |
10 −3 KHz | |
105 Hertz |
100 ms = 100 × 10 −3 s = 10 −1 s
f =1/T=(1/10) −1Hz= 10 Hz = 1 0 × 10 −3 kHz = 10 −2 kHz
Question 448 |
(a) Advanced Mobile Phone System (AMPS) is a second generation cellular phone system.
(b) IS - 95 is a second generation cellular phone system based on CDMA and DSSS.
(c) The Third generation cellular phone system will provide universal personnel communication.
(a) and (b) only | |
(b) and (c) only | |
(a), (b) and (c) | |
(a) and (c) only |
(b) TRUE: IS - 95 is a second generation cellular phone system based on CDMA and DSSS.
(c) TRUE: The Third generation cellular phone system will provide universal personnel communication.
Question 449 |
n + t | |
n – t | |
n ∗ t | |
nt |
Question 450 |
What day comes three days after the day which comes two days after the day which comes immediately after the day which comes two days after Monday?
Sunday | |
Tuesday | |
Thursday | |
Saturday |
Question 451 |
During the first years after the invention of the printing press, letter writing by people who wrote without the assistance of scribes or clerks exhibited a dramatic increase. | |
Books produced on the printing press are often found with written comments in the margins in the handwriting of the people who owned the books. | |
In the first years after the printing press was invented, printed books were purchased primarily by people who had always bought and read expensive manuscripts but could afford a greater number of printed books for the same money. | |
Books that were printed on the printing press in the first years its invention often circulated among friends in informal reading clubs or libraries. |
Question 452 |
In order for the conclusion that Bevex is safe for people to be properly drawn, which one of the following must be true?
Cancer from carcinogenic substances develops more slowly in mice than it does in people. | |
If all food additives that are currently used in foods were tested, some would be found to be carcinogenic for mice. | |
People drink fewer than 25 cans of Bevex- sweetened soda per day. | |
People can obtain important health benefits by controlling their weight through the use of artificially sweetened soft drinks. |
Question 453 |
Monica’s: That is not true. Many flights are too expensive for all but the rich.
Monica’s response shows that she interprets Saurabh’s statement to imply that
everyone has an equal right to experience world travel | |
world travel is only possible via routes serviced by airlines | |
most forms of world travel are not affordable for most people | |
anyone can afford to travel long distances by air |
Question 454 |
The advertising claim is misleading in its selection of information on which to focus if which one of the following is true?
Nutritionists base their recommendation on medical findings that dietary fiber protects against some kinds of cancer. | |
It is possible to become addicted to some kinds of advertised pills, such as sleeping pills and painkillers. | |
The label of the advertised product recommends taking 3 pills every day. | |
The recommended daily intake of fiber is 20 to 30 grams, and the pill contains one third gram. |
Question 455 |
Which one of the following principals provides the most appropriate completion for the argument?
a moral duty to perform an action is n ever based solely on the effects the action will have on other people | |
a person cannot possibly have a moral duty to do what he or she is unable to do | |
moral considerations should not be the sole determinants of what products are made available to consumers | |
the morally right action is always the one whose effects produce the least total harm |
Question 456 |
20 minutes | |
30 minutes | |
45 minutes | |
60 minutes |
Question 457 |
4 hours | |
5 hours | |
6 hours | |
7 hours |
Question 458 |
51π square feet | |
60 π square feet | |
69 π square feet | |
90 π square feet |
Question 459 |
32π square inches | |
64 π square inches | |
128π square inches | |
256π square inches |
Question 460 |
a square with a diagonal of 5 feet | |
a rectangle with sides of 3 feet and 4 feet | |
an equilateral triangle with a side equal to 48 inches | |
a regular hexagon whose longest diagonal is 6 feet |
Question 461 |
11.25 mph | |
15 mph | |
20 mph | |
22.5mph |
Question 462 |
102 | |
103 | |
105 | |
113 |
Question 463 |
55,000 | |
70,000 | |
72,500 | |
75,000 |
Question 464 |
46.6 | |
34.5 | |
23 | |
20 |
Question 465 |
2 | |
4 | |
6 | |
8 |
Question 466 |
7 | |
9 | |
11 | |
18 |
Question 467 |
20 | |
80 | |
77 | |
37 |
Question 468 |
15 cm | |
11 cm | |
5 cm | |
10 cm |
Question 469 |
3 km | |
4 km | |
5 km | |
7 km |
Question 470 |
East | |
West | |
North | |
South |
Question 471 |
Ceramics | |
Polymers | |
Carbon | |
Plastics |
Question 472 |
empty | |
non-empty | |
in error | |
none of the above |
1. exists r ⇔ r ≠ ∅
2. not exists r ⇔ r = ∅
Question 473 |
(A) There are infinitely many interesting whole numbers.
(B) There are finitely many uninteresting whole numbers.
Which of the following is true?
Statements A and B are equivalent. | |
Statement A implies statement B. | |
Statement B implies statement A. | |
None of the above. |
Question 474 |
Rs. 3,500 | |
Rs. 2,500 | |
Rs. 3,000 | |
Rs. 2,000 |
S.I = P T R / 100
S.I = X * 3 * 10 / 100
C.I = [ P (1 + (R / 100)T) - P]
C.I = [ X (1+ (10 / 100)3) - X]
C.I = 331X / 1000
Difference between Compound interest and Simple interest is 77.5
( 331X / 1000 ) - ( 3X / 10) = 77.5
31x / 1000 = 77.5
x = 2500.
Question 475 |
120 min | |
48 min | |
240 min | |
120 min |
So from that question Aamir (A) Birju (B) Charles (C)
Let Aamir, Birju and Charles alone can complete the work in A, B and C minutes respectively, then
1 min. work of (A+B)=1/20, (B+C)=1/40 and (C+A)=1/30
A + B + C = 13/240
1 min. work of C = (A+B+C) - (A+B) = 13/240 - 1/20 = 1/240
So C alone can complete the work in 240 min.
Question 476 |
40/129 | |
5/13 | |
5/26 | |
28/5 |
Amount of copper in second alloy is 8x/13 and tin is 5x/13.
So after mixing tin is available in 2 alloy only that means in 3rd alloy 5x/13/2x
Tin present in 3rd alloy is 5/26.
Question 477 |
1 | |
a perfect square | |
an odd number | |
a prime number |
Question 478 |
13m | |
5 m | |
7 m | |
4m |
Given data,
AB=24cm
CB=12cm
θC=5cm(Assume)
θB=5 2 +12 2 =169
θB=13cm
Note: They forgot to mention the value 5. If we are considering value=5 then answer should be A.
Question 479 |
Descriptive Explanation |
Question 480 |
Provide an algorithm to determine if the prisoners can pass the canyon unnoticed, given the width and the length of the canyon and the coordinates of every soldier in the canyon, and assuming that soldiers do not change their locations. (Hint: Model this as a graph, with soldiers represented by the vertices.)
Explanation |
Question 481 |
Simple reflex agent | |
Model based agent
| |
Learning agent | |
Utility based agent
|
Simple reflex agents act only on the basis of the current percept, ignoring the rest of the percept history. The agent function is based on the condition-action rule: "if condition, then action".
Model-based reflex agents: A model-based agent can handle partially observable environments. Its current state is stored inside the agent maintaining some kind of structure which describes the part of the world which cannot be seen. This knowledge about "how the world works" is called a model of the world, hence the name "model-based agent".
Utility-based agents: Goal-based agents only distinguish between goal states and non-goal states. It is possible to define a measure of how desirable a particular state is. This measure can be obtained through the use of a utility function which maps a state to a measure of the utility of the state. A more general performance measure should allow a comparison of different world states according to exactly how happy they would make the agent. The term utility can be used to describe how "happy" the agent is.
Learning agents: Learning has the advantage that it allows the agents to initially operate in unknown environments and to become more competent than its initial knowledge alone might allow. The most important distinction is between the "learning element", which is responsible for making improvements, and the "performance element", which is responsible for selecting external actions.
Question 482 |
a storefront in a new high-rise building near the train station in the center of town whose occupants are mainly young, childless professionals who use the train to commute to their offices each day | |
a little shop three blocks away from the town’s main street, located across the street from an elementary school and next door to an ice cream store | |
a stand-alone storefront on a quiet residential street ten blocks away from the town’s center | |
a storefront in a small a strip mall located on the outskirts of town that is also occupied by a pharmacy and a dry cleaner |
Question 483 |
critical reading is a slow, dull, but essential process. | |
the best critical reading happens at critical times in a person’s life. | |
readers should get in the habit of questioning the truth of what they read. | |
critical reading requires thoughtful and careful attention |
Option-B,C FALSE: Not related to given paragraph.
Option-D TRUE: The author stresses the need to read critically by performing thoughtful and careful operations on the text.
Question 484 |
60, 40, 55, 45, 50, 50,?
45 | |
50 | |
55 | |
60 |
Question 485 |
T, r, O, m, J,?
h | |
i | |
I | |
g |
Likewise m and O letter is n
Same h is the next letter to fit in that sequence
Question 486 |
Qmelaqali means fruitcake
Qalitiimmeo means cakewalk
Useguamao means buttercup
Which word could mean “cupcake”?
qalitiiqali | |
amaotiimmeo | |
pakitreft | |
amaoqali |
We can divide artificial language into parts.
Qmela→ fruit
qali→ cake
Qalitiimmeo→ cakewalk
We can divide artificial language into parts.
Qali→ cake
tiimmeo→ walk
Useguamao → buttercup
We can divide artificial language into parts.
Usegu→ butter
amao→ cup
cupcake→ ?
amao→ cup
qali→ cake
So, option-D is correct answer.
Question 487 |
West | |
South | |
North-East | |
South- West |
Question 488 |
D | |
E | |
R | |
O |
Those are O and E
After consonants are arranged in alphabetically we got the word like DRV
But we have two place vowels in between two pairs of consonants we got finally DEROV
So right from fourth letter is E
Question 489 |
16 | |
18 | |
15 | |
17 |
Question 490 |
Rohan | |
Sant | |
Pali | |
Data inadequate |
Question 491 |
Q $ R # T @ M | |
Q $ R @ T # M | |
Q $ R * T # M | |
Q $ R @ T * M |
R @ T means T’s brother is R
T * M means M’s Daughter T
Finally M’s Daughter is T and T’s Brother is R and R’s father is Q so Q’s wife is M.
Question 492 |
32 | |
30 | |
29 | |
28 |
[ n (n+1)(2n+1) ] / 6
Here n is 4 because it’s 4 x 4
[ 4 (4+1)(8+1) ] / 6
30
Question 493 |
Lord Linlithgow | |
Lord Wavell | |
Lord Willingdon | |
Lord Mountbatten |
Question 494 |
1866 | |
1857 | |
1836 | |
1885 |
Question 495 |
Christopher Columbus | |
Vasco Da Gama | |
James Cook | |
None of above |
Question 496 |
Gupta Dynasty | |
Maurya Dynasty | |
Sakya Dynasty | |
Nanda Dynasty |
Question 497 |
Rectangular Blocks | |
Circular Blocks | |
Triangular Blocks | |
None of above |
Question 498 |
1917 | |
1918 | |
1922 | |
1928 |
Question 499 |
Andhra Pradesh | |
Orissa | |
Kerala | |
Tamil Nadu |
Question 500 |
International Labour Organisation | |
Security Council | |
International Court of Justice | |
General Assembly |
Question 501 |
Indonesia | |
Malaysia | |
Columbia | |
India |
Question 502 |
Transition metals | |
Main group metals | |
Alkali metals | |
Rare metals |
Question 503 |
Black paint | |
PVC | |
Teflon | |
Polystyrene |
Question 504 |
Elbaville | |
Auroville | |
Gayaville | |
Broadway |
Question 505 |
Rs. 600 | |
Rs. 300 | |
Rs. 400 | |
Rs. 200 |
Sold on 12% profit means sold on 112%
now 18% would have been gained means 118% if Rs 18 was more it means 118% - 112% = 18 Rs
so 6%=18Rs
so 100% = (18/6)×100 = 3× 100 = 300 Rs
CP = 300
Question 506 |
17.5 Years | |
16.5 Years | |
18 Years | |
16 Years |
Two more joined with an average age 19 years means 19 * 2 = 38 So total is 157
But one person left from that group whose age is 25 years 157 - 25 = 132
Remaining average of 8 people is 132 / 8
16.5 Year
Question 507 |
250 meter | |
350 meter | |
520 meter | |
300 meter |
Let the length of the platform be x meters
Distance = Speed * Time
x+300 = (50/3) * 39
x = 350
Question 508 |
$ 3000 | |
$ 300 | |
$ 110 | |
$ 10 |
n = 5
so sum of money is 60 * 5 = 300
Question 509 |
5 | |
7.5 | |
10 | |
12 |
another one is in 30 mins and those taps are opened for 5 mins
so in one min one tap is 1/10 another one is 1/30
both can tank open for 5 mins so (1/10 + 1/30 ) * 5
= (2/15) * 5
= 10/15
= 2⁄3
Remaining work is 1- (2⁄3)
= 1⁄3
The left work has to be done by first Tap because first is shut off.
Work will be completed by Second Tap in= (1⁄3) * 30 = 10
Question 510 |
Wealth : Poverty
part: whole | |
good: excellent | |
prodigal : chary | |
wicked : sinful |
Wealth: an abundance of valuable possessions or money
Poverty: The state of being extremely poor.
Prodigal: spending money or using resources freely and recklessly
chary: Cautiously or suspiciously reluctant to do something.
Question 511 |
Misfortune : Catastrophe
miniature : big | |
limited : infinite | |
knowledge : learning | |
generosity : parsimony |
Misfortune: An unfortunate condition or event.
Catastrophe: An event causing great and usually sudden damage or suffering.
Question 512 |
Molecule : Atoms
family : sisters | |
light : bulb | |
tissue : cells | |
body : limb |
Tissue is any of the distinct types of material of which animals or plants are made, consisting of specialized cells and their products.
Question 513 |
Limp : Walk
flap : fly | |
run : race | |
stutter : talk | |
chew : digest |
Limp: Walk with difficulty, typically because of a damaged or stiff leg or foot.
Question 514 |
Riddle : Solve
mirage : illusion | |
joke : amuse | |
tangle : unravel | |
target : aim |
Riddle: A question or statement intentionally phrased so as to require ingenuity in ascertaining its answer or meaning.
Tangle: Twist together into a confused mass.
unravel: undo (twisted, knitted, or woven threads).
Question 515 |
Fact 2 : Some chickens are hens.
Fact 3 : Female birds lay eggs.
If the first three statements are facts, which of the following statements must also be a fact? i. All birds lay eggs.
ii. Hens are birds.
iii. Some chickens are not hens.
ii only | |
ii and iii only | |
I, ii and iii | |
None of the statements is a known fact |
According to venn diagram, (i) is FALSE because male birds never lay eggs. (ii) and (iii) are TRUE
Question 516 |
President | |
Voter | |
November | |
Nation |
Question 517 |
Outburst | |
bravo | |
applause | |
encore |
Question 518 |
Mother | |
Aunt | |
Sister | |
Daughter |
Man's brother's father -- man's father.
So, man's father is her father i.e., She is the man's sister.
Question 519 |
His Own | |
His Son | |
His Father | |
His Grandfather |
So the man in the photograph is his son.
Question 520 |
6 | |
7 | |
9 | |
11 |
→ A quadrilateral is a polygon with four edges (or sides) and four vertices or corners.
→ According to figure, we can label first and get total quadrilaterals.
Quadrilaterals are 1234, 1245, 1246, 1248, 3481, 3451, 3461, 4517, 4561, 6178 and 1748.
Question 521 |
16 | |
12 | |
8 | |
4 |
The pentagons are 12468, 34682, 56824, 78246, 13467, 35681, 57823, 71245, 24578, 46712, 68134 and 82356.
Question 522 |
How many male members are there in the family?
Two | |
Three | |
Four | |
Data Inadequate |
Question 523 |
What is the professional of Pat?
Lawyer | |
Lawyer or Teacher | |
Manager | |
None of these |
Question 524 |
Who are the married couples in the family?
Pat-Qat and Sat-Rat | |
Rat-Uat and Sat-Tat | |
Pat-Tat and Sat-Rat | |
Pat-Sat and Rat-Qat |
Question 525 |
How Pat is related to Tat?
Father | |
Grandfather | |
Mother | |
Grandmother |
Question 526 |
Rs. 12 | |
Rs. 19.70 | |
Rs. 19.10 | |
Rs. 18.80 |
Given that out of this Rs.25, 30 Paise is given as tax => Total tax incurred = 30 Paise = Rs.30/100
Let the cost of the tax free items = x
Given that tax rate = 6%
( 25 - 30/100 - x ) * (6/100) = 30 / 100
6(25−0.3−x)=30
x=25−0.3−5=19.7
Question 527 |
Rs. 1,500 | |
Rs. 3,000 | |
Rs. 2,000 | |
Data Inadequate |
Question 528 |
5 months | |
6 months | |
7 months | |
8 months |
Then,
(Profit of A)/(Profit of B) = 3/1
(85000 * 12)/(42500 *X) = 3/1
85000 * 12 = 42500 * 3 * X
X = 8.
B Joined for 8 months
Question 529 |
210 miles | |
230 miles | |
250 miles | |
260 miles |
speed=70 miles / hour Time=1.5 hour
Speed= Distance/ time
Distance= speed x Time
=50×2.5+70×1.5
=125+105
=230 miles
Question 530 |
16 | |
18 | |
20 | |
22 |
loss = 20%
So CP of 45 limes would be 40*100/80= Rs. 50
To gain 20% She should sell these 45 limes for =50*20/100=Rs. 60
Now If she sells for Rs. 60 = 45 limes
So for Rs. 24 he would sell = (24/60)*45 = 18 limes
Question 531 |
Literature | |
Community Welfare | |
Government | |
Journalism |
Question 532 |
Ramanand Sagar | |
Raj Kapoor | |
V. Shantaram | |
Ashok Kumar |
Question 533 |
Report | |
Field | |
Record | |
File |
Question 534 |
System file | |
Animation/movie file | |
MS Encarta document | |
Image file |
Question 535 |
Gaban | |
Godan | |
Guide | |
Manasorovar |
Question 536 |
Uttar Pradesh | |
Rajasthan | |
Maharashtra | |
Madhya Pradesh |
Question 537 |
Antagonism:
Cordiality | |
Animosity | |
Hostility | |
Enmity |
→ Antonyms are hostility, enmity, antipathy, dislike, hatred, aggression.
Question 538 |
Hasten:
Dash | |
Dawdle | |
Hurry | |
Scurry |
→ Antonyms are dally, dawdle, dillydally, drag, hang (around or out), lag, linger, loiter, poke, tarry, amble, lumber, plod, saunter, shuffle, stroll.
Question 539 |
Camouflage:
Disguise | |
Cover | |
Demonstrate | |
Fabric |
→ Camouflage synonyms are costume, disguise, guise.
Question 540 |
Yearn:
Deny | |
Accept | |
Confront | |
Crave |
→ Yearn synonym is ache, covet, crave, desiderate, desire, die, hanker.
Question 541 |
What is the central angle of the sector corresponding to the expenditure incurred on Royalty ?
15 0 | |
24 0 | |
54 0 | |
48 0 |
From that Diagram Expenditure incurred on Royalty is 15%
ஃ 360*(15/100) = 54°
Question 542 |
The price of the magazine is marked 20% above the C.P. If the marked price of the magazine is ₹ 180, then what is the cost of the paper used in a single copy of the magazine?
₹ 36 | |
₹ 37.50 | |
₹ 42 | |
₹ 44.25 |
M.P = 120 x / 100
From that question M.P of Magazine is = 180/-
Cost of the paper in a single copy = ?
From the above details we have to find out C.P first
180 x = x (120 x / 100)
After solving this
x = 150
Cost of the paper in a single copy
= 150 * (25/100)
= 37.50
Question 543 |
If for a certain quantity of magazine, the publisher has to pay ₹ 30,600 as printing cost, then what will be amount of royalty to be paid for these magazines?
₹ 19,450 | |
₹ 21,200 | |
₹ 22950 | |
₹26,150 |
Royalty cost=x
∴20 % →30,600
15% →x
Do Cross Multiplication
(20/100) * x=30,600 * (15/100)
x=22,950/-
Question 544 |
Royalty on the magazine is less than the printing cost by:
5% | |
33 (1 / 5 ) | |
20% | |
25% |
Printing Cost = 20%
Royalty Cost = 15%
How much percentage royalty cost is less than printing cost
((20-15) / 20 ) * 100 = 50/2 = 25%
Question 545 |
In which year the production of cars of all types taken together was approximately equal to average during the period?
2010 | |
2012 | |
2014 | |
2015 |
Average during the period = 476/6 = 79.33.
Year 2014 is approximately equal
option C correct.
Question 546 |
In which year the total production of cars of types P and Q together was equal to the total production of cars of types R and S together?
2011 | |
2012 | |
2015 | |
None of the above |
P+Q in 2011 -----> 20+10 = 30
R+S in 2011 ------> 17+6 = 23
option A is wrong
P+Q in 2012 ----> 16+14 = 30
R+S in 2012 ----> 16+10 = 26
option B is wrong
P+Q in 2015 ---> 6+14 = 20
R+S in 2015 ---> 31+8 = 39
option C is wrong
So finally option D is correct.
Question 547 |
The production of which type of cars was 25% of the total production of all types of cars during 2014?
S | |
R | |
Q | |
P |
So,
100% -----> 80
25% ------> x
(25 * 80) / 100 = 20.
From that table 20 cars are from Type S .
Question 548 |
1.P,Q,R,S,T and U six members of a family each of them engaged in a different profession Doctor, Lawyer, Teacher, Engineer, Nurse and Manager.
2.Each of them remains at home on a different day of the week from Monday to Saturday.
3.The Lawyer in the family remain at home on Thursday.
4.R remains at home on Tuesday.
5.P, a Doctor, does not remain at home either on Saturday or on Wednesday.
6.S is neither the doctor nor the Teacher and remains at home on Friday,
7.Q is the Engineer and T is the Manager.
Which of the following combinations is correct?
Lawyer-Tuesday | |
Nurse-Friday | |
Manager-Friday | |
Engineer-Thursday |
Question 549 |
1.P,Q,R,S,T and U six members of a family each of them engaged in a different profession Doctor, Lawyer, Teacher, Engineer, Nurse and Manager.
2.Each of them remains at home on a different day of the week from Monday to Saturday.
3.The Lawyer in the family remain at home on Thursday.
4.R remains at home on Tuesday.
5.P, a Doctor, does not remain at home either on Saturday or on Wednesday.
6.S is neither the doctor nor the Teacher and remains at home on Friday,
7.Q is the Engineer and T is the Manager.
Which of the following combinations is not correct?
R-Teacher | |
Q-Engineer | |
T-Manager | |
S-Lawyer |
Question 550 |
1.P,Q,R,S,T and U six members of a family each of them engaged in a different profession Doctor, Lawyer, Teacher, Engineer, Nurse and Manager.
2.Each of them remains at home on a different day of the week from Monday to Saturday.
3.The Lawyer in the family remain at home on Thursday.
4.R remains at home on Tuesday.
5.P, a Doctor, does not remain at home either on Saturday or on Wednesday.
6.S is neither the doctor nor the Teacher and remains at home on Friday,
7.Q is the Engineer and T is the Manager.
Who is the Nurse ?
S | |
R | |
U | |
Data inadequate |
Question 551 |
Which word does NOT belong to the others ?
Tape | |
Twine | |
Cord | |
Yarn |
Tape is Different one.
Question 552 |
1.Six persons A,B,C,D,E and F are taking their breakfast in two groups facing one another.
2.D and A are not in the same row .
3.E is to the left of F and faces C.
4.B is in the middle of a group.
5.D is to the left of B.
Who faces B?
C | |
A | |
E | |
F |
D B C
________
A F E
________
F faces B
Question 553 |
115 | |
95 | |
105 | |
125 |
Difference between a number and 1/5th of is 84 means
x - (x/5) = 84
4x / 5 = 84
x = 105
Question 554 |
2 : 2 | |
3 : 1 | |
2 : 1 | |
3 : 2 |
Father’s present age = 12x ---> (i)
son’s present age = 5x ---> (ii)
Difference between their age is = 28
12x - 5x = 28
x= 4
Substitute x value in (i) and (ii)
Father’s present age = 48
son’s present age = 20
Ratio of their ages after eight years
Father’s age : Son’s age
48+8 : 20+8
56 : 28
2 : 1
Question 555 |
1.Six persons A,B,C,D,E and F are taking their breakfast in two groups facing one another.
2.D and A are not in the same row .
3.E is to the left of F and faces C.
4.B is in the middle of a group.
5.D is to the left of B.
Who of the following are sitting in the same row ?
AEB | |
EFB | |
DEF | |
AEF |
________
A F E
AEF sitting in the same row.
Question 556 |
1.Six persons A,B,C,D,E and F are taking their breakfast in two groups facing one another.
2.D and A are not in the same row .
3.E is to the left of F and faces C.
4.B is in the middle of a group.
5.D is to the left of B.
Which of the following pairs are facing each other ?
CA | |
BA | |
DA | |
DE |
________
A F E
DA is facing each other.
Question 557 |
32 | |
42 | |
62 | |
82 |
729 ---> 27*27
841 ---> 29*29
784 ---> 28*28
27+29+28 = 84
The same logic we can apply for next diagram
225 ---> 15*15
169 ---> 13*13
196 ---> 14*14
15+13+14 = 42
Question 558 |
1 | |
-1 | |
2 | |
0 | |
None of the above |
Question 559 |
aaa_bb_aab_baaa_bb
abab | |
bbaa | |
babb | |
baab |
aaa b bb a aab b baaa b bb
Question 560 |
bbac | |
bbaa | |
acbb | |
acac |
abca a bcaab c aa b caa b c
Question 561 |
125, 126, 124, 127, 123, 129
123 | |
124 | |
126 | |
129 |
Question 562 |
51 | |
48 | |
34 | |
43 |
Question 563 |
6, 25,_______________, 123, 214, 341.
65 | |
70 | |
72 | |
62 |
Question 564 |
65 | |
76 | |
77 | |
80 |
Question 565 |
32 | |
25 | |
21 | |
19 |
Question 566 |
If in a certain language MECHANICS is coded as HCEMASCIN, how is POSTER coded in that code?
OPSTER | |
SOPRET | |
RETSOP | |
TERPOS |
MECH ---> HCEM
A ---> A
NICS ---> SCIN
After Combined coded letters, We got
HCEMASCIN
We have total 9 Letters. So middle one we kept like constant and remaining letters are coded as reversed.
From that POSTER
POS ---> SOP
TER ---> RET
After combined
SOPRET.
Question 567 |
OZLFJ | |
QFRXV | |
HOFAD | |
QZHMT |
Question 568 |
Engineer : Map : : Bricklayer : ?
Design | |
Templet | |
Mould | |
Cement |
→ Bricklayer is constructing temples using bricks
Question 569 |
Major : Battalion : : Colonel : ?
Company | |
Regiment | |
Army | |
Soldiers |
→ Battalion is a group instructed by Major.
→ Regiment is permanent unit of army instructed by Colonel
Question 570 |
Amoeba | |
Language | |
Nature | |
Society |
→ Semantic is a subject deals with the language.
Question 571 |
Symphony : Music
Mural : Painting | |
Ode : Prose | |
Preface : Book | |
Editorial : Journal |
→ Mural is a instrument used by painting
Question 572 |
Medicine : Capsule
Pearl : Shell | |
Passenger : Bus | |
Heart : Lungs | |
Car : Vehicle |
→ Pearl is contained in shell
Question 573 |
Flow : Perfection | |
Careless : Mistake | |
Truth : Lie | |
Fear : Joy | |
None of the above |
Question 574 |
Cobra is related to Snake in the same way as leopard is related to ____________
Tiger | |
Lion | |
Cat | |
Zebra |
→ Leopard is related to Cat
Question 575 |
Memorise is to Amnesia as Movement is to _____________
Lubrication | |
Lethargy | |
Paralysis | |
Hermit |
→ Memorise is to Amnesia
Paralysis is the loss of the ability to move (and sometimes to feel anything) in part or most of the body, typically as a result of illness, poison, or injury.
→ Movement is to Paralysis
Question 576 |
BCDEI | |
PQRSW | |
LMNOS | |
HIKLO |
Question 577 |
LNMO | |
CRDT | |
EUFV | |
GWHX |
Question 578 |
CBAZ | |
AZYX | |
AZBY | |
PONM |
Question 579 |
JMP | |
RUX | |
UYB | |
EHK |
Question 580 |
435 | |
564 | |
654 | |
736 |
on second station 1⁄3 rd passengers got down and 96 got in = (x - (x/3)) + 96
on third station 1⁄2 got down and 12 got in = (((x-(x/3))+96)/2)+12 Now there were 248 passengers
(((x-(x/3))+96)/2)+12 =248
x=564
Question 581 |
256 | |
225 | |
250 | |
255 |
Given lcm of 2 numbers is 45 times their hcf, the sum of HCF + LCM is 1150.
y = 45x. ---- (1)
x + y = 1150 --- (2)
Substitute equation (1) in (2), we get
46x = 1150
x = 25.
Substitute x = 25 in (1), we get
y = 45 * 25 = 1125.
We know that product of two numbers = LCM * HCF
125 * z = 25 * 1125
z = 25 * 1125/125 = 225.
The other number = 225.
Question 582 |
299, 178, 97, 48, 24, 14, 13 :
175 | |
295 | |
23 | |
10 |
-121, -81, -49, -24, -10, -1.
From the above sequence 24 is replace with 23.
So we get perfect sequence.
Question 583 |
2, 9, 28, 126, 216, 344 :
38 | |
217 | |
356 | |
66 |
2^3 + 1 = 9
3^3 + 1 = 28
4^3 + 1 = 65
5^3 + 1 = 126
But
6^3 + 1 = 217 and,
Given is 216 so its odd or wrong.
7^3 + 1 = 344.
Question 584 |
1 : 2 | |
2 : 3 | |
3 : 4 | |
3 : 8 |
Prakash’s age = 3x
Sumit is 6 years younger than Prakash means
Prakash = Sumit + 6
Prakash - Sumit = 6
3x - 2x = 6
x = 6
So, Sumit’s age = 12
Prakash’s age = 18
Ratio of Sumit’s age and Prakash’s age after six years
12+6 : 18+6
18 : 24
3 : 4
Question 585 |
60 | |
120 | |
150 | |
180 |
= (1/15) - ((1/20) + (1/24))
= -1/40 (Negative means it’s emptying)
Volume of the 1/40 = 3 gallons = (40 * 3) = 120 gallons
Question 586 |
15m | |
15 (2/3)m | |
15 (15/19)m | |
15 (4/19)m |
Question 587 |
4 : 5 | |
5 : 4 | |
5 : 6 | |
6 : 5 |
Distance covered by B in 2 hours with the speed of 60 km/ h is = 60 * 2 = 120km =120 km
then AC:BC = 150:120 =5:4
Question 588 |
29.3 years | |
28.5 years | |
23 years | |
19 years |
Required average = (57/3) = 19 years
Question 589 |
8 : 15 | |
5 : 9 | |
8 : 13 | |
4 : 7 |
(1⁄4) * (60 / 100) * x = (2⁄5) * (20/100) * y
After solving this one
we got ratios like x : y = 8 :15
Question 590 |
₹ 664 | |
₹ 550 | |
₹ 484 | |
₹ 460 |
(4/15) A = (2⁄5) B ---> (ii)
(2⁄3) A = B ---> (iii)
Sub (iii) in (i)
A + (2A/3) = 1210
A = 726 (Sub A value in (i) )
So,
B = 484
Question 591 |
16, 20, 24 | |
12, 16, 20 | |
20, 24, 28 | |
24, 28, 32 |
Question 592 |
1/18 | |
1/12 | |
1/9 | |
None of these |
Total Probability = 6 * 6 = 36
P(E) = 4 / 36 = 1 / 9
Question 593 |
₹ 1200 | |
₹ 1300 | |
₹ 1250 | |
₹ 1350 |
M.P = x
Discount = 15%
S.P = x - (15x/100) = 85x / 100
S.P
= 120% of C.P
= (120/100) * 850
= 85 * 12
= 1020
Therefore S.P = (85X/100) = 1020
X = 1200
Question 594 |
50 | |
40 | |
30 | |
20 |
150 Children already taken meal. 50 Children remaining can also take a meal
200 Children = 120 men
50 Children = (120/200) * 50
= 30
Question 595 |
48 | |
32 | |
20 | |
16 |
42 Men in how many days = (1/(56 *24)) * 42 = 1/32
So,
42 Men can complete piece of work in 32 days.
Question 596 |
31 (1/ 3) km | |
41( 1/ 3) km | |
21 (1 /3) km | |
11 (1/ 3) km |
Speed of the current = 4 km/hr
Speed of the upstream = 12 + 4 = 16 km/hr
Speed of the Downstream = 12 - 4 = 8 km/hr
Let the distance between P and Q be x
(x/16) + (x/8) = 4
x = 64 / 3
x = 21 (1⁄3)
Question 597 |
15 | |
10 | |
6 | |
5 |
So, Total number of handshakes is = n(n-1) (with repetition)
But we need without repetition means distant handshakes (A→ B, B → A) so we divided by ‘2’
= n(n-1) / 2
= 5(5-1) / 2
= 10
Question 598 |
120 meters | |
180 meters | |
324 meters | |
150 meters |
Speed of the Train = 60km/hr and crosses a pole in 9 Seconds.
Speed of the train is km/hr and crosses a pole in seconds.
So we need to convert the km/hr into mts /sec.
For that one we need to multiply the speed of the train to (5/18).
Speed of the train = 60 * (5/18)
We have one Basic formula in Time and Distance
Distance = Speed * Time
x = 60 * (5/18) * 9
x = 150 mts
Question 599 |
Rs 2,000 | |
Rs 2,200 | |
Rs 2,400 | |
Data inadequate |
1. %Profit = ((Selling Price - Cost Price) / (Cost Price) ) * 100
2. %Loss = ((Cost Price - Selling Price) / (Cost Price)) * 100
From the above question we know
% Profit = % Loss
Selling price when they got profit = 1920 /-
Selling price when they got loss = 1280 /-
((1920 - Cost Price ) / ( Cost Price) ) * 100 = (( Cost Price - 1280 ) / (Cost Price)) * 100
After Solving this
2 * Cost Price = 3200
Cost Price = 1600
We got cost price, Now we need to find out Selling price when they got 25% Profit
Cost Price = 1600
Profit% = 25
Selling Price = ?
%Profit = ((Selling Price - Cost Price) / (Cost Price) ) * 100
25 = ((Selling Price - 1600) / 1600)) * 100
25 * 16 = Selling Price - 1600
Selling Price = 1600 + 400
Selling Price = 2000/-
Question 600 |
40 minutes | |
1 hour | |
1 hr 15 min | |
1 hr 30 min |
Speed of the Upstream = 5km / (10/60) = 6km/hr
Speed of the Boat still in water = (Downstream + Upstream ) / 2 = (6 + 2) / 2
= 4 km/hr
Time taken for 5 km in Stationary water = 5/4 = 1(1⁄4)
= 1Hr 15 Min
Question 601 |
8, 20, 28 | |
16, 28, 36 | |
20, 35, 45 | |
None of the above |
Eight years ago their sum is = 56
So,
4x+7x+9x-(8+8+8) = 56 (Eight Years Ago so that we subtract their individual ages from present age)
20x = 80
x = 4
Present ages = 4 * 4 , 7*4, 9*4
= 16, 28, 36
Question 602 |
6 hours | |
10 hours | |
15 hours | |
30 hours |
So, from that question we know that second pipe fills a tank 5 hours faster than 1st pipe means second pipe fills a tank in ‘x/5’ hours.
And Second pipe fills a tank 4 hours slower than third pipe means third pipe can fill a tank in ‘x/20’ hours.
The first two pipes operating simultaneously fill the tank in the same time during which the tank is filled by the third pipe alone.
(1 / x) + (5 / x) = (20 / x)
x = 15 Hours
Question 603 |
34 | |
40 | |
68 | |
88 |
Length x Breadth = Area
20 x Breadth = 680
Breadth = 34 feet
Area to be fenced = 2B + L = 2 (34) + 20 = 88 feet
Question 604 |
810 | |
1440 | |
2880 | |
50400 |
Remaining Consonants are (CRPRTN) 6 and add vowels unit 1.
6 + 1 = 7 In this R is repeated 2 times
In ‘CORPORATION’ We have total 5 vowels (OOAIO) and taken has one unit Remaining Consonants are (CRPRTN) 6 and add vowels unit 1. 6 + 1 = 7 In this R is repeated 2 times So number of ways we can arrange these words = 7! / 2! = 2520
number of ways we can arrange vowels is 5!
2 ‘O’ are repeated so 5! / 2! = 20
Total Number ways = 2520 * 20 = 50400
So number of ways we can arrange these words = 7! / 2! = 2520
number of ways we can arrange vowels is 5!
2 ‘O’ are repeated so 5! / 2! = 20
Total Number ways = 2520 * 20 = 50400
Question 605 |
2 : 3 : 4 | |
6 : 7 : 8 | |
6 : 8 : 9 | |
None of the above |
There is a proposal to increase these seats by 40%, 50% and 75% respectively means
After increasing seats ratio will be
5 * (140/100) : 7 * (150/100) : 8 * (175/100)
5 * 140 : 7 * 150 : 8 * 175
28 : 42 : 56
2 : 3 : 4
Question 606 |
10 m | |
12.5 m | |
17.5 m | |
21.25 m |
From that question we know that less height less shadow so it’s directly proportional.
40.25 : 17.5 : : 28.75 : x
x = (17.5 * 28.75) / 40.25
x = 12.5 m
Question 607 |
396, 462, 572, 427, 671, 264
396 | |
427 | |
671 | |
264 |
Question 608 |
2, 5, 10, 17, 26, 37, 50, 64
50 | |
26 | |
37 | |
64 |
2 + 3 = 5
5 + 5 = 10
10 + 7 =17
17 + 9 = 26
26 + 11 = 37
37 + 13 = 50
50 + 15 = 65 But in the question they given 64. So 64 is wrong.
Question 609 |
625 | |
630 | |
640 | |
650 |
P * (R/100)^2 = 1
P * (4/100)^2 = 1
P * (1/25)^2 = 1
P = 625
So, Sum is 625
Question 610 |
30 0 | |
45 0 | |
60 0 | |
90 0 | |
None of the above |
Question 611 |
4 | |
5 | |
6 | |
8 |
So, = H.C.F. of 3360, 2240 and 5600 = 1120.
sum = 1+1+2+0 = 4.
Question 612 |
Ethnology | |
Palaeontology | |
Synecology | |
Ombrology |
Question 613 |
Sourav Ganguly | |
Anil Kumble | |
Sunil Gavaskar | |
Mohd. Azharuddin |
Question 614 |
Qualcomm | |
Yahoo | |
Google | |
Microsoft |
Question 615 |
INS Vajram | |
INS Kochi | |
INS Kolkata | |
INS Mumbai |
Question 616 |
Bhopal and Jaipur | |
Mumbai and Kolkata | |
New Delhi and Pune | |
Guwahati and Shillong |
Question 617 |
France | |
India | |
Germany | |
None of the above |
Question 618 |
Hyderabad | |
Amaravati | |
Vishakhapatnam | |
None of the above |
Question 619 |
Junagarah, Gujarat | |
Diphu, Assam | |
Kohima, Nagaland | |
Gangtok, Sikkim |
Question 620 |
Had the essence of all religions | |
was a revolt against inefficiency in the Buddhist Sangha | |
Was a new religion which he founded after the Kalinga war | |
Laid emphasis on following a strict set of rituals |
Question 621 |
US and Russia | |
US and France | |
Russia and China | |
France and China |
Question 622 |
China | |
Japan | |
UAE | |
South Korea |
Question 623 |
Costa Rica | |
Honduras | |
Nicaragua | |
El Salvador |
Question 624 |
Indira Gandhi International(IGI) Airport Delhi | |
Babasaheb Ambedkar International Airport, Nagpur | |
Sardar Vallabhbhai Patel International Airport, Ahmedabad | |
Lokpriya Gopinath Bordoloi International Airport, Guwahati |
Question 625 |
Thirty eight Amendment 1975 | |
Forty second Amendment 1976 | |
Thirty first Amendment 1973 | |
Forty fourth Amendment 1978 |
Question 626 |
Switzerland | |
Spain | |
Argentina | |
England |
Question 627 |
2. The market is one block west of the hotel.
3. The drugstore is west of the market. If the first two statements are true, the third statement is
True | |
False | |
Uncertain | |
Insufficient data |
Question 628 |
From the above data, which of the following statements must be true?
Vincent and Thomas live in the same neighborhood | |
It takes Thomas more than 50 minutes to deliver the papers | |
It is dark outside when Vincent begins his deliveries | |
Thomas would like to have his own paper route |
Question 629 |
4 7 26 10 13 20 16
14 4 | |
14 17 | |
18 14 | |
19 14 |
Check the pattern 4, 7 and 10, 13. These pair of numbers are separated by 3. So extending the logic, the next pair of numbers should be 16, 19.
Now for the pair of numbers 26, 20. They are separated by 6. Hence extending the logic, the next number in sequence should be 14.
Hence the sequence should be 4,7, 26, 10, 13, 20, 16, 19, 14, 22, 25, 8 etc.
Question 630 |
Cornea | |
Retina | |
Vision | |
Pupil |
Question 631 |
1 | |
2 | |
3 | |
4 |
Question 632 |
OEP | |
NEO | |
MEN | |
PFQ |
Same like A B C D next is E
K L M N next is O
So, Finally NEO
Question 633 |
JAK | |
HAL | |
HAK | |
JAI |
A A A A next is A
G F I H next is K
So,
Finally JAK
Question 634 |
The Ski instructions at Top of the Peak Ski School work from December through March | |
Matthew prefers jobs that allow him to work outdoors | |
Lucinda makes an appointment with the beach resort restaurant manager to interview for the summer waitressing position that was advertised in the newspaper | |
Doug’s ice cream shop stays open until 11 p.m. during the summer months |
Question 635 |
UAV | |
UAT | |
TAS | |
TAT |
Q R S T next is U
A A A A next is A
R S T U next is V
Finally UAV
Question 636 |
gorbltusl | |
flurgorbl | |
arthflur | |
pixnarth |
Question 637 |
Paranda | |
Kokran | |
Akram | |
Bopri |
Bopri Kokran Akram Tokhada Paranda
So,
The farthest west is Bopri
Question 638 |
YWU | |
NLJ | |
KIF | |
VTR |
Reverse it, UWY for between each and every letter there is one letter missing like UVWXY
So, Reverse those letters YXWVU means YWU
But coming to option C is different in between I and F there is two letters missing. So option C is odd one.
Question 639 |
39, 30 | |
41, 32 | |
42, 33 | |
43, 34 |
Another student secured ‘x + 9’
According to question
x + 9 = (56 * 100)(x + x + 9)
100 (x + 9) = 56 (2x + 9)
After solving this we got x = 33
So option C is correct.
Question 640 |
8 | |
10 | |
12 | |
14 |
Question 641 |
1 | |
2 | |
3 | |
4 |
Question 642 |
There are 3 ladies who are not seated next to each other.
J is between L and F.
G is between I and F.
H, a lady member is second to the left of J.
F, a male member is seated opposite to E, a lady member.
There is a lady member between F and I.
Who among the following is to the immediate left of F?
G | |
I | |
J | |
H |
Question 643 |
There are 3 ladies who are not seated next to each other.
J is between L and F.
G is between I and F.
H, a lady member is second to the left of J.
F, a male member is seated opposite to E, a lady member.
There is a lady member between F and I.
What is true about J and K?
J is male, K is female | |
J is female, K is male | |
Both are female | |
Both are male |
Question 644 |
There are 3 ladies who are not seated next to each other.
J is between L and F.
G is between I and F.
H, a lady member is second to the left of J.
F, a male member is seated opposite to E, a lady member.
There is a lady member between F and I.
How many persons are seated between K and F?
1 | |
2 | |
3 | |
4 |
Question 645 |
There are 3 ladies who are not seated next to each other.
J is between L and F.
G is between I and F.
H, a lady member is second to the left of J.
F, a male member is seated opposite to E, a lady member.
There is a lady member between F and I.
Who among the following are three lady members?
E, H, and J | |
E, F and G | |
E, H and G | |
C, H and J |
Question 646 |
There are 3 ladies who are not seated next to each other.
J is between L and F.
G is between I and F.
H, a lady member is second to the left of J.
F, a male member is seated opposite to E, a lady member.
There is a lady member between F and I.
Who among the following is seated between E and H?
F | |
I | |
K | |
Cannot be determined |
Question 647 |
Female sparrows and immatures are _____, while the typical adult male sparrow is _____ by its markings; a black bib, a grey cap, and white lines trailing down from the mouth.
Somewhat nondescript, easily recognized | |
Difficult to spot, better camouflaged | |
Considered to be endangered, characterized | |
Comparatively small, made more conspicuous |
Question 648 |
- was never applied. Congress has been required to call a convention for considering possible amendments to the document when formally asked to do it
Was never applied, Congress has been required to call a convention for considering possible amendments to the document when formally asked to do it | |
Was never applied, there has been a requirement that Congress call a convention for consideration of possible amendments to the document when asked to do it formally | |
Has never applied, whereby Congress is required to call a convention to consider possible amendments to the document when formally asked to do so | |
Has never been applied, Congress is required to call a convention to consider possible amendments to the document when formally asked to do so |
Question 649 |
Arguments:
i. Yes. Many such drugs required different doses and duration for Indian population and hence it is necessary.
ii. No. This is just not feasible and hence cannot be implemented.
Choose from the following:
Only argument i is strong | |
Only argument ii is strong | |
Either i or ii is strong | |
Neither i nor ii is strong |
Question 650 |
The passage best supports the statement that
Culture, Traditions and Customs of India are diverse | |
India is known as a multilingual country | |
India is identified as the birthplace of Hinduism and Buddhism | |
India is a country where diversity in religion exists |
Question 651 |
To those of us who had always thought him timid, his ________came as a surprise.
Inability | |
Inevitability | |
Intrepidity | |
Inertness |
Question 652 |
Y is married to C who is an engineer | |
Z is married to C who is a doctor | |
X is married to a doctor | |
None of the above options |
X married to A and A is lawyer.
Y not married to Engineer and Z not married to Doctor.
But C is not Doctor so from this statement Z married to C who is Engineer.
Finally Y married to B who is Doctor.
Question 653 |
Bombast
- is when high sounding words for effect, not suitable, are used.
is when high sounding words for effect, not suitable, are used | |
is the use of high-sounding words for effect rather than for suitability | |
is where high-sounding words are used for effect not suitability | |
is the using of high-sounding words for effect only |
Question 654 |
RECALCITRANT
feckless | |
yielding | |
sombre | |
polished |
option A and C and D those words are giving same meaning as RECALCITRANT but option B is opposite meaning of RECALCITRANT yielding means not hard or rigid.
Question 655 |
Select the pair that best expresses the relation in the original pair.
QUISLING : BETRAY
taunt : provoke | |
inception : termination | |
juggernaut : crush | |
obstinate : preserve |
Question 656 |
He knows which side his bread is buttered :
knows how to chatter | |
knows the art of cooking | |
knows where his advantage lies | |
knows how to butter a slice |
Question 657 |
You must keep your head whatever happens :
be self respecting | |
be honest | |
remain calm | |
concentrate |
Question 658 |
He had second thoughts :
decided to take somebody with him | |
changed his mind | |
planned very carefully | |
decided to do elsewhere |
Question 659 |
The knowledge of nuclear power might lead to annihilation :
total destruction | |
tremendous progress | |
immortality | |
full healthfulness |
Question 660 |
The Minister condescended to accept our invitation.
agreed | |
declined | |
felt happy | |
deigned |
Question 661 |
I was stunned at the unabashed display of wealth in the wedding.
shameless | |
impressive | |
candid | |
accurate |
Question 662 |
1. The new economic policy comprises the various measures and changes introduced since july 1991.
(A) There is a common thread running through all these measures
(B) The objective is simple – to improve the efficiency of the system
(C) The regulatory mechanism involving multitude of controls has fragmented the capacity and reduced competition even in the sector.
(D) The thrust of the new policy is towards creating a more competitive environment as a means to improving the productivity and efficiency of the economy.
6. This is to be activated by removing the barriers and restrictions on the entry and growth of firms.
DCAB | |
ABCD | |
BDAC | |
DCBA |
Question 663 |
Philistine :
one who does not like or understand art, literature or music | |
one who is a novice as far as art and literature are concerned | |
one who is a fine judge of literature or art | |
one who is devoted to music |
Question 664 |
Iconoclast :
one who criticizes popular beliefs and established customs | |
one who is specially sent by God to preach a particular religion | |
one who encourages idol worship | |
one who is against all forms of government |
Question 665 |
Wardrobe :
a place where horses are kept | |
a place where official records are kept | |
a place where planes are kept | |
a place where clothes are kept |
Question 666 |
Indigenus | |
Indigenous | |
Indigenius | |
Indeginus |
Question 667 |
Hypocrisy | |
Hipocrisy | |
Hypocresy | |
Hipocracy |
Question 668 |
Parallel | |
Paralel | |
Parralel | |
Parralell |
Question 669 |
Rohit has got many friends because he has got much money.
enough money | |
bags of money | |
a lot of money | |
tons of money |
Question 670 |
The main business of the Parliament is to deal with matters pertained to the legislation.
pertaining with | |
pertaining to | |
pertained with | |
pertain to |
Question 671 |
The secret information was held away from me :
off | |
out | |
back | |
up |
Question 672 |
He spent much time and energy over it, and lost a lot of money in the bargain.
off the bargain | |
into the bargain | |
for the bargain | |
with the bargain |
Question 673 |
1 | |
2 | |
3 | |
4 |
Question 674 |
1 | |
2 | |
3 | |
4 |
Question 675 |
1 | |
2 | |
3 | |
4 |
Question 676 |
1 | |
2 | |
3 |
Question 677 |
Birds | |
Human beings | |
Animals | |
Reptiles |
● Compassionate Citizen is a humane education programme that has been designed specifically to teach children to be kind to animals.
● The course has been prepared by animal rights advocacy group People for Ethical Treatment of Animals (PETA).
Question 678 |
Virat Kohli | |
Ishant Sharma | |
M S Dhoni | |
Kapil Dev |
Question 679 |
South Korea | |
China | |
Japan | |
Vietnam |
Question 680 |
Duli chand | |
Shravani Nanda | |
P V Sindhu | |
Sunil Kant |
Question 681 |
A I C C | |
I C C | |
B C C I | |
A C C |
Question 682 |
China has rightfully claimed its control over South China Sea. | |
China together with Philippines has violated the Sovereign rights of others. | |
China has no historic rights to resources of waters of the South China Sea. | |
China’s sovereign territory has never been defined. |
Question 683 |
Arunima Sinha | |
Bachendri Pal | |
Ashwini Waskar | |
Laxmi Agarwal |
Question 684 |
R.Ashwin | |
Virat Kohli | |
Ravindra Jadeja | |
Amit Mishra |
Question 685 |
Mohan Bagan Kolkata | |
Army Green | |
Aizwal Football Club | |
Neroca Football Club |
Question 686 |
HRD Ministry | |
Department of Science and Technology | |
U.G.C. | |
Ministry of Commerce and Industry |
Question 687 |
Weather monitoring | |
Star-gazing | |
Telecommunication | |
Pollution monitoring |
Question 688 |
Rajasthan | |
Goa | |
Gujarat | |
Tamil Nadu |
Question 689 |
Zika virus | |
Dengue | |
Chikungunya | |
Herpes simplex |
Question 690 |
Javelin Throw | |
Shooting | |
Shot Put | |
Swimming |
Question 691 |
50 | |
52 | |
51 | |
53 |
Question 692 |
Sri Lanka | |
Bangladesh | |
Pakistan | |
India |
Question 693 |
Arundhati Bhattacharya | |
Shikha Sharma | |
Chanda Kochhar | |
Indira Nooyi |
Question 694 |
Melania Trump | |
Maria Trump | |
Melanie Trump | |
Melanija Trump |
Question 695 |
Indian Airlines | |
Indigo | |
Air India | |
Vayudoot |
Question 696 |
France | |
Germany | |
England | |
U.S.A. |
Question 697 |
23 | |
29 | |
26 | |
31 |
Question 698 |
Daughter | |
Mother | |
Sister | |
Aunt |
Question 699 |
390 | |
500 | |
425 | |
625 |
Question 700 |
v l _ k l v _ l k k l _ v _ k k l v _
k l v k k | |
l k v k l | |
k v v l v | |
v l l k v |
Question 701 |
{11, 31, 13, 43} | |
{5, 13, 17, 29} | |
{7, 31, 21, 37} | |
{3, 7, 11, 23} |
Question 702 |
LYMBOCIS | |
BOSLYCIS | |
CILYMBOS | |
CILOBMYS |
Question 703 |
11 km | |
8 km | |
10 km | |
5 km |
Question 704 |
15, 10, 45, 20, 135, 30 _______.
40 | |
305 | |
205 | |
405 |
Question 705 |
INTELLIGENCE
CANCEL | |
ENTRANCE | |
ENGINE | |
TEENAGE |
Question 706 |
A D G J : ? : : M P S V : N K H E
Z X T S | |
Z W Q T | |
Z W T Q | |
S U V Y |
Question 707 |
15, 29, 56, 108, 205, 400 ________.
756 | |
768 | |
758 | |
770 |
Question 708 |
The following information was found :
(a) 30 cars with air conditioning
(b) 4 cars with air conditioning and power windows but no radio
(c) 21 cars with radio
(d) 12 cars with radio and air conditioning but no power window
(e) 20 cars with power window
(f) 1 car with radio and power windows
(g) 6 cars with all the three options
What is the number of cars that had none of the options ?
4 | |
8 | |
6 | |
10 |
Question 709 |
18 | |
22 | |
20 | |
24 |
Question 710 |
21 years | |
24 years | |
27 years | |
26 years |
Question 711 |
Brass | |
Silver | |
Copper | |
Aluminium |
Question 712 |
28 | |
36 | |
32 | |
40 |
Question 713 |
4 | |
6 | |
5 | |
7 |
Question 714 |
1 km | |
3 km | |
2 km | |
5 km |
Question 715 |
25 | |
30 | |
27 | |
32 |
Question 716 |
Conclusion:
(I) All boys are sons.
(II) Some graduates are post graduates.
(III) Some boys are graduates.
(IV) Some post graduates are boys.
(I), (II) and (III) are true | |
(III) and (IV) are true | |
(II), (III) and (IV) are true | |
(I) and (III) are true |
Question 717 |
Principle of utility | |
Principle of selection | |
Principle of fulfilment of objectives | |
Principle of effectiveness |
Question 718 |
NUEPA | |
NCERT | |
NCTE | |
INSA |
Question 719 |
Time for completion of the tests | |
Content covered by the tests | |
Reliability and Validity of the tests | |
Process of scoring of the tests |
Question 720 |
Curriculum is part of the syllabus | |
Curriculum includes text books and syllabus | |
Syllabus is part of curriculum | |
Curriculum and syllabus are same |
Question 721 |
Treats all students with love and affection | |
Informs parents the confidential matters related to students for their benefit | |
Adapts his/her teaching to the individual needs of students | |
Respects human dignity of the child in all aspects of school life. |
Question 722 |
Self awareness, motivation, self regulation, empathy and social skill | |
Self concept, self respect, self regulation, motivation and empathy | |
Self regulation, motivation, sympathy, self respect and social skill | |
Social skills, self awareness, self respect, empathy and motivation |
Question 723 |
Essay type | |
Short answer type | |
Alternative response type | |
Multiple choice type |
Question 724 |
Horizontal curriculum | |
Topical curriculum | |
Vertical curriculum | |
Spiral curriculum |
Question 725 |
Once, it has been fixed, it should not be disturbed | |
Classroom furniture has no relevance to teaching and learning. So a teacher should not worry about this | |
Its arrangement should change on a daily or weekly basis | |
Its arrangement should change from time to time as per the requirement |
Question 726 |
Reason (R) : Knowledge is assumed to be constructed by learners themselves and learning is seen as an active process of construction and knowledge accumulation.
In the context of the above statements, select the correct one :
Both (A) and (B) are true but (R) not an explanation of (A) | |
Both (A) and (R) are true and (R) the explanation of (A) | |
(A) is true but (R) is false | |
(A) is true but (R) is not necessarily be true |
Question 727 |
Meaningful questions asked by students | |
Complete silence in the classroom | |
Number of students passing the examination | |
Attendance of students in the classroom |
Question 728 |
(a) Economics
(b) Hindi
(c) History
(d) Computer Science
(e) Physics
Only (e) | |
(a), (b), (c) and (d) | |
(a), (b), (c), (d) and (e) | |
(a), (b), (c) and (e) |
Question 729 |
receiving, responding, organization, valuing and characterization | |
receiving, responding, valuing, organization and characterization | |
responding, receiving, valuing, organization and characterization | |
responding, valuing, organization, receiving and characterization |
Question 730 |
As simple as possible | |
Just like normal dress of that society to which the students belong | |
Modern and up to date | |
It should be the same for all teachers |
Question 731 |
Discussing the matter with his/her family | |
Discussing the matter with the Principal | |
Discussing the matter in the class only | |
Discussing the matter with his/her colleagues |
Question 732 |
Learning in self-paced | |
Time and cost are very high | |
Always require physical presence in the class |
Question 733 |
Teacher as a good classroom teacher | |
Teacher as a good teacher and a manager of teaching process | |
Teacher as a facilitator of learning | |
Teacher as a strong motivator |
Question 734 |
Demonstration method | |
Film on the life of a gram plant | |
Field visit in the month of October | |
Use of charts and models |
Question 735 |
Formative Evaluation | |
Criterion Evaluation | |
Summative Evaluation | |
Annual Evaluation |
Question 736 |
Buzz session | |
Discussion method | |
Role play | |
Brainstorming |
Question 737 |
कर्मवाच्य
| |
भाव वाच्य | |
कर्तवाच्य | |
कोई नहीं
|
Question 738 |
स्पर्श | |
घोष | |
स्वर
| |
व्यंजन
|
Question 739 |
आर्थीक
| |
आर्थिक
| |
आरथिक | |
आर्थिक
|
Question 740 |
लिफ़ाफ़ा
| |
सरासर | |
कालीन
| |
रेलगाड़ी
|
Question 741 |
कर्म कारक
| |
सम्बन्ध कारक | |
कर्ता कारक
| |
अधिकरण कारक
|
Question 742 |
अपयश
| |
सुयश
| |
कुयश | |
यशहीन
|
Question 743 |
अ
| |
अव | |
आ
| |
आग
|
Question 744 |
अपूर्णभूत
| |
सामान्य भूत
| |
हेतुहेतुमद भूत
| |
पूर्णभूत |
Question 745 |
.शब्दर्थ | |
शब्दअर्थ
| |
शब्दार्थ
| |
शब्दाअर्थ
|
Question 746 |
दरपण
| |
द्रपण | |
दपर्ण
| |
दर्पण
|
Question 747 |
भेंड़ चर रही है
| |
भेंडें चर रही हैं | | |
भेड़ों चर रही हैं
| |
भेड़एँ चर रही हैं |
Question 748 |
‘सब कुछ जानने वाला’
बुद्धिमान
| |
सर्वज्ञ
| |
ज्ञानवान
| |
सर्वत्र
|
Question 749 |
एक वस्तु के कम चाहने वाले | |
मांग कम पूर्ति अधिक
| |
वस्तु थोड़ी और चाहने वाले अधिक | |
अनार को चाहने वाले अधिक लोग |
Question 750 |
इसे खड़े –खड़े सीखा जा सकता है
| |
इसमें खड़ी मात्रा का प्रयोग अधिक होता है | |
इसमें खरी खोटी कहने की क्षमता है | | |
इसका ध्वनि -विन्यास कर्कस है |
Question 751 |
दादी का प्राणी निकल गया |
| |
मैंने तीन कुर्सियां खरीदीं | |
चार आदमी के लिए खाना बना दो
| |
मेरे भाई के शादी के लिए अनेको प्रस्ताव आये | |
Question 752 |
निश्चयवाचक
| |
निजवाचक | |
संबंधवाचक
| |
पुरुषवाचक
|
Question 753 |
कविता
| |
कवयित्री
| |
गायिका
| |
काव्य |
Question 754 |
धन –धान्य
| |
हरिशंकर
| |
घर –बाहर
| |
दिन –दिन
|
Question 755 |
अहि
| |
भुजंग
| |
मकर
| |
विषधर
|
Question 756 |
कड़वाहट
| |
रहट
| |
गिरावट
| |
थकावट
|
Question 757 |
Multiple variables having the same location | |
Multiple variables having the same identifier | |
Multiple variables having the same value | |
Multiple use of same variable |
Question 758 |
Then analog signal has _____ signal elements and carry _____ data elements in each signal.
256, 8 bits | |
128, 4 bits | |
256, 4 bits | |
128, 8 bits |
-- Bit rate(B)=8000 bps
-- Baud rate(Ba)=1000 bps
-- Signal elements(S)=?
-- Data elements(D)=?
Step-1: Total number of signal elements(S)⇒ Ba=B*(1/S) ⇒ S=(B/Ba)
= 8000/1000
= 8 bits/baud
Step-2: Total number of data elements(D) ⇒ S=log2D ⇒ D=2S
=28
= 256 bits
Question 759 |
Huffman coding | |
Arithmetic coding | |
Run-length coding | |
DPCM |
→ Differential pulse-code modulation (DPCM) is a signal encoder that uses the baseline of pulse-code modulation (PCM) but adds some functionalities based on the prediction of the samples of the signal. The input can be an analog signal or a digital signal.
Question 760 |
a-iv, b-i, c-iii, d-ii | |
a-i, b-iv, c-ii, d-iii | |
a-iii, b-ii, c-iv, d-i | |
a-ii, b-i, c-iv, d-iii |
Lambda calculus (also written as λ-calculus) is a formal system in mathematical logic for expressing computation based on function abstraction and application using variable binding and substitution. It is a universal model of computation that can be used to simulate any Turing machine. It was first introduced by mathematician Alonzo Church in the 1930s as part of his research of the foundations of mathematics.
Lambda calculus as programming language→ Mccarthy, 1960
The first functional programming language and the second oldest programming language still in use (after FORTRAN), LISP began life in 1958 as a project led by John McCarthy at MIT. The aim was to create a system for programming computations over symbolic data, starting with an algorithm McCarthy had drafted for symbolic differentiation.
Lazy evaluation→ Wordsworth, 1970
Lazy evaluation was introduced for lambda calculus by Christopher Wadsworth. lazy evaluation (or) call-by-need is an evaluation strategy which delays the evaluation of an expression until its value is needed (non-strict evaluation) and which also avoids repeated evaluations (sharing).
Type classes→ Haskell, 1990
Type classes, as used in the functional programming language Haskell.
Question 761 |
I. A version is an instance of a system, which is functionally identical but non-functionally distinct from other instances of a system.
II. A version is an instance of a system, which is functionally distinct in some way from other system instances.
III. A release is an instance of a system, which is distributed to users outside of the development team.
IV. A release is an instance of a system, which is functionally identical but non-functionally distinct from other instances of a system.
I and III | |
II and IV | |
I and IV | |
II and III |
TRUE: A release is an instance of a system, which is distributed to users outside of the development team.
Build, version and Release terminology:
→ Build − executable or a library created by compiling source code.
→ Version − a software build. New version is a different build.
→ Release − (public release) a version intended for use by general population.
Question 762 |
2 | |
4 | |
8 | |
16 |
-- Up time=75%
-- Down time=25%
-- How many times does this file server have to be replicated to give an Availability of at least 99% is=?
Option-A: Here 2 replications, it means down time is 25% equivalent 0.25.
According to 2 replications we have to multiply with 0.25*0.25=0.0625
Availability= 100-6.25%
= 93%
Option-B: Here 4 replications, it means down time is 25% equivalent 0.25.
According to 4 replications we have to multiply with 0.25*0.25*0.25*0.25
= 0.00390625
Availability= 100-0.0390625%
= 99.9609375%
Option-C: Here 8 replications, it means down time is 25% equivalent 0.25.
According to 8 replications we have to multiply with
= 0.25*0.25*0.25*0.25*0.25*0.25*0.25*0.25
= 0.0000152587890625
Availability= 100-0.00152587890625%
= 99.99847412109375%
Option-D: Here 16 replications, it means down time is 25% equivalent 0.25.
According to 16 replications we have to multiply with
= 0.25*0.25*0.25*0.25*0.25*0.25*0.25*0.25*0.25*0.25*0.25*0.25*0.25*0.25*0.25*0.25
= 0.00000000023283064365386962890625
Availability= 100-0.000000023283064365386962890625%
= 99.999999976716935634613037109375%
Hence, option-B is most suitable answer.
Question 763 |
MANDATORY
Obligatory | |
Optional | |
Uncommon | |
Unique |
Question 764 |
PREPOSTEROUS
Credible | |
Plausible | |
Outrageous | |
Outgoing |
Question 765 |
Under the Turks, tenant farming was good business, but under the british___was fast reaching a point of diminishing returns.
they | |
it | |
these | |
those |
Question 766 |
Niusance | |
Nuisance | |
Nuisence | |
Nuiscence |
Question 767 |
I was late. I phoned my parents____they worried about me.
whereas | |
despite | |
In case | |
So that |
Question 768 |
The professor refused to proceed further_____the students had completed the assignment.
If | |
because | |
Unless | |
So that |
Question 769 |
Bhai Saheb is still weak due to the viral fever. But he____better.
got | |
is getting | |
Gets | |
was getting |
Question 770 |
BENEFIT
Damage | |
Interest | |
Advantage | |
Favor |
Question 771 |
Scientists have discovered a trove of 44 planets in solar systems beyond our own.
A trove of scientist has been discovered by the 44 planets in solar system beyond our own. | |
A trove of 44 scientist in solar systems beyond our own has been discovered by the planets. | |
A trove of 44 planets in solar systems beyond our own has discovered scientists. | |
A trove of 44 planets in solar systems beyond our own has been discovered by scientists. |
Question 772 |
Inarticulate | |
Insoluble | |
Inclusive | |
Ingratitude |
Question 773 |
“ I can’t find the book you told me about “ My sister said to me.
My sister told me that:
She couldn’t find the book you told her about. | |
She can’t find the book you told her about | |
She couldn’t find the book I told her about | |
I can’t find the book you told me about |
Question 774 |
The body of the _____man was found after a long search.
Drowned | |
Sinking | |
Sunken | |
drowning |
Question 775 |
Ibrahim erected a small tent to protect ______ from the searching sun.
Himself | |
Themselves | |
Itself | |
oneself |
Question 776 |
From tomorrow, this shop ______ closed for a month for renovation.
Remained | |
Remines | |
Has remained | |
Will remain |
Question 777 |
The agents of the absentee landowners were serving eviction notices to the Arab peasants.
The agents of the absentee landowners were being served eviction notices by the Arab peasants | |
The Arab peasants were being served eviction notices by the agents of the absentee landowners | |
Eviction notices have been served by the agents of the absentee landowners to the Arab peasants | |
Absentee landowners were being served eviction notices by the agents of the Arab peasants |
Question 778 |
Illeterate | |
Illuminate | |
Illegible | |
Illustration |
Question 779 |
To rescue scores of migrant labourers in flood-ravaged Kerera, the Centre has undertaken a special evacuation plan for taking 25,000 labourers to them home states by trains over this weekend.
has undertaken | |
Over this weekend | |
To them home states | |
To rescue |
Question 780 |
With dawn, the weather got a little better and the mountaineers decided go for the summit, still 2000 ft above them.
Got a little better | |
Above them | |
Decided go | |
The mountaineers |
Question 781 |
The farmer advised his sons not to quarrel among themselves when he was dead but to remain united.
The farmer said to his sons:
“Don’t quarrel among yourselves when I am dead. Remain united.” | |
“Don’t quarrel among themselves when I am dead. Remain united.” | |
“Don’t quarrel among yourselves when he was dead. Remain united.” | |
“Not to quarrel among themselves when he was dead but to remain united.” |
Question 782 |
In my country, cricket is the___sport
Most popular | |
As popular | |
More popular | |
popular |
Question 783 |
कर्म | |
कृपा | |
कार्य | |
मित्र |
Question 784 |
ठन ठन गोपाल | |
जान हथेली पर रखना | |
दांत मीठे करना | |
दांत खट्टे करना |
Question 785 |
विसर्ग संधि | |
वृद्धि संधि | |
गुण संधि | |
दीर्घ संधि |
Question 786 |
थोड़ा थोड़ा चलने लगा बच्चा है | | |
थोड़ा –थोड़ा चलने लगा है बच्चा | | |
थोड़ा –थोड़ा बच्चा चलने लगा है | | |
बच्चा थोड़ा –थोड़ा चलने लगा है | |
Question 787 |
पचास आनन | |
पांच आनन वाला | |
पांच और आनन | |
पांच है आनन जिसके |
Question 788 |
द्वन्द समस | |
द्विगु समास | |
तत्पुरुष समास | |
कर्मधारय समास |
Question 789 |
जिह्वा | |
ग्रन्थ | |
गांठना | |
गांठ |
Question 790 |
सुरंग | |
कुरंग | |
नग | |
हिरन |
Question 791 |
आदत –आदतें | |
हाथी –हथिनी | |
कामना –कामनाएं | |
पहिया –पहिये |
Question 792 |
नारी | |
कुमारी | |
महिला | |
कन्या |
Question 793 |
नि +छल | |
नि : +छल | |
नि +चल | |
नि + अचल |
Question 794 |
यमक अलंकर | |
पुनरुक्ति प्रकाश अलंकर | |
उत्प्रेक्षा अलंकर | |
मानवीकरण अलंकर |
Question 795 |
आ बैल मुझे मार | |
डूबते को तिनका का सहारा | |
अकेला चना भाड़ नहीं फोड़ सकता | |
एक अनार सौ बीमार |
Question 796 |
कंटीला | |
कंटक | |
कांच | |
काटना |
Question 797 |
हरिलोक | |
लौकिक | |
लोक | |
भूलोक |
Question 798 |
प्रातः –प्राय | |
जटिल –कठिन | |
हित –भला | |
साक्षर –निरक्षर |
Question 799 |
कठिन परिश्रम करना | |
आराम से बैठना | |
अत्यधिक बल लगाना | |
जोर से भागना |
Question 800 |
कथा | |
आग | |
रास्ता | |
गाय |
Question 801 |
गाजर | |
गौ | |
घृणा | |
कृपा |
Question 802 |
काफी | |
तट | |
नर | |
समूह |
Question 803 |
the president; the Attorney-General | |
the Prime Minister; the Attorney-General | |
the Prime Minister; the Speaker of the Lok Sabha | |
the President, the Prime Minister |
Question 804 |
Part XIII | |
Part II | |
Part IX | |
Part XXII |
Question 805 |
कालमेजुथु | |
मिनीएचर | |
पट्टचित्र | |
वार्ली |
Question 806 |
आयुष मंत्रालय | |
कृषि और किसान कल्याण मंत्रालय | |
नवीन और नवीकरण उर्जा मंत्रालय | |
पर्यावरण, वन एवं जलवायु परिवर्तन मंत्रालय |
Question 807 |
Anand | |
Gandhinagar | |
Surat | |
Vadodara |
Question 808 |
Tech mahindra | |
Infosys | |
Wipro | |
TCS |
Question 809 |
France | |
China | |
Japan | |
U.S.A |
Question 810 |
A Judge of a High Court; the president | |
The Chief Minister; the Attorney-General | |
The Chief Minister; the Prime Minister | |
A judge of a High Court; the Attorney-General |
Question 811 |
Karnataka | |
Tamilnadu | |
Andhra Pradesh | |
Kerala |
Question 812 |
Article 120 | |
Article 141 | |
Article 97 | |
Article 86 |
Question 813 |
Nagaland | |
Kerala | |
Mizoram | |
Andhra pradesh |
Question 814 |
Kabaddi | |
Golf | |
Hockey | |
kho-Kho |
Question 815 |
IIT Guwahati | |
IIT Hyderabad | |
IIT Kanpur | |
IIT Kharagpur |
Question 816 |
Pressure | |
Speed | |
Motion | |
Acceleration |
Question 817 |
San Francisco | |
Chicago | |
Los Angeles | |
Boston |
Question 818 |
The Home Minister of India | |
The Attorney-General of India | |
The Finance Minister of India | |
The President of India |
Question 819 |
Delhi, 1923 | |
Kanpur, 1925 | |
Guwahati, 1926 | |
Belgaum, 1924 |
Question 820 |
Russia | |
China | |
Brazil | |
South Africa |
Question 821 |
Germany | |
Singapore | |
Canada | |
israel |
Question 822 |
Uttarakhand | |
Chhattisgarh | |
Goa | |
Nagaland |
Question 823 |
Irulas | |
Bakarwals | |
Totos | |
Kodavas |
Question 824 |
Arun Jaitley | |
Uma Bharti | |
Smriti Irani | |
Suresh Prabhu |
Question 825 |
West bengal | |
Chandigarh | |
Bihar | |
Delhi |
Question 826 |
Doddabetta Peak | |
Palni Hills | |
Kolaribetta Peak | |
Anamudi Peak |
Question 827 |
Tokyo | |
Los Angeles | |
Paris | |
Beijing |
Question 828 |
Brazil | |
Thailand | |
Argentina | |
Indonesia |
Question 829 |
Guru Har Krishan | |
Guru Arjun | |
Guru Tegh Bahadur | |
Guru Har Govind |
Question 830 |
शूद्रक | |
कालिदास | |
हर्ष | |
भासा |
Question 831 |
Jaipur | |
Chandigarh | |
Kanpur | |
Bhopal |
Question 832 |
Wrestling | |
Athletics | |
Boxing | |
Shooting |
Question 833 |
13, 36, 69, 112. ?
148 | |
165 | |
119 | |
123 |
Question 834 |
20 ml | |
15 ml | |
5 ml | |
10 ml |
Question 835 |
1728 | |
576 | |
825 | |
144 |
Question 836 |
Advertisement, Screening, Interview, Recruitment,?
Training | |
Induction | |
Layoff | |
Termination |
Question 837 |
NEWSPAPER
WASP | |
WEEP | |
SPEAR | |
PREPARE |
Question 838 |
Tuesday | |
Wednesday | |
Sunday | |
Monday |
Question 839 |
36/49 | |
36/37 | |
14/39 | |
39/49 |
Question 840 |
60.25 | |
62.85 | |
60.95 | |
61.75 |
Question 841 |
3,5,2,4,1,6 | |
6,2,1,3,5,4 | |
2,6,1,3,4,5 | |
4,5,3,2,6,1 |
Question 842 |
8:131::11:?
240 | |
245 | |
243 | |
241 |
Question 843 |
25 | |
18 | |
20 | |
16 |
Question 844 |
Brother | |
Son | |
Grandfather | |
Father |
Question 845 |
Gladiator:Rome::Matador:?
France | |
Germany | |
Portugal | |
Spain |
Question 846 |
What is the percentage increase in the sum at the end of 15 months, correct to one decimal place?
15.8% | |
15.5% | |
15.2% | |
16.2% |
Question 847 |
105 x 5 - 3 ÷ 4 + 6
58 | |
43 | |
32 | |
61 |
Question 848 |
72 | |
42 | |
68 | |
53 |
Question 849 |
16 | |
17 | |
15 | |
14 |
Question 850 |
1. Disease
2. Buy Medicine
3. Doctor
4. Medical Shop
1,3,4,2 | |
3,1,4,2 | |
1,3,2,4 | |
3,1,2,4 |
Question 851 |
23.4% | |
21.5% | |
22.8% | |
24.5% |
Question 852 |
Son | |
Grandson | |
Uncle | |
Nephew |
Question 853 |
4 | |
7 | |
9 | |
1 |
Question 854 |
8/45 | |
2/45 | |
9/205 | |
11/245 |
Question 855 |
Then the value of (a+4b) is:
-1 | |
-4 | |
1 | |
4 |
Question 856 |
A | |
D | |
C | |
G |
Question 857 |
4 | |
2 | |
8 | |
6 |
Question 858 |
is equal to:
Question 859 |
5 | |
3 | |
1 | |
2 |
Question 860 |
444:4 :: 636:?
16 | |
6 | |
13 | |
9 |
Question 861 |
3,5,4,2,1 | |
2,5,3,4,1 | |
2,3,5,4,1 | |
4,3,5,2,1 |
Question 862 |
31.8 | |
32.5 | |
33.1 | |
35 |
Question 863 |
Tertiary prevention | |
Secondary intervention | |
Remedial intervention | |
Preventive intervention |
Question 864 |
Struggle for existence and survival of the fittest are in the two most important aspects for reproduction. | |
It is the germ plasma that is transmitted from generation to generation | |
Heredity does not go to immediate parents but remote ancestors. | |
The cause of variation in the offspring is due to dominant and recessive genes |
Question 865 |
Theodicy | |
Epistemology | |
Metaphysics | |
Ethics |
Question 866 |
Civics | |
Communication | |
Art | |
Health and Physical Education |
Question 867 |
Article 14 | |
Article 15 (1) | |
Article 16 | |
Article 15 (3) |
Question 868 |
Autocratic society | |
Patrilocal society | |
Patriarchal society | |
Matriarchal society |
Question 869 |
Language attitude | |
Language ability | |
Language aptitude | |
Language sense |
Question 870 |
Systematic desensitisation | |
Permissive counselling | |
Aversive therapy |
Question 871 |
Reliability | |
Yielding in action | |
Self-control | |
Consciousness |
Question 872 |
Receiving | |
Valuing | |
Imitation | |
Responding |
Question 873 |
7 | |
4 | |
1 | |
2 |
Question 874 |
Positive verbal reinforcement | |
Sensory focus | |
Pupil’s movement | |
Teacher’s gesture |
Question 875 |
What are the main points of this reading?
Was anything confusing or unclear?
What was new to you?
Did it change the way you think?
Reading reflection | |
Passive reading method | |
Scaffolding | |
SQ3R |
Question 876 |
Gender awareness | |
Gender equity | |
Gender equality | |
Gender role |
Question 877 |
Grasping | |
Increase in weight | |
Hopping | |
Walking |
Question 878 |
Interaction | |
Context | |
Message | |
Symbol |
Question 879 |
Cognitive links | |
Rote repetition | |
Use of illustrations | |
Compare and contrast |
Question 880 |
Interpersonal | |
Bodily-kinaesthetic | |
Visual-Spatial | |
Linguistic-Verbal |
Question 881 |
Concrete | |
Level | |
Range | |
Area |
Question 882 |
To provide knowledge on Earth’s magnetic field | |
The pupil acquires knowledge and understands the properties of ozone | |
The pupil acquires knowledge about photosynthesis. | |
The class develops skills in drawing and labelling |
Question 883 |
animosity | |
love | |
friendliness | |
Trust |
Question 884 |
vow | |
affirm | |
pay | |
guarantee |
Question 885 |
casual | |
unpalatable | |
ignorant | |
immature |
Question 886 |
lustful | |
deceptive | |
cunning | |
dishonest |
Question 887 |
The attack on the freedom of the press is a retrograde step.
declining | |
progressive | |
punitive | |
stubborn |
Question 888 |
There was no altruistic motive that prompted him to help her.
wicked | |
brutal | |
inhuman | |
selfish |
Question 889 |
According to a great philosopher, magnanimity in a man implies many other qualities.
poverty | |
jealousy | |
meanness | |
Enmity |
Question 890 |
Her impetuous behaviour was attributed to her upbringing.
swift | |
rash | |
quiet and gentle | |
sluggish |
Question 891 |
Since one cannot read every book, one should be content with making a _____ selection.
standard | |
sample | |
moderate | |
judicious |
Question 892 |
Some people _____ themselves into believing that they are indispensable to the organization they work for.
fool | |
delude | |
force | |
denigrate |
Question 893 |
fought bravely | |
defeated his enemies | |
acquired distinction | |
Overpowered his enemies |
Question 894 |
The best policy is to let sleeping dogs lie.
to be liberal | |
to be tolerant | |
to be neutral | |
to avoid discussing troublesome matters |
Question 895 |
He was in a brown study and did not seem to catch my point.
in his study room | |
absorbed in reading | |
absent-minded | |
in a state of shock |
Question 896 |
A good teacher should have the gift of the gab.
a good personality | |
a talent for acting | |
a talent for speaking | |
an interest in discipline |
Question 897 |
Choose the correctly spelt word.
Etiquete | |
Etiquette | |
Ettiquete | |
Ettiquette |
Question 898 |
Choose the correctly spelt word.
Millonare | |
Millionaire | |
Millionare | |
Millonaire |
Question 899 |
A : The knowledge so far available about the endocrine glands is very limited.
B : Nature has provided the body with proper regulators and protectors.
C : These are our endocrine glands.
D : And so the proper functioning of these controllers of our body is very important and most vital for health.
E : However, all the medical sciences have accepted the fact that these endocrine glands secrete thousands of different types of hormones directly from our blood.
ABCDE | |
BDCAE | |
BDEAC | |
CBADE |
Question 900 |
A : Seconds later, the glaring object swept past and he thought he had out maneuvered it.
B : While flying over enemy territory, Jones received the warning of an oncoming missile.
C : He was proved wrong when he saw the vertical tail fins on fire.
D : Without wasting time, he slammed the throttles forward and made the plane roll into a high speed turn.
E : Hardly had he responded to the message when he actually saw what every fighter pilot dreaded most.
BEDAC | |
BDCEA | |
CDEAB | |
CBADE |
Question 901 |
A : A taxi was summoned and Satish was taken to Lifeline Hospital.
B : While hurrying home from school, Satish was hit by a car.
C : Since they did not succeed, they decided to take him to a hospital.
D : Some people rushed towards him and tried to bring him to his senses.
E : He was thrown a couple of feet away and lost consciousness.
ABCED | |
BDCAE | |
BEDCA | |
CBAED |
Question 902 |
A : Many consider it wrong to blight youngsters by recruiting then into armed forces at a younger age.
B : It is very difficult to have an agreement on an issue when emotions run high.
C : The debate has again come up whether this is right or wrong.
D : In many countries military service is compulsory for all.
E : Some of these detractors of compulsory draft are even very angry.
ACBED | |
DCAEB | |
BDEAC | |
DAECB |
Question 903 |
गणतंत्र
प्रजातंत्र | |
ह्रदयतंत्र | |
यंत्रतंत्र | |
राज तंत्र |
Question 904 |
गुण
सगुण | |
गुणातीत | |
अवगुण | |
गान |
Question 905 |
जिसके समान दूसरा न हो
अद्वितीय | |
अनोखा | |
अकेला | |
असमान |
Question 906 |
जो परीक्षा में उत्तीर्ण न हो
असफल | |
अनुत्तीर्ण | |
अयोग्य | |
असमान |
Question 907 |
जो उपकार को न मानता हो
कृतघ्न | |
उपकारी | |
कृतज्ञ | |
अनुपकारी |
Question 908 |
तलवार
खड्ग | |
असि | |
करगल | |
कुटार |
Question 909 |
गंगा
भागीरथ | |
सुरसरि | |
अवतरणी | |
मंदाकिनी |
Question 910 |
इंद्र
भूपेन्द्र | |
शक्र | |
सुरपति | |
पर्वतारि |
Question 911 |
शंशय | |
संश्य | |
सन्शय | |
संशय |
Question 912 |
दृष्य | |
दृश्य | |
द्रिष्य | |
द्रश |
Question 913 |
उद्योगिक | |
आद्योगिक | |
ओद्योगिक |
Question 914 |
सम्राटी | |
समराटिन | |
सम्राज्ञी | |
स्त्री –सम्राट |
Question 915 |
ज्ञानवत | |
ज्ञानवान | |
ज्ञानयुक्त | |
ज्ञानेय |
Question 916 |
युवी | |
युवराज्ञी | |
युवती | |
युवराज |
Question 917 |
निष्काम
निष् + काम | |
नि : + काम | |
निंश + काम | |
निस + काम |
Question 918 |
वीरोचित
वीर + उचित | |
वीर + औचित | |
वीरा + चित | |
वि + उचित |
Question 919 |
मदोन्मत्त
मदन + उन्मत | |
मदो + मत्त | |
मद + उन्मत्त | |
मदन + मत |
Question 920 |
रंग उड़ना
घबरा जाना | |
रंग फीका पड़ना | |
गुलाल बिखेरना | |
रंग में डूबना |
Question 921 |
विपत्ति मोल लेना
बिना पत्ते की सब्जी लेना | |
जान- बूझ कर संकट में पड़ना | |
एक दवाई खरीदना | |
मुसीबत खरीदना |
Question 922 |
आगे कुवां पीछे खाई
दोनों ओर विपत्ति होना | |
दोनों ओर गहरे गड्ढ़े होना | |
पहले कुवां खरीदना, फिर खाई | |
सामने कुवा पीठ पीछे खाई होना |
Question 923 |
Pt Ravi Shankar | |
Zubin Mehta | |
N C Satyanarayana | |
None of these |
Question 924 |
September 5 | |
August 22 | |
October 3 | |
July 15 |
Question 925 |
Raghuram Govind Rajan | |
D Subbarao | |
V V Reddy | |
None of these |
Question 926 |
Sujata Singh | |
S Jaishankar | |
Ranjan Mathai | |
None of these |
Question 927 |
Margaret Chan | |
Jose Graziano Da Silva | |
Roberto Azevedo | |
None of these |
Question 928 |
Rajmohan Gandhi | |
Mark Tully | |
Khushwant Singh | |
Taslima Nasrin |
Question 929 |
Laxmi | |
Rukmini | |
Bhagirathi | |
Aishwarya |
Question 930 |
Apple | |
Samsung | |
Nokia | |
LG |
Question 931 |
Spain | |
Switzerland | |
Serbia | |
Russia |
Question 932 |
Conservative Party | |
Labour Party | |
Liberal Democrats | |
Democratic Unionist Party |
Question 933 |
First | |
Second | |
Third | |
Fourth |
Question 934 |
International Political Conference Committee. | |
Intergovernmental Panel on Climate Change. | |
International Protocol on Carbon Compounds. | |
International Parliamentary Cabinet Committee. |
Question 935 |
Brisbane | |
Saint Petersburg | |
Cannes | |
Washington |
Question 936 |
Section 75 | |
Section 126 | |
Section 112 | |
Section 45 |
Question 937 |
Medicine | |
Economics | |
Literature | |
Physics |
Question 938 |
State Bank of Mysore | |
Syndicate Bank | |
Indian Overseas Bank | |
Allahabad Bank |
Question 939 |
Reliance Group | |
Bharti Group | |
Aditya Birla Group | |
Tata Group |
Question 940 |
Unnao Distt in Uttar Pradesh | |
Kedarnath Valley, Uttarakhand | |
Coastal area in North Odisha | |
Northern Kashmir, J&K |
Question 941 |
6 | |
8 | |
10 | |
7 |
Question 942 |
Ud Amjad Ali Khan | |
Ud Zakir Hussain | |
Pt. Birju Maharaj | |
Pt. Vishwa Mohan Bhatt |
Question 943 |
Bengali | |
Hindi | |
Marathi | |
Tamil |
Question 944 |
A | |
D | |
E | |
C |
Question 945 |
Poetry | |
Novel | |
Drama | |
All of these |
Question 946 |
A | |
C | |
B | |
F |
Question 947 |
Statement : A good voice is a natural gift; but one has to keep practising to improve and excel well in the field of music.
Conclusions:
Natural gifts need nurturing and care.
Even though your voice is not good, one can keep practising.
if conclusion I follows. | |
if conclusion II follows. | |
if either conclusion I or II follows. | |
if neither conclusion I nor II follows. |
Question 948 |
Statement : Domestic demand has been increasing faster than the production of indigenous crude oil.
Conclusions:
Crude oil must be imported.
Domestic demand should be reduced.
if conclusion I follows. | |
if conclusion II follows. | |
if either conclusion I or II follows. | |
if neither conclusion I nor II follows. |
Question 949 |
1, 3, 10, 21, 64, 129, 256, 778
10 | |
21 | |
129 | |
256 |
Question 950 |
45038401854 | |
56149512965 | |
57159413955 | |
67250623076 |
Question 951 |
₹30 | |
₹120 | |
₹46 | |
₹62 |
Question 952 |
39 | |
14 | |
25 | |
27 |
Question 953 |
₹8.50 | |
₹8.25 | |
₹9.50 | |
₹9.25 |
Question 954 |
6.15% | |
7.25% | |
6.75% | |
8.50% |
Profit% = (SP-CP)/CP *100
15/100 = (6900-CP)/CP
0.15*CP = 6900 - CP
1.15*CP = 6900
CP = Rs 6000
Now, if CP increased by 30%
i.e. CP' = CP + 30%CP
CP' = 6000 + 0.3*6000 = Rs 7800
Also, the SP increases by 20%
hence SP' = 6900 + 20% of 6900 =Rs 8280
hence new profit = SP' - CP' = 8280-7800=480
hence, profit % = Profit/CP' *100
= (480/7800) *100
= 6.15%
Question 955 |
Poetry | |
Drama | |
Novel | |
All of these |
Question 956 |
6 km | |
7 km | |
8 km | |
9 km |
Question 957 |
10 min, 40 sec | |
11 min, 45 sec | |
12 min, 30 sec | |
14 min, 40 sec |
Question 958 |
14.5% | |
12.5% | |
15.5% | |
17.5% |
Question 959 |
Uncle | |
Father | |
Grandfather | |
Father-in-law |
Question 960 |
10% | |
12.5% | |
8% | |
15% |
Length and breadth of a rectangle are changed by +20%
(Increasing) and -10%(decreasing)
= +20-10-((20*10)/100)
= 10-2
= 8%
Question 961 |
9% | |
6% | |
8% | |
12% |
Beginning of a year S.I=x
After 4 months of a year S.I =2x
216 = (1200*1*x)/100 + (1800*(8/12)*2x)/100
= 6 %
Question 962 |
75 | |
95 | |
115 | |
125 |
= (50*25)/ (40/100)
= (x*15)/ (60/100)
After solving this
5x=625
x=125
Required men= 125-50
=75
Question 963 |
heredity only. | |
environment only. | |
upbringing and education. | |
interaction between heredity and environment. |
Question 964 |
enforce strict discipline. | |
maintain uniform pace of learning. | |
provide a variety of learning experiences. | |
have more tests. |
Question 965 |
always following social norms | |
adjusting and adapting to the social environment. | |
respecting elders in society. | |
None of these |
Question 966 |
Writing, hearing, speaking, reading. | |
Hearing, speaking, reading, writing. | |
Speaking, hearing, reading, writing. | |
None of these |
Question 967 |
Give him/her a psychological treatment. | |
Feel shameful in front of the class. | |
Inspire him/her to work hard. | |
Punish him/her severely. |
Question 968 |
negative transfer of learning. | |
positive transfer of learning. | |
zero transfer of learning. | |
absolute transfer of learning. |
Question 969 |
Students | |
Principal | |
Class-teacher | |
None of these |
Question 970 |
level of their knowledge. | |
need for differentiated curriculum. | |
pathways for ability grouping. | |
remedial strategies required. |
Question 971 |
highly intelligent. | |
good in drawing and painting. | |
good at lateral thinking and problem solving. | |
capable of scoring consistently good marks in tests. |
Question 972 |
assessment for learning. | |
learning for assessment. | |
assessment of learning. | |
learning of assessment. |
Question 973 |
focus on teaching only. | |
point out mistakes of students continuously. | |
help the students to learn for themselves. | |
None of these |
Question 974 |
Learning capacity of all children is different. | |
Most children have similar nature. | |
Most children possess similar interest. | |
All of these. |
Question 975 |
their nature. | |
their mental development. | |
their capability to learn. | |
All of these |
Question 976 |
Instruction based solely on prescribed text books. | |
Emphasis on scoring good marks in examinations. | |
Frequent tests and examinations. | |
Flexible time-table and seating arrangement. |
Question 977 |
teaching has become simple. | |
teaching has become interesting. | |
students pay more attention. | |
All of these |
Question 978 |
Philosophical basis of education. | |
Group dynamics. | |
Evaluation of teachers and researchers in education. | |
Process of adjustment. |
Question 979 |
Regular awards. | |
Good advice. | |
Physical punishment. | |
None of these. |
Question 980 |
it helps in assessment of the success of the teaching process. | |
it helps to reduce mischievous activities of students. | |
enables a child to study at home also. | |
it saves teachers’ work |
Question 981 |
his heredity. | |
his environmental training. | |
Both (1) & (2) | |
None of these |
Question 982 |
Management | |
Business | |
Medical treatment | |
All of these |
Question 983 |
& | |
@ | |
# | |
$ |
< a href="# " > and < a name=" " >
Question 984 |
Machine | |
Interpreted | |
System | |
Compiled |
Question 985 |
< HTML >
< TITLE > Browser Test < /TITLE >
< BODY >
< I >Test < /I >
< !--testing -- >
< B > Website < /B >
< /BODY >
< /HTML >
< TITLE > Browser Test | |
< B > Website < /B > | |
< !--testing -- > | |
< I > Test |
Comments are ignored by browser to display the corresponding content.
Question 986 |
unrestricted element | |
Container element | |
Empty element | |
Null element |
EMPTY:
&l; !ELEMENT element-name EMPTY >
Example:
< !ELEMENT br EMPTY >
XML example:
< br / >
Question 987 |
Names can start with a number or punctuation character. | |
Names can contain letters, numbers, hyphens, underscores and periods. | |
Names cannot contain spaces | |
Names must not start with the letters. |
Element names are case-sensitive
Element names must start with a letter or underscore
Element names cannot start with the letters xml (or XML, or Xml, etc)
Element names can contain letters, digits, hyphens, underscores, and periods
Element names cannot contain spaces
Question 988 |
Version | |
Encoding | |
Standalone | |
Doctype |
The three attributes are a mandatory version attribute and optional encoding and standalone attributes
Question 989 |
Occurs one or multiple times | |
Occurs zero or multiple times | |
Occurs one or not at all | |
Occurs only once |
“*” is used to indicate the element occurs one or multiple times
Question 990 |
& apos; (to display the 'symbol) | |
& amp; (to display the & symbol) | |
& nbsp; (to display the 'symbol) | |
& quot; (to display the "symbol) |
& amp; (to display the & symbol)
& quot; (to display the "symbol)
& nbsp; (to display the space symbol)
Question 991 |
32 | |
64 | |
128 | |
Variable |
IPv6 uses a 128-bit address, theoretically allowing 2128, or approximately 3.4×1038 addresses.
Question 992 |
A parser is a software program that checks the syntax used in an XML file. | |
A validating passer ensures that the XML document is well formed but not valid. | |
Validating passer checks syntax as well as compares the structure of the XML document . | |
Non-validating parser only checks for structure problems with the XML code. |
parser that is designed to read XML and create a way for programs to use XML.
Question 993 |
Non-persistent | |
One-persistent | |
P-persistent | |
Non-validating |
Question 994 |
Node to node delivery | |
Synchronization | |
Updating and maintenance of routing tables. | |
Process to process message delivery. |
Transport layer is the 4th layer in TCP/IP Model that deals with logical communication between process
Question 995 |
onMouseDown and onMouseUp | |
onMouseIn and onMouseOut | |
onMouseOver and onMouseOut | |
onMouseOver and onMouseUp |
onmouseover:The event occurs when the pointer is moved onto an element, or onto one of its children
Question 996 |
Statement 1 : JavaScript support 3 primitive data types - integer, string and Boolean.
Statement 2 : JavaScript support 2 composite data types - arrays and objects.
Statement 3 : JavaScript support 2 special data types - null and undefined.
Choose the option below that is absolutely correct about the above three statements.
Only statement 2 and statement 3 are true. | |
Only statement 1 and statement 3 are true. | |
Only statement 1 and statement 3 are true. | |
All the statements are true. |
Object, Array, and Function (which are all types of objects) are composite data types. Whereas Undefined and Null are special data types.
Question 997 |
Once every time the system starts. | |
Once every time the web page is refreshed. | |
Only once when the window is opened. | |
Will not be called as the event handler is wrong. |
Question 998 |
window.document.write ("Hello! Welcome to JavaScript") | |
body.document.write. ("Hello! Welcome to JavaScript") | |
location .document.write ("Hello! Welcome to JavaScript") | |
document.writeln ("Hello! Welcome to JavaScript") |
Question 999 |
Smiley is a stage level object. | |
Smiley is a overlay level object. | |
Many instances of this graphic can be created and used on stage. | |
This object will operate in sync with the timeline of the main movie. |
Question 1000 |
document.write (2+5+"8");
258 | |
Error | |
78 | |
7 |
The expression 2+5+"8" gives 78
Question 1001 |
Blur unwanted parts | |
Change the canvas size to exclude parts | |
Use the crop tools | |
Use the sponge tool |
Question 1002 |
Pixel buffer | |
Image buffer | |
Frame buffer | |
Video buffer |
Picture definition is stored in a memory area called the refresh buffer or frame buffer. This memory area holds the set of intensity values for all the screen points.
Each screen point is referred to as a pixel or pel
Question 1003 |
COMEIMAGE
Feathering | |
Filters | |
Channels | |
Layers |
Question 1004 |
Property inspector | |
Tools panel | |
Scene Panel | |
Layers Panel |
Question 1005 |
Easy to connect new nodes or devices | |
Require less cable length | |
All nodes are directly connected to the server. | |
Isolation of faulty node is easy. |
If the central node fails means the entire network will collapse
Question 1006 |
Publishing, Exporting | |
Exporting, Publishing | |
Previewing, Exporting | |
Exporting, Previewing |
Export your Flash movie as an .swf file by using File
The Publish command creates an SWF file and an HTML document that inserts your Flash content in a browser window.
The Publish command also creates and copies detection files for Macromedia Flash 4 from Adobe and later
Question 1007 |
Publishing, Exporting | |
Exporting, Publishing | |
Previewing, Exporting | |
Exporting, Previewing |
Export your Flash movie as an .swf file by using File
The Publish command creates an SWF file and an HTML document that inserts your Flash content in a browser window.
The Publish command also creates and copies detection files for Macromedia Flash 4 from Adobe and later
Question 1008 |
Message switching | |
Packet switching | |
Circuit switching | |
Data switching |
Question 1009 |
Operations in database | |
Instances of a class | |
Tables in database | |
Attributes in a table. |
In other words, any foreign key field must agree with the primary key that is referenced by the foreign key.
Thus, any primary key field changes must be applied to all foreign keys, or not at all.
The same restriction also applies to foreign keys in that any updates (but not necessarily deletions) must be propagated to the primary parent key.
Question 1010 |
Repeater | |
Router | |
Bridge | |
Switch |
A router is a Layer 3 network gateway device, meaning that it connects two or more networks and that the router operates at the network layer of the OSI model.
Question 1011 |
Equalization | |
Bit stuffing | |
Hamming codes | |
Cyclic Redundancy code. |
Blocks of data entering these systems get a short check value attached, based on the remainder of a polynomial division of their contents
. On retrieval, the calculation is repeated and, in the event the check values do not match, corrective action can be taken against data corruption.
CRCs can be used for error correction.
Question 1012 |
Simplex | |
Half-duplex | |
Full -duplex | |
Four fire circuit |
For example, on a local area network with a technology that has full-duplex transmission, one workstation can be sending data on the line while another workstation is receiving data.
Question 1013 |
Only a software | |
Only a hardware | |
Necessarily both software and hardware | |
A software with or without hardware |
If you want to secure your individual computer or laptop then software firewall is enough but for an enterprise level network, hardware firewall is required
Question 1014 |
2. It allows for longer transmission distance.
3. It is immune to electromagnetic interference.
4. It is much thinner and lighter than the other cable media.
All of the above characteristics are attached to
Optical fiber | |
Twisted pair cable | |
Coaxial cable | |
CAT 5/CAT 6 cable |
Question 1015 |
1111 1010 1101 | |
1011 1010 1101 | |
1011 1010 1111 | |
1011 1110 1101 |
The binary value of “B” is 1011
The binary value of “D” is 1101
Question 1016 |
Personal Computer | |
Program Counter | |
Protection Check | |
Parameter Combination |
Question 1017 |
Databus | |
Address bus | |
Logical bus | |
Control bus |
Question 1018 |
Main memory | |
Cache memory | |
Semiconductor based memory | |
DRAM |
Question 1019 |
Multiprogramming | |
Parallel processing | |
Time sharing | |
Batch processing |
Question 1020 |
Strictly binary tree | |
Red-black tree | |
AVL tree | |
Complete binary tree |
In an AVL tree, the heights of the two child subtrees of any node differ by at most one; if at any time they differ by more than one, rebalancing is done to restore this property.
Question 1021 |
Fetch cycle | |
Instruction cycle | |
Decode cycle | |
Execute cycle |
Question 1022 |
Control Panel | |
Device Drive | |
Program installer | |
None of the above |
A driver provides a software interface to hardware devices, enabling operating systems and other computer programs to access hardware functions without needing to know the precise details about the hardware being used.
Question 1023 |
BeOS | |
BOSS | |
Haiku | |
OpenBSD |
BOSS Linux is officially released in four editions: BOSS Desktop (for personal use, home and office), EduBOSS (for schools and education community), BOSS Advanced Server and BOSS MOOL.
Question 1024 |
BeOS | |
BOSS | |
Haiku | |
OpenBSD |
BOSS Linux is officially released in four editions: BOSS Desktop (for personal use, home and office), EduBOSS (for schools and education community), BOSS Advanced Server and BOSS MOOL.
Question 1025 |
First Come First Serve [FCFS] scheduling | |
Shortest Job First [SJF] Scheduling | |
Priority Scheduling | |
Random |
Along the options (1),(2) and (3) ,there is another algorithm named round robin scheduling algorithm.
Question 1026 |
Stack | |
Queue | |
String | |
Tree |
Non-linear data structure does not arrange the data consecutively rather it is arranged in sorted order.
In this, the data elements can be attached to more than one element exhibiting the hierarchical relationship which involves the relationship between the child, parent, and grandparent.
Question 1027 |
Array | |
Stack | |
Queue | |
Tree |
The queue follows the First In First Out (FIFO) queuing method, and therefore, the neighbours of the node will be visited in the order in which they were inserted in the node i.e. the node that was inserted first will be visited first, and so on.
Question 1028 |
Task | |
Program | |
Process | |
Light weight process |
Question 1029 |
XY' + X | |
X'Y + XY' | |
XY + XY' | |
XY + X'Y' |
A high output (1) results if both of the inputs to the gate are the same. If one but not both inputs are high (1), a low output (0) results.
Question 1030 |
XOR | |
NOR | |
XNOR | |
NAND |
An XOR gate implements an exclusive or; that is, a true output results if one, and only one, of the inputs to the gate is true.
If both inputs are false (0/LOW) or both are true, a false output results
The diagram gives Boolean expression X.Y+ X'Y
Question 1031 |
P+QR=(P+Q)(P+R)
De Morgan's law | |
Associative law | |
Commutative law | |
Distributive law |
A(B + C) = A.B + A.C (OR Distributive Law)
A + (B.C) = (A + B).(A + C) (AND Distributive Law)
Question 1032 |
min (m, n) | |
max (m, n) | |
m+n-1 | |
mn |
Question 1033 |
Name2 | |
Total | |
class | |
Derived |
We can’t use keywords as identifier names.
Question 1034 |
* | |
:: | |
: | |
' |
Question 1035 |
Random Programming | |
Modular Programming | |
.NET Programming | |
Object Oriented Programming |
Each module meant for a specific functionality.
Question 1036 |
EBCDIC | |
Unicode | |
ASCII | |
QRcode |
Question 1037 |
one base class with one derived class | |
more than one generation of classes | |
one base class with more than one derived classes | |
more than one base classes with one derived class |
Question 1038 |
abed+-* | |
ab +-cd * | |
ab +cd *- | |
ab +cd-* |
The infix expression of given expression is (a+b)*(c-d)
The post fix expression is ab+cd-*
Question 1039 |
private | |
personal | |
protected | |
public |
Question 1040 |
char *s = "AMAZING"
s+=3;
cout<< s < < endl;
DMAZING | |
D | |
ZING | |
Z |
s=s+3 which means that the pointer will point to the third index value.
So, it will print “ZING”
Question 1041 |
log2n | |
n-1 | |
n | |
2n |
Question 1042 |
Interprocess communication | |
Semaphore | |
Deadlock | |
Mutual exclusion |
A semaphore is simply a variable. This variable is used to solve critical section problems and to achieve process synchronization in the multi processing environment.
Question 1043 |
Record | |
Attribute | |
Tuple | |
Relation |
Record/tuple means row in a table
Attribute means column in a table.
Question 1044 |
70 | |
80 | |
90 | |
10 |
A[2]+=10; => A[2]=A[2]+10=70+10=80
P+=2;=> P=P+2 // Here “P” will point to the third element of the array which value is “80”
Question 1045 |
Primary keys | |
Alternate keys | |
Candidate keys | |
Foreign keys |
Out of Candidate keys, one is selected as Primary key, and others become Alternate Keys.
Question 1046 |
LRU | |
Optimal | |
Circular FIFO | |
FIFO |
This phenomenon is commonly experienced when using the first-in first-out (FIFO) page replacement algorithm.
In FIFO, the page fault may or may not increase as the page frames increase, but in Optimal and stack-based algorithms like LRU, as the page frames increase the page fault decreases
Question 1047 |
Visual basic | |
Visual C++ | |
Power Builder | |
MS PowerPoint |
Question 1048 |
deletes only the structure of the table. | |
deletes all constraints in a table | |
deletes data of table | |
deletes data as well as structure of table. |
The SQL DROP TABLE statement is used to remove a table definition and all the data, indexes, triggers, constraints and permission specifications for that table.
Syntax :DROP TABLE table_name;
Question 1049 |
SELECT MIN(DOJ), MAX(DOJ) FROM CLUB; | |
SELECT MIN(DOJ), MAX(DOJ) FROM CLUB GROUP BY TYPE; | |
SELECT MIN(DOJ), MAX(DOJ),TYPE FROM CLUB GROUP BY TYPE; | |
SELECT MIN(DOJ), MAX(DOJ), TYPE GROUP BY TYPE FROM CLUB; |
The GROUP BY statement is often used with aggregate functions (COUNT, MAX, MIN, SUM, AVG) to group the result-set by one or more columns.
Question 1050 |
Based on table CLUB, find out the most appropriate SQL statement from the following to display the total amount of FEE collected from monthly members till date :
SELECT SUM(MONTIIS_BETWEEN(SYSDATE, DOJ) * FEE) FROM CLUB WHERE TYPE= "MONTHLY' | |
SELECT SUM(MONTH_BETWEEN (DOI,SYSDATE) * FEE) FROM CLUB ;WHERE TYPE= "MONTHLY" | |
SELECT SUM(MONTH_BETWEEN (DOJ, SYSDATE) * FEE) FROM CLUB WHERE TYPE= ''MONTHLY" | |
SELECT MONTHS_BETWEEN(SYSDATE, DOJ) • FEE FROM CLUB WHERE TYPE= "MONTHLY'' |
Question 1051 |
Based on table CLUB, which of the following SQL statement will delete the information of those members, who are either ANNUAL members or those who are having DOJ on or after "01-JAN-2010".
DELETE FROM CLUB WHERE TYPE= "ANNUAL" AND DOJ > = "01-JAN-10"; | |
DELETE FROM CLUB WHERE TYPE= "ANNUAL" OR DOJ > "01-JAN-10"; | |
DELETE * FROM CLUB WHERE TYPE= "ANNUAL" OR DOJ > "01-JAN-10"; | |
DELETE FROM CLUB WHERE TYPE= "ANNUAL" OR DOJ > = "01-JAN-10"; |
DELETE Syntax:
DELETE FROM table_name WHERE condition;
Question 1052 |
Based on table "CLUB", which SQL query will help us to know the number of "MONTHLY" members, who joined the club after "01-JAN-07"
SELECT*, COUNT () FROM CLUB WHERE TYPE = "MONTHLY'' AND DOJ > = "01-JAN-07''; | |
SELECT FROM CLUB COUNT (*) WHERE TYPE = "MONTHLY" AND DOJ "01-JAN-07"; | |
SELECT COUNT (*) FROM CLUB WHERE TYPE = "MONTHLY" OR DOJ = "01- JAN-07"; | |
SELECT COUNT (*) FROM CLUB WHERE TYPE = "MONTHLY" AND DOJ > "01-JAN-07"; |
COUNT() returns 0 if there were no matching rows.
Question 1053 |
yes | |
No | |
Auto | |
None |
< frame scrolling="auto|yes|no" >
Attribute Values
Question 1054 |
vileged | |
Running | |
Ready | |
Blocked |
Ready- The process is waiting to be assigned to a processor.
Running- Instructions are being executed.
Waiting- The process is waiting for some event to occur(such as an I/O completion or reception of a signal).
Terminated- The process has completed its execution.
Question 1055 |
Border | |
HEIGHT | |
WIDTH | |
SRC |
Specifies the URL of an application to be embedded.
Question 1056 |
< TR *gt; | |
< TD > | |
< TH > | |
< TABLE > | |
A and D |
Question 1057 |
(i) For every positive integer n, let #n be the product of all primes less than or equal to n. Then, #p + 1 is a prime, for every prime p.
(ii) π is a universal constant with value 22/7.
(iii) No polynomial time algorithm exists that can find the greatest common divisor of two integers given as input in binary.
(iv) Let L≡{x∈{0, 1}∗ | x is the binary encoding of an integer that is divisible by 31}. Then, L is a regular language.
Then which of the following is TRUE?
Only statement (i) is correct. | |
Only statement (ii) is correct. | |
Only statement (iii) is correct. | |
Only statement (iv) is correct. | |
None of the statements are correct. |
Question 1058 |
Which of the following describes the system?
Linear, time-invariant | |
Linear, time-variant | |
Non-linear, time-invariant | |
Non-linear, time-variant | |
Cannot be determined from the information given |
Question 1059 |
a only | |
b only | |
c only | |
d only | |
e only |
Question 1060 |
If K >0, which of the following describes the system?
Stable, causal | |
Stable, non-causal | |
Unstable, non-causal | |
Unstable, causal | |
Cannot be determined from the information given |
Question 1061 |
d = 10 | |
d = 9 | |
d = 8 | |
d < 8 | |
Information is not sufficient |
Question 1062 |
The ℓ2 ball is contained in the ℓ3 ball | |
The ℓ2 ball is contained in the ℓ1 ball | |
The ℓ3ball is contained in the ℓ4 ball | |
The ℓ2ball is contained in the ℓ5 ball | |
The ℓ1ball is contained in the ℓ3 ball |
Question 1063 |
X + 2Y → 3Z
2X + Z → Y.
Let nX, nY , nZ denote the numbers of molecules of chemicals X, Y , Z in the reaction chamber. Then
which of the following is conserved by both reactions?
nX + nY + nZ | |
nX + 7nY + 5nZ | |
2nX + 9nY - 3nZ | |
3nX - 3nY + 13nZ | |
None of the above |
Question 1064 |
The smallest closed figure made by the lines is called a unit triangle. Within every unit triangle, there is a mouse. At every vertex there is a laddoo.
What is the average number of laddoos per mouse?
3 | |
2 | |
1 | |
1/2 | |
1/3 |
Question 1065 |
People will not suffer | |
If the inflation is not regulated, then wages are not raised | |
Prices are not raised | |
If the inflation is not regulated, then the prices are not raised | |
Wages are not raised |
Question 1066 |
NAND and NOR | |
AND and OR | |
AND and XOR | |
OR and XNOR |
Question 1067 |
A,A | |
B,B | |
B,A | |
A,B |
Question 1068 |
Equal(==) | |
Multiplication(*) | |
Scope resolution(::) | |
Logical AND(&&) |
Question 1069 |
They can never be damaged due to a power failure or other malfunctions. | |
They exhibit two stable states, which can be used to represent binary 1 and 0. | |
They are capable of being written into to set the state | |
They are capable of being read to sense the state. |
Question 1070 |
8 | |
16 | |
32 | |
64 |
Question 1071 |
Odd numbers | |
Even numbers | |
Prime implicants | |
Prime numbers |
Question 1072 |
Object-oriented | |
Architecture-neutral | |
Multi-threaded | |
Non-portable |
Question 1073 |
Tree | |
Queue | |
Stack | |
Array |
Question 1074 |
IEF.4 | |
IEB.4 | |
IEB.1 | |
2EB.1 |
Question 1075 |
Volatile | |
Time-variant | |
Subject-oriented | |
Integrated |
Question 1076 |
(i). In JavaScript forms, automatic form validation is enabled using the “required” attribute.
(ii). JavaScript cannot manipulate HTML styles.
(i)-TRUE (ii)-FALSE | |
(i)-FALSE (ii)-TRUE | |
(i)-FALSE (ii)-FALSE | |
(i)-TRUE (ii)-TRUE |
Question 1077 |
Markup | |
Procedural | |
Object-Oriented | |
Assembly |
Question 1078 |
Framing | |
Tweening | |
Betweening | |
Creeping |
Question 1079 |
Association | |
Dependency | |
Extensibility | |
Generalisation |
Question 1080 |
Recursion | |
Procedure | |
Branching | |
Infinite loop |
Question 1081 |
5 | |
3 | |
2 | |
4 |
Question 1082 |
Design database-Centric applications | |
Specify the web page content | |
Define the web page behaviour | |
Specify the web page layout |
Question 1083 |
It does not support transparency | |
It is layer mask | |
It is made of pixels | |
It has crisp edges |
Question 1084 |
Google Chrome | |
Internet Explorer | |
Opera | |
Mozilla Firefox |
Question 1085 |
VBScript | |
PostScript | |
ActionScript | |
JavaScript |
Question 1086 |
Form Object | |
Window Object | |
Document object | |
Location |
Question 1087 |
All class names should start with an upper-case letter | |
It is not mandatory for the name of the program file to exactly match the class name | |
All method names should start with a lower-case letter. | |
Java is a case-sensitive language |
Question 1088 |
8,12,15 | |
10,11,15 | |
8,11,15 | |
8,11,16 |
Question 1089 |
Linked List | |
Tree | |
Array | |
Graph |
Question 1090 |
One | |
Four | |
Three | |
Two |
Question 1091 |
Virtual data independence | |
Hierarchical data independence | |
Physical data independence | |
Logical data independence |
Question 1092 |
It declares a pointer to an integer array of five elements | |
It declares an array of five integer pointers | |
It declares an array of ten integer pointers | |
It declares a pointer to a character array of five elements |
Question 1093 |
Destructors have the same name as their class, preceded by a tilde(~) character | |
Destructors can be virtual, but Constructors cannot | |
Constructors have neither “return” value nor “void” | |
Constructors can be virtual, but Destructors cannot |
Question 1094 |
Picture box | |
Image box | |
text box | |
label |
Question 1095 |
Video objects | |
Graphic objects | |
Text blocks | |
instances |
Question 1096 |
1990 | |
2005 | |
1992 | |
1980 |
Question 1097 |
2NF | |
BCNF | |
1NF | |
3NF |
Question 1098 |
Star | |
Bus | |
Mesh | |
Ring |
Question 1099 |
A member function can be defined as public | |
A member function can be defined inside the class | |
A member function can be defined as private | |
A member function can be defined outside the class |
Question 1100 |
Three | |
Double | |
Four | |
Single |
Question 1101 |
(i). Storage locations in mail memory are addressed directly by the CPU’s instructions
(ii). Due to refreshing action, DRAM memory is called dynamic RAM.
(i)-TRUE (ii)-TRUE | |
(i)-TRUE (ii)-FALSE | |
(i)-FALSE (ii)-TRUE | |
(i)-FALSE (ii)-FALSE |
Question 1102 |
(i). In Adobe Photoshop, alpha channels store selection as grayscale images
(ii). In Adobe flash Player, the guide layer sets the trajectory of a moving object in an animation
(i)-TRUE (ii)-FALSE | |
(i)-FALSE (ii)-TRUE | |
(i)-TRUE (ii)-TRUE | |
(i)-FALSE (ii)-FALSE |
Question 1103 |
0 | |
1 | |
x' | |
x |
Question 1104 |
Medium-term scheduler | |
Long-term Scheduler | |
Short-term scheduler | |
Virtual scheduler |
Question 1105 |
EPROM | |
DRAM | |
ROM | |
SRAM |
Question 1106 |
It is cross-browser independent | |
It is a proprietary languages | |
It is an active scripting languages | |
It is based on Visual Basic |
Question 1107 |
Audacity | |
KineMaster | |
Adobe Audition | |
Sound Forge |
Question 1108 |
2 | |
8 | |
6 | |
5 |
Question 1109 |
(i). When the time allocated in a Round Robin scheduling is very high then it results in a FCFS scheduling
(ii). When the time allocated in a Round Robin scheduling is very low then more time is spent on context scheduling
Only (ii) is true | |
Both (i) and (ii) are true | |
Neither (i) nor (ii) is true | |
Only (i) is true |
Question 1110 |
X+Y’Z | |
Z+XY | |
Y+XZ | |
X+YZ |
Question 1111 |
(i). In floating point arithmetic, addition and subtraction operation are more complex than multiplication and division operations
(ii). A floating-point arithmetic can never produce exponent overflow or exponent underflow
Neither (i) nor (ii) is false | |
Both (i) and (ii) are false | |
Only (i) is false | |
Only (ii) false |
Question 1112 |
Sequential, receiving | |
Combinational, transmitting | |
Sequential, Transmitting | |
Combinational, receiving |
Question 1113 |
Buttons | |
Prompt | |
Title | |
Context |
Question 1114 |
Level-order traversal | |
Inorder traversal | |
Preorder traversal | |
Postorder traversal |
Question 1115 |
Sequential circuit, one | |
Sequential circuit, two | |
Combinational circuit, one | |
Combinational circuit, two |
Question 1116 |
0,1 | |
-1,1 | |
1,0 | |
1,-1 |
Question 1117 |
127 | |
255 | |
256 | |
128 |
Question 1118 |
Internal fragmentation | |
Page fault | |
Segmentation | |
External Fragmentation |
Question 1119 |
Generally, arrays are of fixed size | |
Array elements are stored in contiguous memory locations. | |
All elements of an array are of same data type | |
Array elements can only be accessed sequentially. |
Question 1120 |
Processor | |
I/O device | |
Main memory | |
Operating system |
Question 1121 |
PAN | |
LAN | |
MAN | |
WAN |
Question 1122 |
(i). RJ45 is a type of connector commonly used for connecting components of a computer system(e.g.keyboard)
(ii). A gateway is used to connect two networks together that may work upon different networking models.
(i)- TRUE (ii)-TRUE | |
(i)- TRUE (ii)-FALSE | |
(i)- FALSE (ii)-FALSE | |
(i)- FALSE (ii)-TRUE |
Question 1123 |
Size, 3 | |
Font, 5 | |
Size, 5 | |
Font, 3 |
Question 1124 |
(i) with memory-mapped I/O, a single read line and a single write line are needed on the bus.
(ii) with isolated I/O, the address space for I/O, the space for I/O is isolated from that for memory.
(i)-TRUE (ii)-TRUE | |
(i)-FALSE (ii)-FALSE | |
(i)-FALSE (ii)-TRUE | |
(i)-TRUE (ii)-FALSE |
Question 1125 |
Reasonably accurate | |
Flee from personal biases | |
An economical method of data collection | |
All the above |
Question 1126 |
Information overload in a classroom environment by a teacher will lead to
High level participation | |
Semantic precision | |
Effective impression | |
Delayed feedback
|
Question 1127 |
The national agency for responding to computer security incidents as and when they occur, is
CAT | |
CDAC | |
CCA | |
ICERT |
Question 1128 |
Bishweshwar Nandi | |
Lalita Babar | |
Deepa Karmakar | |
Rajendra Pralhad Shelke |
Question 1129 |
Gravitational Energy | |
Frictional Energy | |
Kinetic Energy | |
Potential Energy |
Question 1130 |
Wood | |
Animal Waste | |
Garbage | |
Coal |
Question 1131 |
Michael Phelps | |
Patrik Sjöberg | |
Usain Bolt | |
Andre De Grasse |
Question 1132 |
Mr. Reddy is qualified for election as a member of the Council of States. | |
Mr. Reddy has completed the age of thirty-five years. | |
Mr. Reddy is the District Commissioner of Guntur, which is an office of profit under the Government of Andhra Pradesh. | |
Mr. Reddy is a citizen of India. |
Question 1133 |
Amrita Pritam | |
Mahasweta Devi | |
Lily Ray | |
Ashapoorna Devi |
Question 1134 |
Rishad Premji | |
Azim H. Premji | |
Vishal Sikka | |
Abidali Z. Neemuchwala |
Question 1135 |
Composite Machine | |
Inclined Plane | |
Lever | |
Wedge |
Question 1136 |
Odisha | |
West Bengal | |
Jharkhand | |
Chhattisgarh |
Question 1137 |
All (i),(ii) and (iii) | |
Both (i) and (ii) | |
Only (i) | |
Both (ii) and (iii) |
Question 1138 |
Meira Kumar | |
S. M. Krishna | |
Sumita Mahajan | |
Mohammad Hamid Ansari |
Question 1139 |
Ajatshatru | |
Dhana Nanda | |
Bimbisara | |
Mahapadma Nanda |
Question 1140 |
India | |
USA | |
Denmark | |
Spain |
Question 1141 |
Mumbai and Pune in Maharashtra | |
Etawah and Agra in Utter Pradesh | |
Hyderabad and Secundrebad in Telengana | |
Bengaluru and Mysuru in Karnataka |
Question 1142 |
Great Britain | |
Taiwan | |
Norway | |
Bhutan |
Question 1143 |
Mulla Daud | |
Abu'l-Fazl ibn Mubarak | |
Malik Muhammad "Jayasi" | |
Amir Khusro |
Question 1144 |
Investment Development Board of India | |
Industrial Development Bank of India | |
Infrastructure and Development Board of India | |
Industrial Divestment Board of India |
Question 1145 |
Manchester by the Sea | |
Lion | |
The Jungle Book | |
LaLa Land |
Question 1146 |
Gobi is a cold desert. | |
Gobi desert is the most expansive arid region in Asia. | |
Most of Gobi's rain is blocked by the Himalayas. | |
Most of Gobi's rain is blocked by the Himalayas. |
Question 1147 |
Random Access Memory | |
Rapid Action Machine | |
Random Application Mapping | |
Rapid Applied Memory |
Question 1148 |
Zaheer Abbas | |
David Richardson | |
Shasank Manohar | |
N. Srinivasan |
Question 1149 |
Lord Dalhousie | |
Lord Bentick | |
Lord Canning | |
Lord Mountbatten |
Question 1150 |
Justice T. S. Thakur | |
Justice C. S. Karnan | |
Justice H. L. Dattu | |
Justice Jagdish Singh Khehar |
Question 1151 |
Stanislas Wawrinka | |
Novak Djokovic | |
Roger Federer | |
Rafael Nadal |
Question 1152 |
Speaker of Lok Sabha | |
President of India | |
Prime Minister of India | |
Vice President of India |
Question 1153 |
Rs. 1500 | |
Rs. 1200 | |
Rs. 1250 | |
Rs 1205 |
Question 1154 |
75 minutes | |
70 minutes | |
72 minutes | |
71 minutes |
Question 1155 |
x = -1 | |
x=0 | |
x=1 | |
x=-2 |
Question 1156 |
2.6 hrs | |
2.75 hrs | |
2.25 hrs | |
2.5 hrs |
Question 1157 |
196 meters | |
170 meters | |
125 meters | |
175 meters |
Question 1158 |
-38 | |
38 | |
-18 | |
18 |
Question 1159 |
Rs. 4401 | |
Rs. 4410 | |
Rs. 4411 | |
Rs. 4440 |
Question 1160 |
3 | |
513 | |
500 | |
6 |
Question 1161 |
$3.5
| |
$3.75 | |
$3.25 | |
$4 |
Question 1162 |
-15x2-2x-1 = 0 | |
15x2-2x-1 = 0 | |
15x2-2x+1 = 0
| |
15x2+2x-1 = 0 |
Question 1163 |
1 cm | |
3 cm | |
2.5 cm | |
2 cm |
Question 1164 |
500 cm2 | |
480 cm2 | |
450 cm2 | |
475 cm2 |
Question 1165 |
10 | |
25 | |
20 | |
15 |
Question 1166 |
12 | |
10 | |
6 | |
15 |
Question 1167 |
1 | |
3 | |
4 | |
2 |
Question 1168 |
9 (1/12) | |
9 (1/13) | |
9 (1/14) | |
9 (1/11) |
Question 1169 |
58 :19 | |
17 :19 | |
23 :7 | |
17 :21 |
Question 1170 |
-5 | |
-9 | |
-8 | |
-10 |
Question 1171 |
23 | |
22 | |
27 | |
26 |
Question 1172 |
350 Men | |
360 Men | |
250 Men | |
310 Men |
Question 1173 |
6 | |
7 | |
9 | |
8 |
Question 1174 |
Rs. 546 | |
Rs. 564 | |
Rs. 560 | |
Rs. 654 |
Question 1175 |
18 days | |
20 days
| |
17 days
| |
15 days
|
Question 1176 |
20%
| |
21%
| |
25%
| |
22%
|
Question 1177 |
8 | |
9 | |
10 | |
12 |
Question 1178 |
GHST | |
EVFU | |
KPLO | |
IRJQ |
Question 1179 |
Cowardice | |
Bravery | |
Fear | |
Valour |
Question 1180 |
PRWHUK | |
PRWKHU | |
OPUIFS | |
REHTOM |
Question 1181 |
All tables are chairs. All cupboards are tables. So, all chairs are cupboards. | |
All J's are K's. All K's are M's. So, all M's are J's. | |
All apples are red. All bananas ore apples. So, all bananas are red.
| |
All locks are keys. Some ball are keys. So, all locks are balls. |
Question 1182 |
How many triangles are there in the following figure?
20 | |
28 | |
24 | |
12 |
Question 1183 |
107 | |
102 | |
104 | |
109 |
Question 1184 |
46-10 | |
42-33 | |
25 — 43 | |
12—91 |
Question 1185 |
42 | |
43 | |
41 | |
45 |
Question 1186 |
Question 1187 |
Brother | |
Cousin | |
Son-in-law | |
Son |
Question 1188 |
40 years
| |
39 years | |
41 years | |
42 years |
Question 1189 |
72 | |
65 | |
62 | |
69 |
Question 1190 |
1 | |
4 | |
6 | |
5 |
Question 1191 |
26 | |
20 | |
16 | |
14 |
Question 1192 |
29 | |
31 | |
30 | |
32 |
Question 1193 |
GRANT | |
REASON | |
ORGAN | |
STRONG |
Question 1194 |
n p m p n | |
m p n p n | |
m n p n p | |
n m n p p |
Question 1195 |
35 Metres, East | |
25 Metres, East
| |
35 Metres, West | |
25 Metres, North |
Question 1196 |
Question 1197 |
C | |
F | |
D | |
A |
Question 1198 |
Gyan | |
Malvika | |
Alok | |
Rashmi |
Question 1199 |
Question 1200 |
Yard | |
Tonnes | |
Litre | |
Kilometer |
Question 1201 |
208 | |
105 | |
147 | |
176 |
Question 1202 |
EVJQ | |
RIIP | |
IRRD | |
EROP |
Question 1203 |
Only while | |
Produce | |
From | |
Can be |
Question 1204 |
Agree | |
Admire | |
Please | |
Criticize |
Question 1205 |
Valued | |
Worthless | |
Loved | |
Costly |
Question 1206 |
favaur | |
fauna | |
faucet | |
fault |
Question 1207 |
pulled me through | |
pulled me up | |
pulled me out | |
pulled me off |
Question 1208 |
himself | |
oneself | |
myself | |
itself |
Question 1209 |
let down | |
let off | |
let out | |
let aside |
Question 1210 |
at the last moment | |
in difficult times | |
under all circumstances | |
during summer time |
Question 1211 |
will intend | |
intended | |
intending | |
intend |
Question 1212 |
Excel | |
Excess | |
Access | |
Expell |
Question 1213 |
Weak | |
Long | |
Crooked | |
Short |
Question 1214 |
about | |
up | |
no word required | |
along |
Question 1215 |
Deceive | |
Hide | |
Free | |
Detest |
Question 1216 |
Calm | |
Silent | |
Active | |
Tired |
Question 1217 |
Detest | |
Abandon | |
Reject | |
Hope |
Question 1218 |
Came | |
When | |
Began to | |
with |
Question 1219 |
Moltan | |
Molecule | |
Moist | |
molest |
Question 1220 |
Some | |
A great deal | |
Many | |
Any |
Question 1221 |
One of the | |
This | |
That was | |
at |
Question 1222 |
Has | |
A Variety | |
Is found | |
if |
Question 1223 |
It is a region surrounded by mountains and hills. | |
It is sandy where no rain falls and no vegetation grow. | |
It has vast land which is used for cultivation of flowers | |
A variety of animals and plants live there. |
Question 1224 |
{ababc,abcab, abc2, cabab, cabc, c2ab, c3} | |
{ababab,ababc, abcab, abc2, cabab, c2ab, c3} | |
{ababab,ababc, abcab, abc2abab, cabab, cabc, c2ab, c3}
| |
{ababab,ababc, abcab, abc2, cabab, cabc, c2ab, c3} |
Question 1225 |
Ta=Tn+ n/r | |
Tn=Ta+ n/r | |
Ta=Tn+ r/n | |
Tn=Ta+ r/n |
Question 1226 |
State TRUE or FALSE for the following.
(i) A sine wave with a phase of 180 starts at time 0 with a zero amplitude. The amplitude is decreasing
(ii) If a signal changes instantaneously, its frequency is zero.
(iii) In bipolar encoding, we use three voltage levels: positive, negative and zero.
(iv) Infrared signals can be used for short can be used for short-range communication in a closed area using ground propagation.
(i) TRUE, (ii) FALSE, (iii) TRUE, (iv) FALSE | |
(i) TRUE, (ii) TRUE, (iii) TRUE, (iv) FALSE | |
(i) FALSE, (ii) TRUE, (iii) FALSE, (iv) FALSE | |
(i) TRUE, (ii) TRUE, (iii) FALSE, (iv) FALSE |
Question 1227 |
Central Asia | |
South America | |
North America | |
Central Australia |
Question 1228 |
It has a source of water that supports vegetation. | |
It is surrounded by green hills and mountains. | |
The sand here is conductive for the vegetation. | |
It is in the middle of a vast desert. |
Question 1229 |
Have thick stems and few leaves | |
Require less water than animals | |
Have adapted to survive in hot and dry climate | |
Develop especially long roots |
Question 1230 |
The Arabian Peninsula between the Persian Gulf and Caspain Sea is entirely desert. | |
In a desert region there is little moisture and poor soil. | |
Camels can retain water for a long time because they do not sweat. | |
About ⅛ area of the earth is covered by deserts. |
Question 1231 |
“w” | |
“w+” | |
“a+” | |
“r+” |
A+ : Open a text file in append mode for reading or updating at the end of the file. The fopen() function creates the file if it does not exist.
W : Create a text file for writing. If the given file exists, its contents are destroyed unless it is a logical file.
A : Open a text file in append mode for writing at the end of the file. The fopen() function creates the file if it does not exist and is not a logical file.
R+ : Open a text file for both reading and writing. The file must exist.
Question 1232 |
Static binding | |
referential transparency | |
orthogonality | |
locality of reference |
Question 1233 |
r-value | |
l-value | |
both r-value and l-value | |
either r-value or l-value |
Question 1234 |
Functional language
| |
Object oriented language
| |
Logic programming Language
| |
Scripting language |
Question 1235 |
PR | |
PRS | |
RSP | |
PQ |
car(PQRS) = P
cdr(PQRS) = QRS
car(cdr(s)) = car(QRS) = Q
concat(P,Q) = PQ
Question 1236 |
$x=$x+20 | |
let x =$x+20 | |
let $x=$x+20 | |
$x+=20 |
Also if we want to add some values which is not constant literals then we will enter it as
x=$x + $y
where y is variable holding some value.
Question 1237 |
Trapdoor | |
One-Time Password | |
Trojan Horse | |
Anti-virus software |
Question 1238 |
Failure probability
| |
Failure density function | |
Mean time to failure | |
Hazard rate |
Question 1239 |
Local depth | |
Global depth | |
Over flow bucket
| |
Buddy bucket |
Question 1240 |
Using cookies | |
Using hidden form fields | |
Using URL rewriting | |
All the given options |
Question 1241 |
When mouse is no longer over an element | |
When mouse is over an element | |
When mouse is hovered | |
None of the given options |
Question 1242 |
Stateful server | |
Stateless server
| |
One whose architecture uses virtual file system(VSF) layer | |
Stateless server and One whose architecture uses virtual file system(VFS) layer |
Question 1243 |
It keeps state information pertaining to a client request between such requests | |
It does not keep state information pertaining to a client request between such requests | |
Client binding to server is not required before processing a client request | |
None of the given options |
Question 1244 |
Physical identity of the resources is not directly embedded into client’s code | |
Users can not tell where resources are located | |
Users can tell where resources are located | |
Physical identity of the resources is not directly embedded into client’s code and Users cannot tell where resources are located |