
As the total distance between A and G is equal to E and D i.e. 20 km. So BD = 20 – (10 + 1) = 9 Km.
Hence, the distance between B and D is 9 km

As the total distance between A and G is equal to E and D i.e. 20 km. So BD = 20 – (10 + 1) = 9 Km.
Hence, the distance between B and D is 9 km
No discussions yet. Be the first to start!
You must be logged in to participate in the discussion.
login Login to DiscussAmmeter is an instrument used to measure Current.
Similarly, Hygrometer is an instrument used to measure Humidity
Hence, ‘Humidity’ is for ‘Hygrometer’Total number of people = 45
Position of A from the behind = 26th
Position of A from the front = Total number of people – A’s position from the behind + 1
= 45 – 26 + 1
= 20th
Hence, 20th is the correct answer.Let the three consecutive numbers be x, x + 1, x + 2
⇒ x + (x + 1) + (x + 2) = 345
⇒ 3x + 3 = 345
⇒ 3x = 345 – 3 = 342
\(\Rightarrow x = \frac{{342}}{3} = 114\)
So the three consecutive numbers are 114, 115 and 116. And the middle number is 115.
Hence, ‘115’ is the correct answer.A constructor is a member function of a class that initializes objects of a class. In C++, Constructor is automatically called when an object (instance of a class) creates. It is a special member function of the class.
Syntax
class_name(parameter1, parameter2, ...)
{
// constructor Definition
}
Default Constructor
It is the constructor that doesn’t take any argument. It has no parameters.
Parameterized Constructors
It is possible to pass arguments to constructors. Typically, these arguments help initialize an object when it is created.
Copy Constructor
A copy constructor is a member function that initializes an object using another object of the same class.
There are five friends – A, C, F, U and Z having different heights, F is shorter than A who is shorter than Z. C is shorter than F but not as shorter as U. Who is the second tallest among them?
Five friends: A, C, F, U and Z.
1) F is shorter than A who is shorter than Z.
F < A < Z
2) C is shorter than F but not as shorter as U.
This means U is shorter than C.
U < C < F
Combining 1) and 2), we get:
U < C < F < A < Z
Hence, A is the second tallest among them.