Questions

Q:

Who invented Fountain Pen?

A) Sir Frank Whittle B) John J. Loud
C) Kirkpatrick Macmillan D) Lewis E. Waterman
 
Answer & Explanation Answer: D) Lewis E. Waterman

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Inventions

1 4165
Q:

What does the Aufbau Principle state

A) Electrons will be added to an atom starting from the lowest possible level or sublevel. B) Electrons will be added to an atom only if the orbitals are different colors.
C) Electrons will be added to an atom in a random order. D) Electrons will be added to an atom in a symmetrical manner.
 
Answer & Explanation Answer: A) Electrons will be added to an atom starting from the lowest possible level or sublevel.

Explanation:

The Aufbau Principle states that in the ground state of an atom, an electron enters the orbital with lowest energy first and subsequent electrons are fed in the order of increasing energies.

Report Error

View Answer Report Error Discuss

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

0 4164
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 4163
Q:

Subject matters experts (SMEs) are resources that are imperative to the succes of a project. Many times, project managers are not experts in the areas they are managing and frequently must rely upon other's expertise. In which scope - management process are SMEs first used?

A) Scope planning B) Scope definition
C) Initiation D) Scope verification
 
Answer & Explanation Answer: C) Initiation

Explanation:

Initiation is the first step in the scope management process, and expert judgment is one of the techniques routinely utilized. Answers A, B, and D are incorrect because they would come after the initiation process.

Report Error

View Answer Report Error Discuss

Filed Under: PMP Certification

0 4162
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 4162
Q:

Bose selected the best soldiers from the three existing brigades (named after Gandhi Azad and Nehru)and organised a new brigade which the soldiers themselves called

A) Himalayan Brigade B) Swatantra Bharat Brigade
C) Bhagat Singh Brigade D) Subhas Brigade
 
Answer & Explanation Answer: D) Subhas Brigade

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian History

2 4160
Q:

What makes an election democratic?

A) Elections should be held at regular intervals. B) The candidate preferred by the people should get elected.
C) Every citizen should have one vote ad every vote should have an equal value. D) All the above
 
Answer & Explanation Answer: D) All the above

Explanation:

In short, Democracy is a government "of the people, by the people, and for the people."

 

Definition :

Democracy "is government by the people in which the supreme power is vested in the people and exercised directly by them or by their elected agents under a free electoral system." 


The conditions of a democratic election are:

 

* Every citizen should have one vote ad every vote should have an equal value.

* Voters choose from the political parties and candidates should be free to contest elections giving the voters a real choice.

* Elections should be held at regular intervals.

* The candidate preferred by the people should get elected.

* Elections should be conducted in free and fair manner where people can choose as they really wish.

Report Error

View Answer Report Error Discuss

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

2 4160
Q:

Which method of expressing direction is indicated in the illustration?

A) Section B) Interjuction
C) Intersection D) None of the above
 
Answer & Explanation Answer: C) Intersection

Explanation:

Which_method_of_expressing_direction_is_indicated_in_the_illustration1556259373.png image

 

Intersection method of expressing direction is indicated in the illustration.

Report Error

View Answer Report Error Discuss

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

5 4159