Questions

Q:

What is a primary benefit of location targeting?

Answer

The ability to target combinations of countries, territories, and regions.

Report Error

View answer Workspace Report Error Discuss

0 2312
Q:

Which Biblical epic made in 1953 was the first film to be made in cinemascope?

Answer

The Robe

Report Error

View answer Workspace Report Error Discuss

0 2311
Q:

Select the synonym of

 

to recline

 

A) to lounge B) to rewind
C) to sheer D) to plump
 
Answer & Explanation Answer: A) to lounge

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 2311
Q:

" One Earth ” is the name of the corporate headquarters of which firm ?

A) Tata Consultancy Services B) Suzlon Energy
C) Power grid Corporation of India Ltd D) Wipro
 
Answer & Explanation Answer: B) Suzlon Energy

Explanation:

Suzlon energy has its corporate headquarter in Pune, Maharashtra with the name of “One Earth”. Spread over 10 acres of land, the structure is completely powered by renewable energy. One Earth has been certified as the LEED (Leadership in Energy and Environment Design) Platinum building. Suzlon is largest wind turbine manufacturer in India and third largest in world.

Report Error

View Answer Report Error Discuss

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

2 2310
Q:

The Dowry Prohibition (Amendment) Act came into force from __________

Answer

The Dowry Prohibition (Amendment) Act came into force from october2, 1985. This made the original Act more stringent and effective.

Report Error

View answer Workspace Report Error Discuss

2 2310
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 2310
Q:

Which bank will become the first bank to integrate Aadhaar offering OTP-based financial services ?

A) Karur Vysya Bank B) City Union Bank
C) IndusInd Bank D) Kotak Mahindra Bank
 
Answer & Explanation Answer: D) Kotak Mahindra Bank

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: General Awareness
Exam Prep: Bank Exams
Job Role: Bank Clerk

1 2309
Q:

What is Materials Requirement Planning?

Answer

A given quantity of finished goods requires a given quantity of raw materials and components to make them. Materials requirement planning systems to make them. Materials requirements planning systems are computerized tools that manage when materials must be ordered to supply production at a later date. MRP is effective when output quantities are known.Small business owners are often their own MRP systems,storing the information needed to supply prodution in their knowledge and experience. Activities such as computer tracking inventory and forecasting demand are MRP activities.

Report Error

View answer Workspace Report Error Discuss

Subject: Manufacturing

1 2308