Questions

Q:

Govind Ballabh Pant, was the first Chief Minister of which state?

 

A) Goa B) Himachal Pradesh
C) Uttar Pradesh D) Gujarat
 
Answer & Explanation Answer: C) Uttar Pradesh

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Famous Personalities
Exam Prep: Bank Exams

0 3885
Q:

Which of the following pair is CORRECT?


I. Summer Olympics 2020 - Tokyo
II. Summer Olympics 2016 - Rio de Janeiro
III. Summer Olympics 2012 - London

A) Only I and II B) Only I and III
C) Only II and III D) All are correct
 
Answer & Explanation Answer: D) All are correct

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Sports
Exam Prep: Bank Exams

2 3884
Q:

Anti lock braking systems can significantly

A) Improve your breaking stability B) Impede your break instability
C) Impede your breaking power D) Improve your breaking power
 
Answer & Explanation Answer: A) Improve your breaking stability

Explanation:

An anti-lock braking system (ABS) is a safety anti-skid braking system used on aircraft and on land vehicles , such as cars, motorcycles, trucks and buses.

 

ABS is only on the front wheels and it can improve your ability and the stability of your car by keeping the front wheels from locking under severe braking it will allow the wheels to continue to roll so the car can stop straight and stop as safe and as soon as possible

Report Error

View Answer Report Error Discuss

Filed Under: General Awareness
Exam Prep: AIEEE , Bank Exams , GATE
Job Role: Analyst , Bank Clerk , Bank PO

3 3884
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 3883
Q:

Who invented logarithms?

A) Mandeleef B) Shockley
C) Amundson D) John Napier
 
Answer & Explanation Answer: D) John Napier

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Inventions

2 3882
Q:

India has ranked _____ rank in World Bank's 'Ease of doing business' index.

A) 100 B) 101
C) 99 D) 102
 
Answer & Explanation Answer: A) 100

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian Economy
Exam Prep: Bank Exams , CAT
Job Role: Bank Clerk , Bank PO

14 3882
Q:

When the European union formed nations began to?

A) eliminate their home governments. B) abolish many geographic boundaries.
C) create one unified education system. D) cooperate on law enforcement.
 
Answer & Explanation Answer: D) cooperate on law enforcement.

Explanation:

When the European union formed nations began to cooperate on law enforcement. The European Union is set up with the aim of ending the frequent and bloody wars between neighbours, which culminated in the Second World War.

 

As of 1950, the European Coal and Steel Community begins to unite European countries economically and politically in order to secure lasting peace. The six founding countries are Belgium, France, Germany, Italy, Luxembourg and the Netherlands. The 1950s are dominated by a cold war between east and west.

 

The historical roots of the European Union lie in the Second World War. Europeans are determined to prevent such killing and destruction from ever happening again.

Report Error

View Answer Report Error Discuss

Filed Under: World History
Exam Prep: AIEEE , Bank Exams , CAT , GATE
Job Role: Analyst , Bank Clerk , Bank PO

0 3881
Q:

Taj Hotels has entered into a marketing alliance with The Shilla Hotels & Resorts of Korea. Shilla Hotels is affiliated to which industrial group?

A) Hyundai B) LG
C) Samsung D) Daewoo
 
Answer & Explanation Answer: C) Samsung

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Business Awareness

11 3880