Questions

Q:

Who is the new governor of Andhra Pradesh 2019?

A) Anusuiya Uikey B) Kalraj Mishra
C) Anandiben Patel D) Biswa Bushan Harichandan
 
Answer & Explanation Answer: D) Biswa Bushan Harichandan

Explanation:

the_new_governor_of_Andhra_Pradesh1563532575.jpg image

The new governor of Andhra Pradesh is Biswa Bushan Harichandan. He is a senior BJP leader and will succeed ESL Narasimhan, who had held the gubernatorial post in various states for last 13 years which includes 10 years in Andhra Pradesh.

Report Error

View Answer Report Error Discuss

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

2 2730
Q:

If there is a lock on an adjacent key, an insert will fail if the isolation level is set to what?

A) committed read B) repeatable read
C) share read D) indexed read
 
Answer & Explanation Answer: B) repeatable read

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: IBM Certification

1 2730
Q:

Ozone is concentrated in the

A) Stratosphere B) Troposphere
C) Ionosphere D) Mesosphere
 
Answer & Explanation Answer: A) Stratosphere

Explanation:

Most of the ozone in the atmosphere is found in the layer of stratosphere, which begins about 10.16 kilometers (6.10 miles) above Earth's surface and extends up to about 50 kilometers (31 miles) altitude.

Report Error

View Answer Report Error Discuss

Filed Under: Chemistry
Exam Prep: AIEEE , Bank Exams
Job Role: Analyst , Bank Clerk

5 2730
Q:

Which payment type can help you stick to a budget?

A) Payday loans B) Cash advances
C) Debit cards D) Credit cards
 
Answer & Explanation Answer: C) Debit cards

Explanation:

There are two payment types that will help you stick to your budget.

1. Cash
2. Debit Card

The amount in the debit card is the only amount you can spend to stay within budget.

These method work because once you spend your money, you are done. You don’t have anything else to spend.

 

Credit cards, payday loans, and cash advances are all loans on future income. When you use a credit card, there is always just a little bit more you can spend. These types do not help you budget properly. In fact, these types encourage you to spend beyond your means and be out of budget.

Report Error

View Answer Report Error Discuss

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

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

Which of these following missiles is made by together India and Russia?

A) Agni B) Prudhvi
C) Brahmas D) Akash
 
Answer & Explanation Answer: C) Brahmas

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: General Awareness

0 2729
Q:

India's tallest National flag from the average city elevation has recently installed in which city?

A) Guwahati B) Bangaluru
C) Mumbai D) Hyderabad
 
Answer & Explanation Answer: A) Guwahati

Explanation:
Report Error

View Answer Report Error Discuss

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

6 2728
Q:

Acceptable noise level for human ear

A) > 85 db B) = 85 db
C) < 85 db D) None of the above
 
Answer & Explanation Answer: C) < 85 db

Explanation:

Sound intensity or level is measured by a unit called a decibel. An 85 decibel noise level is not a safe standard for the public.

 

Hence, Acceptable noise level for human ear is less than 85 db.

Report Error

View Answer Report Error Discuss

Filed Under: Physics
Exam Prep: AIEEE , Bank Exams , CAT , GATE
Job Role: Analyst , Bank Clerk , Bank PO

2 2728