Questions

Q:

90 D in RA?

Answer

90 D in RA means 90 Degrees in Right Angle. It is a logic question which is to be eloborated.


 


Some more of its kind are:


1. 52 W in a Y     -    52 Weeks in a Year


2. 7 C in a R        -    7 Colours in a Rainbow


3. 9 P in SS


4. 5 C in an OF


5. 12 S of the Z

Report Error

View answer Workspace Report Error Discuss

1 4091
Q:

Who among the following is set to become the youngest-ever "Messenger of Peace," for 'United Nations' ?

A) Rashi Anand B) Shikha Patra
C) Bedadyuti Jha D) Malala Yousafzai
 
Answer & Explanation Answer: D) Malala Yousafzai

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Famous Personalities
Exam Prep: Bank Exams , CAT
Job Role: Bank Clerk , Bank PO

4 4090
Q:

Who has become the first woman Chief Justice of Delhi High Court?

A) Justice R. Banumathi B) Justice K.K.Usha
C) Justice G.Rohini D) Justice T. Meena Kumari
 
Answer & Explanation Answer: C) Justice G.Rohini

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: General Awareness

4 4088
Q:

In Which Indian state is the world's highest cricket ground located ?

A) Himachal Pradesh B) Uttarakhand
C) West Bengal D) Jammu Kashmir
 
Answer & Explanation Answer: A) Himachal Pradesh

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Books and Authors

11 4087
Q:

Round as a Dishpan, Deep as a Tub and Still the Oceans could not fill it up. What is it?

A) Bath Tub B) A plug hole
C) Sieve D) None
 
Answer & Explanation Answer: C) Sieve

Explanation:

Sieve.

A utensil consisting of a wire or plastic mesh held in a frame, used for straining solids from liquids.

Report Error

View Answer Report Error Discuss

Filed Under: Word Puzzles
Exam Prep: AIEEE , Bank Exams , CAT
Job Role: Analyst , Bank Clerk , Bank PO

9 4086
Q:

How would you use qsort() function to sort an array of structures?

Answer

#include "string.h"


#include "stdlib.h"


struct stud


{


       int rollno;


       int marks;


       char name[30];


};


int sort_m (struct stud *, struct stud *);


int sort_name (struct stud *, struct stud *);


int sort_marks (struct stud *, struct stud *);


 


main()


{


static struct stud ss[] = {


                                            { 15, 96, "Akshay" },


                                            { 2, 97, "Madhuri" },


                                            { 8, 85, "Aishvarya" },


                                            { 10, 80, "Sushmita" }


                                   };


int x,w;


clrscr();


w = sizeof (struct stud);


 


printf ('\nIn order of roll numbers:");


qsort (ss, 4, w, sort_rn);


for(x=0; x<4;x++)


     printf ("\n%d%s%d", ss[x].rollno, ss[x].name,ss[x].marks);


 


printf("\n\nIn order of names:");


qsort(ss, 4, sort_name);


 


for (x=0; x<4;x++)


      printf("\n%d%s%d",ss[x].rollno, ss[x].name,ss[x].marks);


printf("\n\nIn order of marks:");


qsort(ss,4,w,sort_marks);


 


for (x=0;x<4;x++)


      printf ("\n%d%s%d",ss[x].rollno,ss[x].name,ss[x].marks);


}


int sort_rn (struct stud *t1, struct stud *t2)


{


     return (t1->rollno-t2->rollno);


}


 


int sort_name (struct stud *t1, struct stud *t2)


{


     return (strcmp(t1->name,t2->name));


}


int sort_marks (struct stud *t1, struct stud *t2)


{


     return (t2->marks-t1->marks);


}


 


 


 

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

0 4085
Q:

Which river has no mention in Rigaveda

A) Sindhu B) Saraswati
C) Yamuna D) Periyar
 
Answer & Explanation Answer: D) Periyar

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian History

2 4085
Q:

I act like a cat I look like a cat Yet I am not a cat. What am I?

Answer

A Kitten.

Report Error

View answer Workspace Report Error Discuss

Subject: Word Puzzles Exam Prep: Bank Exams

12 4083