If the mirror is placed to the right of the figure, what will be the correct mirror image of the given figure?

The mirror image are given bellow

Hence, option 2 is the correct answer.
If the mirror is placed to the right of the figure, what will be the correct mirror image of the given figure?

The mirror image are given bellow

Hence, option 2 is the correct answer.
No discussions yet. Be the first to start!
You must be logged in to participate in the discussion.
login Login to DiscussIf ‘P’ is replaced by ‘+’, ‘Q’ is replaced by ‘-’, ‘R’ is replaced by ‘×’ and ‘S’ is replaced by ‘÷’, find the value of the following expression.
70S7P21R2Q15
Given,
| Code | P | Q | R | S |
| Symbol | + | - | × | ÷ |
Given Expression: 70S7P21R2Q15
According to question :
=70 ÷ 7 + 21 × 2 – 15
Using BODMAS rule,
=10 + 21 × 2 – 15
= 10 + 42 – 15
= 52 – 15
= 37
Hence, value of the given expression is ‘37’.
Concept:
Classes in java are the collection of objects which has some similar properties. A class in java contains fields, methods, constructors, blocks, interfaces.
Explanation:
Everything is associated with classes and objects. An object is an instance of the class which has some state and behavior.
An object class(java.lang.object) is the parent class of all the java classes. It can be used when we do not know about the type of the object. By having the object as the super class , without knowing the type we can pass around objects using the object declaration.
A group of sheep referred to as a flock. Similarly, a group of fish is called shoal.
Hence, Fish is correct answer.
Key Points Doubly linked list:
A doubly linked list is a linked data structure that consists of a set of sequentially linked records called nodes. Each node contains three fields: two link fields and one data field.
Binary tree:
A binary tree is a tree data structure in which each node has at most two children, which are referred to as the left child and the right child.
Linked list:
A linked list is a linear collection of data elements whose order is not given by their physical placement in memory. Instead, each element points to the next. It is a data structure consisting of a collection of nodes that together represent a sequence.
Queue:
A queue is a collection of entities that are maintained in a sequence and can be modified by the addition of entities at one end of the sequence and the removal of entities from the other end of the sequence.
A Doubly linked list is the efficient data structure to insert/delete a number in a stored set of numbers.
| Data Structure | Worst-case time complexity | ||
| Search | Insert | Delete | |
| Doubly linked list | O(n) | O(1) | O(1) |
| linked list | O(n) | O(1) | O(n) |
| Binary tree | O(n) | O(n) | O(n) |
| Queue | O(n) | O(1) | O(1) |
Hence the correct answer is the Doubly linked list.
The correct answer is Projector.
Important Points
Key Points
Additional Information