Questions

Q:

Iveco, Part of the Fiat group, holds 15 per cent stake in an Indian automobile company. The  company in the question is 

A) AShok Leyland B) Hindustan Motors
C) Tata Motors D) Eitcher
 
Answer & Explanation Answer: A) AShok Leyland

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Business Awareness

7 2894
Q:

Who of the following is not a recepient of 2011 Nobel Peace prize

A) Hu Jintao B) Leymah Gbowee
C) Ellen Johnson Sirleaf D) Tawakkol Karman
 
Answer & Explanation Answer: A) Hu Jintao

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Honours and Awards

0 2894
Q:

Monitoring and Controlling Process Group

What are the Project Management Processes included in Monitoring and Controlling Process Group?

Answer


    • Monitor and Control Project Work

    • Integrated Change Control

    • Scope Verification

    • Scope Control

    • Schedule Control

    • Cost Control

    • Perform Quality Control

    • Manage Project Team

    • Performance Reporting

    • Manage Stakeholders

    • Risk Monitoring and Control

    • Contract Administration


Report Error

View answer Workspace Report Error Discuss

0 2892
Q:

In 1921,during which one of the following tours, Gandhiji shaved his head and began wearing loincloth in order to identity with the poor?

A) Ahmadabad B) Champaran
C) Chauri Chaura D) South India
 
Answer & Explanation Answer: D) South India

Explanation:

On 22nd September 1921, Gandhi made a momentous decision to change his attire. From the elaborate Gujarati attire, he decided on a simple dhoti and shawl. This epoch-making decision was taken by Gandhiji in Madurai after he decided that he has to work for and with the with the poor people of India and how can he identify with them if he wears different clothes from them.

Report Error

View Answer Report Error Discuss

Filed Under: Indian History
Exam Prep: Bank Exams

6 2892
Q:

How many posts are reserved for women at all levels in Panchayat Raj System in India?

A) 2/3 B) 1/4
C) 1/3 D) 1/2
 
Answer & Explanation Answer: C) 1/3

Explanation:

1/3 of the posts are reserved for women at all levels in Panchayati Raj System in India.

 

Panchayat Raj System in India ::

 

>> Recommend by: Balwantrai Mehta Committee 

>> System: 3-tier

>> Established by: Jawahar Lal Nehru

>> Constitutional amendment: 73rd (1992)

>> Schedule: 11th

>> First state to adopt: Rajasthan

>> Article: 243

>> Direct election: Gram Panchayat

Report Error

View Answer Report Error Discuss

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

4 2892
Q:

The greenhouse effect is caused solely by human activity.

A) TRUE B) FALSE
Answer & Explanation Answer: A) TRUE

Explanation:

True, the greenhouse effect is caused solely by human activities such as deforrestation, depletion of natural resources and emission of CO2 by using vehicles, refrigerators and AC's.

Report Error

View Answer Workspace Report Error Discuss

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

1 2891
Q:

In the below puzzle, a word starts and ends with the same letter. Can you figure out what the word is?

_otato_

Answer

rotator

Report Error

View answer Workspace Report Error Discuss

Subject: Word Puzzles

18 2891
Q:

Write a c program for insertion sort.

Answer

#include<stdio.h>
int main(){

  int i,j,s,temp,a[20];

  printf("Enter total elements: ");
  scanf("%d",&s);

  printf("Enter %d elements: ",s);
  for(i=0;i<s;i++)
      scanf("%d",&a[i]);

  for(i=1;i<s;i++){
      temp=a[i];
      j=i-1;
      while((temp<a[j])&&(j>=0)){
      a[j+1]=a[j];
          j=j-1;
      }
      a[j+1]=temp;
  }

  printf("After sorting: ");
  for(i=0;i<s;i++)
      printf(" %d",a[i]);

  return 0;
}

Output:
Enter total elements: 5
Enter 5 elements: 3 7 9 0 2
After sorting:  0 2 3 7 9

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

0 2891