Questions

Q:

Which kind of energy is stored in a chemical bond?

A) Potential energy B) Kinetic energy
C) Both A & B D) None of the above
 
Answer & Explanation Answer: A) Potential energy

Explanation:
Report Error

View Answer Report Error Discuss

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

0 2654
Q:

Which statement fragments a table as round robin?

A) FRAGMENT AS ROUND ROBIN IN dbspace 1, dbspace 2 B) FRAGMENT BY ROUND ROBIN IN dbspace1, dbspace 2
C) FRAGMENT TABLE BY ROUND ROBIN IN dbspace1, dbspace 2 D) FRAGMENT BY ROUND ROBIN
 
Answer & Explanation Answer: B) FRAGMENT BY ROUND ROBIN IN dbspace1, dbspace 2

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: IBM Certification

2 2654
Q:

A basic concept in economics is that all resources are

A) Valuable B) Limited
C) Renewable D) Allocated
 
Answer & Explanation Answer: B) Limited

Explanation:

The basic concept in economics is that all resources are limited.

Report Error

View Answer Report Error Discuss

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

1 2654
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:

Plants grow in size because of 

A) addition of cells B) increase in size of cells
C) enlargement of cells D) elongation of cells
 
Answer & Explanation Answer: A) addition of cells

Explanation:

Plants grow in size both in height and in girth. Enlargement of cells already present cannnot contribute much to the growth. Only addition of more and more cells could increase the size of the plant considerably.

Report Error

View Answer Report Error Discuss

Filed Under: Biology

3 2653
Q:

Nucleotides are attached by bonds between the

A) phosphates and sugars B) nitrates and sugars
C) nitrates and phosphates D) sugars and hydrates
 
Answer & Explanation Answer: A) phosphates and sugars

Explanation:

In DNA, adjacent nucleotides are linked by a phosphodiester bond: a covalent bond is formed between the 5' phosphate group of one nucleotide and the 3'-OH group of another.

 

Hence, in this manner, each strand of DNA has a "backbone" of phosphate-sugar-phosphate-sugar-phosphate.

Report Error

View Answer Report Error Discuss

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

1 2653
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:

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 2653