Which letter will replace the question mark (?) in the following series?
D, J, ?, S, V, X.Pattern followed is,
D + 6 = J
J + 5 = O
O + 4 = S
S + 3 = V
V + 2 = X
Hence, “O” is the correct answer.
Which letter will replace the question mark (?) in the following series?
D, J, ?, S, V, X.Pattern followed is,
D + 6 = J
J + 5 = O
O + 4 = S
S + 3 = V
V + 2 = X
Hence, “O” 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 Discuss"What is the deliberate use of power to inflict any kind of mental or physical injury against oneself, any person, group, or community?"
The correct answer is Violence.
Key Points
Additional Information
J.K Rowling – She is a British writer.
Chetan Bhagat – He is an Indian writer.
Premchand – He was an Indian writer.
R.D Burman – He was an Indian music director.
Hence, R.D Burman is the correct answer.If a mirror is placed on the line AB, then which of the answer figures is the correct image of the given figure?
Problem Figure
The image is flipped horizontally.
Hence, option 4 is the mirror image of the given image.
Given word: PRIED
Meaningful 5 letter words that can be formed are: REDIP, PRIDE and RIPED.
Hence, three is the correct answer.What is the output of the below given code?
int y = 9;
y += y+3;
printf("%d",y);+ = → is an assignment operator
y+ = y+3
y = y + (y + 3)
y = 9 + (9 + 3)
y = 21
Note:
Assignment operator associativity is right to left