Questions

Q:

Chandragupta Maurya was an ardent follower of __________.

A) Sikhism B) Jainism
C) Buddhism D) Jewism
 
Answer & Explanation Answer: B) Jainism

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian History
Exam Prep: Bank Exams

1 2113
Q:

What would be the output of the following program, if the array beigns at address 65486?

main()

{

    int arr[] = {12,14,15,23,45};

    printf ("%u %u", arr, &arr);

}

Answer

65486  65486

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

0 2113
Q:

Why we use do-while loop in c?

Answer

It is also called as post tested loop. It is used when it is necessary to execute the loop at least one time. Syntax:

do {
Loop body
} while (Expression);

Example:

int main(){
    int num,i=0;  
    do{
         printf("To enter press 1\n");
         printf("To exit press  2");
         scanf("%d",&num);
         ++i;
         switch(num){
             case 1:printf("You are welcome\n");break;
             default : exit(0);
         }
    }
    while(i<=10);
    return 0;
}

Output: 3 3 4 4

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

0 2113
Q:

If a person moves a trolley for a distance of 10 m with a force of 50 N, then the work done is

A) 0.2 J B) 5 J
C) 20 J D) 500 J
 
Answer & Explanation Answer: D) 500 J

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Physics
Exam Prep: Bank Exams

3 2113
Q:

Khas Mahal and the Shish Mahal are built in which World Heritage Monument?

A) Humayun's Tomb B) Mahabodhi Temple Complex
C) Qutub Minar D) Agra Fort
 
Answer & Explanation Answer: D) Agra Fort

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian Geography
Exam Prep: Bank Exams

0 2112
Q:

Project Human Resource Management

What are the Project Management Processes included in the Project Human Resource Management?

Answer

Human Resource Planning - Identifying and documenting Project roles, responsibilities, and reporting relationships, as well as creating the staffing management plan.


Acquire Project Team - Obtaining the human resources needed to complete the project


Develop Project Team - Improving the competencies and interaction of team members to enhance project performance.


Manage Project Team - Tracking team member performance, providing feedback, resolving issues, and coordinating changes to enhance project performance.

Report Error

View answer Workspace Report Error Discuss

0 2112
Q:

When an unbalanced force acts on an object

A) causes change in motion of the object B) the speed & direction of the object will change
C) causes the object to move D) All of the above
 
Answer & Explanation Answer: D) All of the above

Explanation:

Unbalanced forces are the forces which causes change in motion of the object. It sets the object in motion and may cause the object to move. If the object is already in motion, it changes the speed and direction of the object.

Report Error

View Answer Report Error Discuss

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

2 2111
Q:

Which of the following is not a National Park?

A) Corbett National Park B) Kaziranga National Park
C) Satara National Park D) Bandipur National Park
 
Answer & Explanation Answer: C) Satara National Park

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian Geography
Exam Prep: Bank Exams

0 2111