Questions

Q:

What is the capital of Hungary?

A) Budapest B) Reykjavik
C) Santo Domingo D) None
 
Answer & Explanation Answer: A) Budapest

Explanation:

Budapest is the capital of Hungary

Report Error

View Answer Report Error Discuss

Filed Under: Country Capitals

13 4140
Q:

Which will be the new sponsor of the Indian cricket team from April 2017 ?

A) Paytm B) Star
C) Oppo D) Reliance-Jio
 
Answer & Explanation Answer: C) Oppo

Explanation:

OPPO, the mobile manufacturing brand has dealt with Indian Cricket Team for its sponsorship for 05 years. OPPO has paid Rs. 1079 crore for this deal. The BCCI has signed a five-year contract with OPPO and this contract will begin from April.

Report Error

View Answer Report Error Discuss

Filed Under: Sports
Exam Prep: Bank Exams , CAT
Job Role: Bank Clerk

7 4140
Q:

Which State Government has approved one per cent reservation for orphans in government jobs under general category?

A) Haryana B) Maharashtra
C) Madhya Pradesh D) Uttar Pradesh
 
Answer & Explanation Answer: B) Maharashtra

Explanation:
Report Error

View Answer Report Error Discuss

10 4139
Q:

The pair of spinal nerves in main are

A) 30 B) 31
C) 32 D) 33
 
Answer & Explanation Answer: B) 31

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Biology

12 4139
Q:

Be the embodiment or perfect example of

A) Signify B) Personify
C) Characterise D) Idol
 
Answer & Explanation Answer: B) Personify

Explanation:

One word substitution for Be the embodiment or perfect example of is Personify. Personify means represent or embody (a quality, concept, etc.) in a physical form.

 

Characterise: describe the distinctive nature or features of.

Idol: an image or representation of a god used as an object of worship.

Signify: be an indication of.

Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: AIEEE , Bank Exams , CAT , GRE , TOEFL
Job Role: Analyst , Bank Clerk , Bank PO

1 4138
Q:

What has a mouth but never smiles?

Answer

A bottle has a mouth from which we used to drink water or any juice. But it cannot smile.

Report Error

View answer Workspace Report Error Discuss

Subject: Word Puzzles Exam Prep: TOEFL , GRE , GATE , CAT , Bank Exams , AIEEE
Job Role: Bank PO , Bank Clerk , Analyst

13 4138
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 4137
Q:

Seagate is manufacturer of

A) harddisk B) earth moving equipment
C) picture tube D) banking software
 
Answer & Explanation Answer: A) harddisk

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Business Awareness

14 4137