Questions

Q:

Where and when the first session of Indian National Congress was held ?

A) Delhi, 1890 B) Mumbai, 1885
C) Madras, 1887 D) Kolkata, 1889
 
Answer & Explanation Answer: B) Mumbai, 1885

Explanation:

The first session of Indian National Congress was held from 28–31 December 1885, in Mumbai and was attended by 72 delegates. Womesh Chandra Bonnerjee was the first president of the Indian National Congress (INC), a voice of Indian opinion to the British government.

Report Error

View Answer Report Error Discuss

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

12 4224
Q:

What time of year do squirrels build nests?

A) Winter B) Summer
C) Rainy D) Monsoon
 
Answer & Explanation Answer: B) Summer

Explanation:

Squirrels typically build leaf nests in the summer by weaving together small branches they've gnawed off of trees. These nests are lined with grass, moss, leaves and pine needles. Both male and female gray squirrels of all ages participate in building dens.
 

Report Error

View Answer Report Error Discuss

Filed Under: Animals and Birds
Exam Prep: AIEEE , Bank Exams
Job Role: Analyst , Bank Clerk , Bank PO

12 4224
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 4224
Q:

Not including the sun, the closest stars to earth are

A) 4300 light-years away B) 430 light-years away
C) 43 light-years away D) 4.3 light-years away
 
Answer & Explanation Answer: D) 4.3 light-years away

Explanation:

The nearest stars to Earth are in the Alpha Centauri triple-star system, about 4.37 light-years away. One of these stars, Proxima Centauri, is slightly closer, at 4.26 light-years.

 

Of all the stars closer than 15 light-years, only two are spectral type G, similar to our sun: Alpha Centauri A and Tau Ceti. The majority are M-type red dwarf stars.

 

Only nine of the stars in this area is bright enough to be seen by the naked human eye from Earth. These brightest stars include Alpha Centauri A and B, Sirius A, Epsilon Eridani, Procyon, 61 Cygni A and B, Epsilon Indi A and Tau Ceti.

Report Error

View Answer Report Error Discuss

2 4223
Q:

The fireworks exhibition had awesome

A) affects B) defects
C) effects D) show
 
Answer & Explanation Answer: C) effects

Explanation:

The fireworks exhibition had awesome effects.

Report Error

View Answer Report Error Discuss

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

0 4223
Q:

Reuptake refers to the

A) reabsorption of excess neurotransmitter molecules by a sending neuron B) release of hormones into the bloodstream
C) movement of neurotransmitter molecules across a synaptic gap D) inflow of myelin through an axon membrane
 
Answer & Explanation Answer: A) reabsorption of excess neurotransmitter molecules by a sending neuron

Explanation:

Reuptake refers to the process in the brain of neurons to retrieve chemicals that were not received by the next neuron. Neurons are cells in the brain that have miniscule spaces between them. They communicate with each other by sending chemicals across the space to the next neuron.

Report Error

View Answer Report Error Discuss

Filed Under: Biology
Exam Prep: AIEEE , Bank Exams
Job Role: Analyst , Bank Clerk

2 4222
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 4222
Q:

The Pahari School , Rajput School, Mughal School, and Kangra School represent different styles of Indian

A) Music B) Dancing
C) Painting D) Architecture
 
Answer & Explanation Answer: C) Painting

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: General Awareness

2 4222