Questions

Q:

How CNG is a cleaner fuel?

I. It produces oxides of Sulphur and Nitrogen in very small amounts.
II. It makes environment less polluted.
III. It emits less greenhouse gases.

A) Only I and II B) Only II and III
C) Only I and III D) All I, II and III
 
Answer & Explanation Answer: D) All I, II and III

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: General Science

3 2113
Q:

In the following question, a sentence has been given in Direct/Indirect speech. Out of the four alternatives suggested, select the one which best express the same sentence in Indirect/Direct speech.

The coach said, "Bravo! Puneet, you have done well."

A) The coach applauded Puneet saying that he had done well. B) The coach said to Puneet Bravo, he had done well.
C) The coach congratulated Puneet, saying he did well. D) The coach said to Puneet, that he did well.
 
Answer & Explanation Answer: A) The coach applauded Puneet saying that he had done well.

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 2113
Q:

Explain compiler?

Answer

compiler is used to translate the high-level language program into machine code at a time. It doesn't require special instruction to store in a memory, it stores automatically. the execution time is less compared interpreter.


A compiler is a program that translates a source program written in some high-level programming langualge (such as Java) into machine code for some computer architecture (such as the Inter Pentium archiecture).

Report Error

View answer Workspace Report Error Discuss

Subject: Hardware

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

Prithviraja III (1168-1192) was a best known ___________ ruler.

A) Chahamana B) Gahadavala
C) Chalukya D) Brahmana
 
Answer & Explanation Answer: A) Chahamana

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian History
Exam Prep: Bank Exams

1 2112