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 2892
Q:

Under what section of trade union act, workers are entitled to protection if strike is illegal?

Answer

Dispute Act, 1947 put certain prohibitions on the right to strike. A strike may be illegal if it contravenes the provision of section 22, 23 or 24 of the Act.

Report Error

View answer Workspace Report Error Discuss

Subject: Indian Politics Exam Prep: Bank Exams
Job Role: Bank Clerk , Bank PO

5 2891
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 2890
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 2890
Q:

Which of  the  following  statements  about the social base of the Arya Samaj in British India is/are correct?1.It  was  located  mainly in  Punjab  and western Uttar Pradesh.2.It    mainly    comprised    the    trading castes.3.It  was  much  more  limited  than  that  of the Brahmo Samaj.

Select  the  correct  answer  using  the  code given below.

A) 1 and 2 only B) 2 and 3 only
C) 1 only D) 1, 2 and 3
 
Answer & Explanation Answer: C) 1 only

Explanation:

Arya Samaj was an Indian religious movement  based   on   Vedas  and was     founded     by     Dayananda Saraswati on April 7, 1875 and was based in Punjab and western Uttar Pradesh     states     like,     Aligarh, Varanasi, etc.  It  was  against  caste system  and  supported  equality  of men   and   women,moreover   it mainly    comprised    the    trading castes;    while    Brahmo    Samaj, founded  by  Raja  Rammohan  Roy, was limited because it was popular only   among   elite   and   educated society.

Report Error

View Answer Report Error Discuss

Filed Under: Indian History
Exam Prep: Bank Exams

1 2890
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 2890
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 2890
Q:

Organisms that depend only on raw plant products are said to be 

A) herbivorous B) vegetarian
C) carnivorous D) omnivorous
 
Answer & Explanation Answer: A) herbivorous

Explanation:

Herbivorous organisms are those that take for their food, plant parts like leaves raw in contrast to vegetarian, which means that plant products are taken raw or after being cooked.

Report Error

View Answer Report Error Discuss

Filed Under: Biology

3 2890