How many seats are there in the row?
X and N are immediate neighbors of each other. Only two persons sit between X and R. R sits fifth to the right of Z, who is not an immediate neighbor of N. S sits third to the left of Z and is third from one of the extreme ends of the line. V sits second to the right of K and is an immediate neighbor of Z. M sits exactly between R and V. Here Case 1 gets eliminated. More than three persons sit between M and N, who sits third to the left of Q. There are no seats to the right of Q. Here, Case 3 gets eliminated and hence the final arrangement is,
Which component in the CPU is responsible for fetching instructions from memory and incrementing the program counter?
Specialised program(s) designed to allow particular input or output device(s) to communicate with the rest of the computer system is called _______.
Unique Logical address is assigned to each host in which layer
What is the purpose of a comparator in analog circuits?
Defines the number of entities in one entity set, which can be associated with the number of entities of other set via relationship set.
calculate the complexity of the below recursive code
Int f(int n)
{
If(n
return 1;
return f(n/2)+f(n/2);
}
What is a "token" in lexical analysis?
What is the main characteristic of a greedy algorithm?
What will be the output of the code
int main(){
int x= 10;
int y=10;
int s=-(-x-y)
cout<
return 0;
}
Which layer of the OSI model is responsible for addressing and routing data across multiple networks?