Questions

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:

First Indian woman, to win The silver medal in Rio Olympics 2016 ?

A) Sakshi Malik B) P V Sindhu
C) Dipa Karmakar D) Saina Nehwal
 
Answer & Explanation Answer: B) P V Sindhu

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Sports

6 4162
Q:

An important tool for project scope management is

A) Fast tracking B) Work breakdown structure
C) Crashing D) A Gantt Chart
 
Answer & Explanation Answer: B) Work breakdown structure

Explanation:

Work breakdown structure is an important tool for project scope management.

 

Project Scope Management refers to the set of processes that ensure a project’s scope is accurately defined and mapped. Scope Management techniques enable project managers and supervisors to allocate just the right amount of work necessary to successfully complete a project—concerned primarily with controlling what is and what is not part of the project’s scope.

Report Error

View Answer Report Error Discuss

14 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:

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 4159
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 4159
Q:

Now my value becomes ?

value1499404917.jpg image

A) 5 B) 10
C) 15 D) 12
 
Answer & Explanation Answer: B) 10

Explanation:

In the first figure, number of triangles are 5.

In the second, the figure becomes double then the number of triangles also doubles.

i.e, 10. 

Report Error

View Answer Report Error Discuss

Filed Under: Logic Puzzles
Exam Prep: AIEEE , Bank Exams , CAT
Job Role: Bank Clerk

15 4158
Q:

Which of the following sentences is grammatically correct?

A) We had gone to the party last night B) I have seen him yesterday
C) The hen has laid 10 eggs D) She is sleeping for 2 hours
 
Answer & Explanation Answer: C) The hen has laid 10 eggs

Explanation:

In the above given sentences, only option C) The hen has laid 10 eggs is gramatically correct.

 

A) Not correct - We had gone to the party last night

Correct - We went to the party last night

 

B) Not correct - I have seen him yesterday

Correct - I saw him yesterday (We do not use the present perfect tense with past time expressions.)

 

D) Not correct - She is sleeping for 2 hours

Correct - She has been sleeping for two hours. (We use the present perfect continuous tense to show duration.)

Report Error

View Answer Report Error Discuss

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

0 4158