Questions

Q:

Genes are made of 

A) Carbohydrates B) Proteins
C) Fats D) Nucleotides
 
Answer & Explanation Answer: D) Nucleotides

Explanation:

Genes : The DNA is the genetic material. The DNA is made of several nucleotides. A nucleotide means, one nitrogenous base one sugar molecule and a phosphate molecule. These nucleotides occur in sequences and several nucleotides form one Gene ( a functional mgene is called a cistron)

Report Error

View Answer Report Error Discuss

Filed Under: Biology

7 2600
Q:

Which memory needs refresh?

A) DRAM B) SRAM
C) ROM D) All of the above
 
Answer & Explanation Answer: A) DRAM

Explanation:

Memory refresh is the process of periodically reading information from an area of computer memory and immediately rewriting the read information to the same area without modification, for the purpose of preserving the information.

DRAM1532669979.png image

Memory refresh is a background maintenance process required during the operation of semiconductor dynamic random-access memory (DRAM), the most widely used type of computer memory.

Report Error

View Answer Report Error Discuss

2 2600
Q:

In a first instance of foreign oil company planning to list in the Indian Capital market, a well-known energy company has announced to go in for IPO to be listed on BSE. Name of the exploration and production company is 

A) Unocol B) Shell
C) British Petroleum D) Cairn Energy
 
Answer & Explanation Answer: D) Cairn Energy

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Business Awareness

5 2600
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 2599
Q:

One of the following companies does have business interest in both oil and shipping sectors. Identify this.

A) Tata Group B) Reliance Group
C) Essar Group D) ONGC
 
Answer & Explanation Answer: C) Essar Group

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Business Awareness

6 2597
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 2597
Q:

Which among the following is an International river

A) Brahmaputra B) Cauvery
C) Krishna D) Narmada
 
Answer & Explanation Answer: A) Brahmaputra

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian Economy

2 2597
Q:

Jharia is famous for

A) Diamonds B) Coal mines
C) Pearls D) Gold mines
 
Answer & Explanation Answer: B) Coal mines

Explanation:

jharia_is_famous_for1559625961.jpg image

Jharia, a town in the sate Jharkand in India is famous for coal mines and resources. It plays an important role in the economy and development of the state.

Report Error

View Answer Report Error Discuss

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

8 2597