Questions

Q:

Name the award ehich is declared yearly for films produced in India in the previous Year

A) Jananpeth award B) Bharat Ratna
C) National Film Award D) Param Vir Chakra
 
Answer & Explanation Answer: C) National Film Award

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Honours and Awards

0 2348
Q:

Rearrange the parts of the sentence in correct order.

Hit hard by austerity measures

P-government, they lead
Q-of the Conservative
R-lives embedded in anxiety

 

A) RPQ B) QRP
C) QPR D) PRQ
 
Answer & Explanation Answer: C) QPR

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 2347
Q:

Based on which occasion every year on 3 May National film awards are presented ?

A) Dada Sheb Falkhe Jayanthi B) Dada saheb Falke Vardhanti
C) Aalam Ara release date D) Raja Harishchandra release date
 
Answer & Explanation Answer: D) Raja Harishchandra release date

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: General Awareness

2 2345
Q:

TATA Projects has recently launched which initiative to promote green cover in India  ?

A) Green World B) Green India
C) Green Earth D) Green Thumb
 
Answer & Explanation Answer: D) Green Thumb

Explanation:

The TATA Projects has launched unique “Green Thumb” initiative in India to promote green cover and to protect the environment on 2017 World Environment Day (WED). The Green Thumb 2017 is in continuation to 2016 TATA Projects’ programme wherein it aimed to get 10,000 people to click (pledge) to plant a sapling on their behalf – the response received was a tremendous 23,000. Encouraged by the response, TATA Projects planted a total of over 42,000 saplings across the country in over 100 locations in the last one year (2016-17). This year, under Green Thumb initiative, the company will plants trees, citizens who wish to do their bit to save the environment, can express their support for the cause. They can do so by clicking on the banner to plant a sapling on the Green Thumb.

Report Error

View Answer Report Error Discuss

Filed Under: General Awareness
Exam Prep: Bank Exams , CAT
Job Role: Bank PO

2 2345
Q:

The President of India is elected by the __________

A) members of the Lok Sabha B) members of both Houses of the Parliament
C) members of the State Legislature D) by an electoral college consisting of the elected members of both Houses of the Parliament and state Assemblies
 
Answer & Explanation Answer: D) by an electoral college consisting of the elected members of both Houses of the Parliament and state Assemblies

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian Politics

0 2345
Q:

What are the Various Register in 8085?

Answer

Accumulator register, Temporary register, Instruction register, Stack Pointer, Program Counter are the various registers in 8085

Report Error

View answer Workspace Report Error Discuss

Subject: Hardware

0 2345
Q:

Write a c program for quick sort.

Answer

#include<stdio.h>

void quicksort(int [10],int,int);

int main(){
  int x[20],size,i;

  printf("Enter size of the array: ");
  scanf("%d",&size);

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

  quicksort(x,0,size-1);

  printf("Sorted elements: ");
  for(i=0;i<size;i++)
    printf(" %d",x[i]);

  return 0;
}

void quicksort(int x[10],int first,int last){
    int pivot,j,temp,i;

     if(first<last){
         pivot=first;
         i=first;
         j=last;

         while(i<j){
             while(x[i]<=x[pivot]&&i<last)
                 i++;
             while(x[j]>x[pivot])
                 j--;
             if(i<j){
                 temp=x[i];
                  x[i]=x[j];
                  x[j]=temp;
             }
         }

         temp=x[pivot];
         x[pivot]=x[j];
         x[j]=temp;
         quicksort(x,first,j-1);
         quicksort(x,j+1,last);

    }
}

Output:
Enter size of the array: 5
Enter 5 elements: 3 8 0 1 2
Sorted elements: 0 1 2 3 8

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

0 2345
Q:

The headquarters of the International Court of Justice is at

A) Geneva B) The Hague
C) Rome D) Vienna
 
Answer & Explanation Answer: B) The Hague

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: World Organisations

0 2345