Questions

Q:

Swap two variables without using third variable.

Answer

#include<stdio.h>
int main(){
    int a=5,b=10;
    a=b+a;
    b=a-b;
    a=a-b;
    printf("a= %d  b=  %d",a,b);
}

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

0 2203
Q:

What is relative path and absolute path?

Answer

Absolute path-- Exact path from root directory.

Relative path-- Relative to the current path.

Report Error

View answer Workspace Report Error Discuss

1 2203
Q:

In the following question the 1st and the last part of the sentence/passage are numbered 1 and 6. The rest of the sentence/ passage is split into four parts and named P, Q, R and S. These four parts are not given in their proper order. Read the sentence/passage and find out which of the four combinations is correct.

 

1. Vinoo was to leave for Hyderabad by the 5 o'clock train.
P. Quickly, both got the luggage in and the train began to move.
Q. He drove to the station and reached a few minutes before the train was to leave.
R. However, Vinoo had a busy schedule on that day and could leave the office only around 4:45 PM.
S. He rushed on to the platform and found his friend waiting near their compartment.

6. Vinoo heaved a sigh of relief and settled down to enjoy the journey.

A) PQSR B) RSQP
C) SQPR D) RQSP
 
Answer & Explanation Answer: D) RQSP

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 2202
Q:

In the following question, out of the four alternatives, select the word opposite in meaning to the word given.
Summon

A) Dismiss B) Draft
C) Invite D) Mobilise
 
Answer & Explanation Answer: A) Dismiss

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 2201
Q:

A sentence has been given in Active/Passive Voice. Out of the four given alternatives, select the one which best expresses the same sentence in Passive/Active Voice.

The officer cuts down the tree.

A) The tree is cut down by the officer. B) The tree got cut down by the officer.
C) The tree is cut by the officer. D) The tree cut by the officer.
 
Answer & Explanation Answer: A) The tree is cut down by the officer.

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

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

Project Communications Management

What are the Project Management Processes included in the Project Communications Management?

Answer

Communications planning - Determining the information and communications needs of the project stakeholders.


Information Distribution - Making needed information available  to project stakeholders in a timely manner.


Performance Reporting - Collecting and distributing performance information. This includes status reporting, progress measurement, and forecasting.


Manage Stakeholders - Managing communications to satisfy the requirements of and resolve issues with project stakeholders.

Report Error

View answer Workspace Report Error Discuss

0 2201
Q:

In the following question, out of the four alternatives, select the alternative which best expresses the meaning of the idiom/Phrase.
At loggerheads

A) To suffer B) In conflict with someone
C) To face tough competition D) To be in do or die situation
 
Answer & Explanation Answer: B) In conflict with someone

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 2201