Questions

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:

The demand curve shows the relationship between

A) good price and the service B) quantity demanded and the price of the good
C) quality and quantity of the good D) quality and price of the good
 
Answer & Explanation Answer: B) quantity demanded and the price of the good

Explanation:
Report Error

View Answer Report Error Discuss

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

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

What is Rafale deal?

Answer

India and France entered into an agreement for 36 Rafale fighter jets at a value of about Rs 59,000 crore. The agreement includes a 50 per cent offset obligation, the largest-ever offset contract in the history of India. The main point of the offset agreement is 74 per cent of it has to be imported from India, which means direct business worth around Rs 22,000 crore, according to PTI report.


 


Soon after the deal, Anil Ambani-led Reliance Group and Rafale maker Dassault Aviation had announced a joint venture (JV) that will be a 'key player' in fulfilling the offset contract.

Report Error

View answer Workspace Report Error Discuss

Subject: General Awareness Exam Prep: AIEEE , Bank Exams , CAT
Job Role: Analyst , Bank Clerk , Bank PO

4 2112
Q:

Jatra is a traditional theatre form of which of the following states of India?

A) Maharashtra B) Bihar
C) Andhra Pradesh D) West Bengal
 
Answer & Explanation Answer: D) West Bengal

Explanation:

Jatra is a traditional theatre form of the state West Bengal in India.

Report Error

View Answer Report Error Discuss

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

0 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