Questions

Q:

What command would you use to create a backup control file?

Answer

Alter database backup control file to trace

Report Error

View answer Workspace Report Error Discuss

3 2655
Q:

Who is the author of ' The Accidental Prime Minister - The Making and Unmaking of Manmohan Singh'

Answer

Sanjaya Baru

Report Error

View answer Workspace Report Error Discuss

3 2654
Q:

Hong Kong will be transferred to china in

A) 1990 B) 1996
C) 1997 D) 2000
 
Answer & Explanation Answer: C) 1997

Explanation:
Report Error

View Answer Report Error Discuss

2 2654
Q:

Head Quaters of NATO is located in 

A) Newyork B) Brussels
C) Alaska D) California
 
Answer & Explanation Answer: B) Brussels

Explanation:

Head Quaters of NATO is located in Brussels

Report Error

View Answer Report Error Discuss

Filed Under: World Organisations

5 2654
Q:

Ticks and mites are actually

A) Arachnids B) Insects
C) Myriapods D) Crustaceans
 
Answer & Explanation Answer: A) Arachnids

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: General Science
Exam Prep: AIEEE , Bank Exams , GATE
Job Role: Analyst , Bank Clerk , Bank PO

7 2654
Q:

Write a c program for binary search.

Answer

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

    int a[10],i,n,m,c=0,l,u,mid;

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

    printf("Enter the elements in ascending order: ");
    for(i=0;i<n;i++){
         scanf("%d",&a[i]);
    }

    printf("Enter the number to be search: ");
    scanf("%d",&m);

    l=0,u=n-1;
    while(l<=u){
         mid=(l+u)/2;
         if(m==a[mid]){
             c=1;
             break;
         }
         else if(m<a[mid]){
             u=mid-1;
         }
         else
             l=mid+1;
    }
    if(c==0)
         printf("The number is not found.");
    else
         printf("The number is found.");

    return 0;
}

Sample output:
Enter the size of an array: 5
Enter the elements in ascending order: 4 7 8 11 21
Enter the number to be search: 11
The number is found.

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

0 2653
Q:

Which of these is ATP?

A) 3 Phosphate groups attached to chromosome attached to Adenine B) 3 Phosphate groups attached to a Ribose attached to Adenine
C) 3 Phosphate groups attached to a Ribose attached to Thymine D) None of the above
 
Answer & Explanation Answer: B) 3 Phosphate groups attached to a Ribose attached to Adenine

Explanation:

ATP is a Adenosine Triphosphate.

 

ATP is 3 Phosphate groups attached to a Ribose attached to Adenine.

Report Error

View Answer Report Error Discuss

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

4 2653
Q:

In the aggregate expenditures model, it is assumed that investment

in_the_aggregate_expenditures_model_it_is_assumed_that_investment1553493949.jpg image

A) does not change when real GDP changes B) does not respond to changes in interest rates
C) changes by less in percentage terms than changes in real GDP D) automatically changes in response to changes in real GDP
 
Answer & Explanation Answer: A) does not change when real GDP changes

Explanation:

In the aggregate expenditures model, it is assumed that investment does not change when real GDP changes.

 

  • The aggregate expenditure is the sum of all the expenditures undertaken in the economy by the factors during a specific time period.

 

  • The aggregate expenditure determines the total amount that firms and households plan to spend on goods and services at each level of income.
Report Error

View Answer Report Error Discuss

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

0 2652