In the following question, select the odd number from the given alternatives.
Moon : Satellite : : Earth : ?
As, ‘moon’ is a ‘satellite’ similarly, ‘earth’ is a ‘planet’.
In the following question, select the odd number from the given alternatives.
Moon : Satellite : : Earth : ?
As, ‘moon’ is a ‘satellite’ similarly, ‘earth’ is a ‘planet’.
No discussions yet. Be the first to start!
You must be logged in to participate in the discussion.
login Login to DiscussCarefully observe the below given queue
|
REAR |
22 |
57 |
96 |
68 |
19 |
15 |
28 |
FRONT |
How many dequeue operations needed to delete the largest element from the queue?
Deletion takes place at the FRONT of the queue.
96 is the largest element in the given queue.
1st deque operation:
|
REAR |
22 |
57 |
96 |
68 |
19 |
15 |
FRONT |
28 is deleted
2nd deque operation:
|
REAR |
22 |
57 |
96 |
68 |
19 |
FRONT |
15 is deleted
3rd operation:
|
REAR |
22 |
57 |
96 |
68 |
FRONT |
19 is deleted
4th operation:
|
REAR |
22 |
57 |
96 |
FRONT |
68 is deleted
5th operation:
|
REAR |
22 |
57 |
FRONT |
96 is deleted
Therefore, the number of deque operation needed to delete 96 is 5.The correct answer is Dot Matrix.
Important Points
Key Points
Additional Information
1. Some students can either be mischievous or Intelligent.
2. Some Intelligent person can either be mischievous or students.
Thus there are some relation between all the three i.e students, intelligent and mischievous
Now, according to this, the most suitable Venn diagram is-

Hence, Option (4) is correct.
Additional InformationMischievous: A person likes to have fun by playing harmless tricks on people or doing things they are not supposed to do.
The correct answer is Scanner.
Key Points
Additional Information
Concept:
Meaning of i++:
First, we read the i than after reading the value of i we are going to increment i this is nothing but post-increment.
Meaning of ++i:
First, we increment i than we read the value of I, this is nothing but pre-increment:
Examine code:
int main( )
{
int i = 10;
int C = i++; // assign i to C therefore C = 10 after assigning increment i by 1
printf("i = %d, C = %d", i, C);
return 0;
}
Output:
i = 11, C = 10
Therefore value of i to be assigned to C, and then I to be incremented by 1