Questions

Q:

A passage is given with 5 questions following it. Read the passage carefully and choose the best answer to each question out of the four alternatives.

 

I had seen this road many years ago when my parents moved to Mundakotukurussi, our ancestral village. However, in those early years, I hadn't begun exploring the countryside. I stored the unknown road in my head under 'One Day I Will'. Ten years ago, when I recovered from a herniated disc, it was to discover that I had a useless left leg. Though I managed to lose the limp, I hated not being able to stride around as I used to. I needed a challenge to tell myself that I wasn't going to buckle to a creature called sciatica. Thus the 'One Day I Will' arrived. "Where does the road by the medical shop lead to?" I asked my parents while visiting them next. "Chalavara," they said. "It's not an easy road to walk on," my father added. "There are too many ups and downs." Chalavara was a superior grade of a village as compared to Mundakotukurussi, with a high school, a fine library, ATMs and several shops. But it also has two approach roads. The one I had chosen was a narrow back road used by the locals and that settled it for me. I needed to know for myself I could walk a road that wasn't going to be easy. And the next day, I would get up and walk that road again.

 

What makes Chalavara better than Mundakotukurussi?

 

A) It has a high school, a fine library, ATMs and several shops B) It is the place where the writer's ancestors were born
C) It is the place where the writer went to school D) It is the place where the writer would walk when he was young
 
Answer & Explanation Answer: A) It has a high school, a fine library, ATMs and several shops

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 2186
Q:

In the following question, out of the four alternatives, select the alternative which is the best substitute of the phrase.

To harass someone persistently to do something.

A) Iconoclast B) Dote
C) Neurotic D) Importune
 
Answer & Explanation Answer: D) Importune

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 2186
Q:

Project Management Process Groups

What are the Project Management Process Groups?

Answer

This section identifies and describes the five Project Management Process Groups required for any project. These five process Groups have clear dependencies and are performed in the same sequence on each project.


The five Process Groups are :


Initiating  Process Group - Defines and authorizes the project or a project phase


Planning Process Group - Defines and refines objectives, and plans the course of action required to attain the objectives and scope that the project was undertaken to address.


Executing Process Group - Integrates people and other resources to carry out the project management plan for the project


Monitoring and Controlling process Group - Regularly measures and monitors progress to identify variances from the project management plan so that corrective action can be taken when necessary to meet project objectives.


Closing Process Group - Formalizes acceptance of the product, service or result and brings the project or a project phase to an orderly end.

Report Error

View answer Workspace Report Error Discuss

0 2186
Q:

What is microprocessor?

Answer

Micro processor is a program-controlled device, which fetches the instruction from memory, decodes and executes the instructions. Most Micro Processor are single-chip devices.

Report Error

View answer Workspace Report Error Discuss

Subject: Hardware

0 2186
Q:

Which pattern will the given transparent sheet resemble when it is folded at the dotted line?

A) C B) B
C) A D) D
 
Answer & Explanation Answer: A) C

Explanation:
Report Error

View Answer Report Error Discuss

0 2186
Q:

Which of the following medieval rulers was called 'Jagat Guru'?

A) Ibrahim Qutbshah B) Ibrahim Adilshah I
C) Akbar D) Malik Ambar
 
Answer & Explanation Answer: B) Ibrahim Adilshah I

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian History
Exam Prep: Bank Exams , GATE
Job Role: Bank Clerk , Bank PO

0 2185
Q:

By increasing the price of entry ticket to a fair in the ratio 5:7, the number of visitors to the fair has decreased in the ratio 11:9. In what ratio has the total collection increased or decreased?

A) increased in the ratio 55:63 B) decreased in the ratio 63:55
C) increased in the ratio 45:77 D) decreased in the ratio 77:45
 
Answer & Explanation Answer: A) increased in the ratio 55:63

Explanation:
Report Error

View Answer Report Error Discuss

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