Question
Given below is a sentence with one blank, following
which are given four options to choose, to fill the blank. Choose the correct option that can fill the blank to form a meaningful sentence. If you do not find any correct options choose option e ‘None of the above as your answer’. The term was in use before the rise of the party as a _________ and derogatory word for a backward peasant, an awkward and clumsy person.Solution
We need to fit in a word that acts as an adjective to qualify the noun word. Hence colloquial is correct as it means a language or a word which is informal and used in daily language or is causal.
In RDBMS, what is the purpose of the Data Dictionary?
What is the primary advantage of using shared memory for IPC?
What is the output of the following code?
print(min(max(False,-30,-4), 12,7))
In the _____ traversal we process all of the vertex descendant before we move to an adjacent vertex.
The Master-Slave JK flip-flop overcomes the problem of race conditions by:
In the context of ADTs, what does "encapsulation" refer to?
The boolean function f(x, y) = x OR (NOT(y)) is equivalent to which of the following boolean expressions?
In the context of IPC, what does FIFO stand for?
Below code will give what result for f(3)
f(int x)
{
If(x
Return;
f(x-1);
printf(“%d”, x);
f(n-1);
}
Which command is used to append the contents of one file to another file in a Unix/Linux system?