Questions

Q:

The largest producer of fruits in the Anglo-American Region is _____

A) New - England Region B) Greak Lakes Region
C) California D) Application Region
 
Answer & Explanation Answer: C) California

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: World Geography

0 4099
Q:

A bond formed by the transfer of electrons between atoms of the elements is called

A) Ionic bond B) Covalent bond
C) Co-ordinate bond D) Hydrogen bond
 
Answer & Explanation Answer: A) Ionic bond

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Chemistry

5 4099
Q:

Nucleus of Hydrogen atom consists of

A) 2 protons only B) 2 neutrons only
C) 1 proton only D) 1 electron only
 
Answer & Explanation Answer: C) 1 proton only

Explanation:

The nucleus of hydrogen consists of only a single proton.

Its parts are a single negatively-charged electron that circles a single positively-charged nucleus of the hydrogen atom.

The electron is bound to the nucleus by the Coulomb force.

Report Error

View Answer Report Error Discuss

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

4 4098
Q:

Smallest bone of human body is _________

A) Nails B) Fibula
C) Bone of nose D) Stapes
 
Answer & Explanation Answer: D) Stapes

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Biology

10 4098
Q:

I have four fingers and a thumb, but not alive.

Who am I?

Answer

A glove. It has 5 fingers as we have but not alive.

Report Error

View answer Workspace Report Error Discuss

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

2 4098
Q:

In a vacuum, all electromagnetic waves have the same

A) Velocity B) Wavelenth
C) Frequency D) All the above
 
Answer & Explanation Answer: A) Velocity

Explanation:

When traveling in a vacuum, electronic waves from the electromagnetic spectrum all travel at the same speed. Velocity is speed with direction, so they would all travel at the same velocity, realtively speaking. But frequency and wavelength are quite different.

Report Error

View Answer Report Error Discuss

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

8 4098
Q:

A machine powered by rotating blades is a

A) Fumerole B) Turbines
C) Solar panel D) None of the above
 
Answer & Explanation Answer: B) Turbines

Explanation:

Turbines are machines powered by rotating blades.

Report Error

View Answer Report Error Discuss

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

4 4098
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 4093