Questions

Q:

In a spreadsheet program how is data organized?

A) Rows and columns B) Layers and planes
C) Lines and spaces D) All of the above
 
Answer & Explanation Answer: A) Rows and columns

Explanation:
Report Error

View Answer Report Error Discuss

1 2391
Q:

Dantiwada Dam is located in?

A) Gujarat B) Sikkim
C) Andhra Pradesh D) Telangana
 
Answer & Explanation Answer: A) Gujarat

Explanation:

Dantiwada Dam is located in Gujarat.

Report Error

View Answer Report Error Discuss

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

3 2390
Q:

Write a c program for selection sort.

Answer

include<stdio.h>
int main(){

  int s,i,j,temp,a[20];

  printf("Enter total elements: ");
  scanf("%d",&s);

  printf("Enter %d elements: ",s);
  for(i=0;i<s;i++)
      scanf("%d",&a[i]);

  for(i=0;i<s;i++){
      for(j=i+1;j<s;j++){
           if(a[i]>a[j]){
               temp=a[i];
              a[i]=a[j];
              a[j]=temp;
           }
      }
  }

  printf("After sorting is: ");
  for(i=0;i<s;i++)
      printf(" %d",a[i]);

  return 0;
}

Output:
Enter total elements: 5
Enter 5 elements: 4 5 0 21 7
The array after sorting is:  0 4 5 7 21

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

0 2390
Q:

What valley is the site of the Earth's highest-ever recorded temperature, 134°F?

Answer

Death Valley

Report Error

View answer Workspace Report Error Discuss

Subject: World Geography

2 2390
Q:

What do genes code for?

A) Ptoteins B) DNA
C) RNA D) None
 
Answer & Explanation Answer: A) Ptoteins

Explanation:

The genome of an organism is inscribed in DNA, or in some viruses RNA. The portion of the genome that codes for a protein or an RNA is referred to as a gene. Those genes that code for proteins are composed of tri-nucleotide units called codons, each coding for a single amino acid.

Report Error

View Answer Report Error Discuss

Filed Under: Biology
Exam Prep: AIEEE
Job Role: Analyst

5 2388
Q:

Which of these statements is true of the kingdom protista?

A) All are unicellular B) All are hetertrophic
C) All are autotrophic D) All are eukaryotic
 
Answer & Explanation Answer: D) All are eukaryotic

Explanation:

Protists are eukaryotic organisms that cannot be classified as a plant, animal, or fungus. They are mostly unicellular, but some, like algae, are multicellular.

which_of_these_statements_is_true_of_the_kingdom_protista1536211148.jpg image

Kelp, or 'seaweed,' is a large multicellular protist that provides food, shelter, and oxygen for numerous underwater ecosystems.

Report Error

View Answer Report Error Discuss

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

1 2388
Q:

The concept of net domestic investment refers to

A) the difference between the market value and book value of outstanding capital stock. B) total investment less the amount of investment goods used up in producing the year's output.
C) the amount of machinery and equipment used up in producing the GDP in a specific year. D) gross domestic investment less net exports.
 
Answer & Explanation Answer: B) total investment less the amount of investment goods used up in producing the year's output.

Explanation:
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

0 2388
Q:

The chairman of the RBI's committee constituted to review the governance of boards of banks in india

Answer

P J Nayak

Report Error

View answer Workspace Report Error Discuss

0 2387