Searching for "right"

Q:

Which one among the following pairs of Articles relating to the Fundamental Rights can not be suspended during the enforcemet of emergency under Article 359 of the Indian Constitution?

A) Article 14 and 15 B) Article 16 and 17
C) Article 20 and 21 D) Article 24 and 25
 
Answer & Explanation Answer: C) Article 20 and 21

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian Politics

Q:

Improve the following code using typedef.

struct node

{

      int data1;  float data2;

       struct node *left;

       struct node *right;

};

struct node *ptr;

ptr = (struct node *) malloc (sizeof (struct node) ); 

Answer

typedef struct node * treeptr


typedef struct node


{


         int data1;


         float data2;


         treeptr *left;


         treeptr *right;


}treenode;


treeptr ptr;


ptr = ( treeptr ) malloc ( sizeof ( treenode ) );

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

Q:

Iam facing south. I turn right and walk 20 m. Then I turn right again and walk 10m. Then I turn left and walk 10m and then turning right walk 20m. Then I turn right again and walk 60m. In which direction am I from the starting point?

A) North B) North-West
C) North-East D) East
 
Answer & Explanation Answer: C) North-East

Explanation:

The movements of the person are from A to F, as shown in Fig. Clearly, the final position is F which is to the North-east of the starting point A

Report Error

View Answer Report Error Discuss

Filed Under: Direction Sense Test

Q:

If the digits in the number 25673948 are arranged in ascending order from left to right, what will be the sum of the digits which are fourth from the right and third from the left in the new arrangement?

A) 10 B) 9
C) 8 D) 6
 
Answer & Explanation Answer: A) 10

Explanation:

Given Number :      2 5 6 7 3 9 4 8

 

Ascending order :  2 3 4 5 6 7 8 9

 

Specified letters are 6 and 4 respectively.

 

Hence, required sum = (4 + 6 = 10)

Report Error

View Answer Report Error Discuss

Q:

The positions of the first and sixth digits in the number 5109238674 are interchanged. Similarly the positions of the second and the seventh digits are interchanged and so on . which of the following will be the third digit from the right end after the after the rearrangement?

A) 9 B) 0
C) 6 D) 3
 
Answer & Explanation Answer: B) 0

Explanation:

There are 10 digits. Now, third digit from the right means (10-3+1 = ) 8th digit from the left.  But, from the question , third  and eighth digits are interchanged. Hence, the required digit is the third digit of the given number, ie 0.

Report Error

View Answer Report Error Discuss

Q:

In the number 76534218 each digit is replaced next digit, ie '1' is replaced by '2' , '2' is replaced by '3' and so on and then the digits are arranged in ascending order from left to right, which digit will be fifth from the left end?

A) 6 B) 5
C) 7 D) 4
 
Answer & Explanation Answer: A) 6

Explanation:

Given Number :  7 6 5 3 4 2 1 8 

New Number :    8 7  6 4 5 3 2 9

Ascending Order :  2 3 4 5 6 7 8 9 

Fifth digit in the above ascending order arrangement is '6' . Hence option(1) is the correct answer.

Report Error

View Answer Report Error Discuss

Q:

Which of the following is fifth to the right of the twelth digit from the right end of the below arrangement?

1 8 5 9 4 7 1 2 5 8 3 6 5 9 2 7 6 4 5 2 9 2 6 4 1 2 3 5 1 4 2 8 3

A) 3 B) 1
C) 2 D) 7
 
Answer & Explanation Answer: A) 3

Explanation:

5th to the right of 12th digit from the right end means (12 - 5 = ) 7th digit from the right.ie 3.

Report Error

View Answer Report Error Discuss

Q:

In a row of thirty boys, R is fourth from the right end and W is tenth from the left end . How many boys are there between R and W?

A) 15 B) 16
C) 17 D) can't be determined
 
Answer & Explanation Answer: B) 16

Explanation:

W = 10th from the left

 

R = 4th from the right = (30 - 4 + 1= ) 27th from left

 

 No of boys between R and W = (27 - 10) - 1 = 16

Report Error

View Answer Report Error Discuss