Questions

Q:

In what way is geography an integrative science?

A) Geography is an integrative science because it borrows from physical sciences such as chemistry, biology, meterology, and geology B) Geography is an integrative science because it borrows from human science such as cultural studies , economics , and public policy
C) Geography is an integrative science because it examines Earth in both physical and human terms D) All of the above
 
Answer & Explanation Answer: C) Geography is an integrative science because it examines Earth in both physical and human terms

Explanation:
Report Error

View Answer Report Error Discuss

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

1 1985
Q:

Which best describes Genes?

A) long, double chains of nucleic acids. B) long, single chains of amino acids.
C) long, single chains of nucleic acids. D) long, double chains of amino acids.
 
Answer & Explanation Answer: A) long, double chains of nucleic acids.

Explanation:

Gene is a segment of chromosomal DNA or a sequence of DNA or RNA that codes for a molecule that has a function. It is the basic physical and functional unit of heredity.

 

As genes are made up of DNA it impies that they are long, double chains of nucleic acids as DNA is made of nucleic acids.

Report Error

View Answer Report Error Discuss

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

1 1985
Q:

First woman governor of Tamilnadu?

A) Maharaja Sir Krishna Kumarasinhji Bhavsinhji B) Bhishnuram Medhi
C) Banwarilal Purohit D) Fathima Beevi
 
Answer & Explanation Answer: D) Fathima Beevi

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian Politics
Exam Prep: Bank Exams

2 1984
Q:

Primary productivity is not limited by

A) Time B) Availability of sunlight
C) Water D) Nutrients
 
Answer & Explanation Answer: A) Time

Explanation:

Primary productivity refers to plants that make their own food using sunlight, water and availability of nutrients. Hence, they are not limited by time.

Report Error

View Answer Report Error Discuss

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

1 1984
Q:

Operating system is the most common type of

A) Application software B) Word processing
C) System software D) Communication software
 
Answer & Explanation Answer: C) System software

Explanation:

Operating system is the most common type of System software.

Report Error

View Answer Report Error Discuss

3 1984
Q:

Which of the following requires one byte of storage?

A) Character B) Sentence
C) Page D) Paragraph
 
Answer & Explanation Answer: A) Character

Explanation:

A Unicode character requires between one and four bytes of storage, depending on the encoding format used. Hence, a character requires one byte of storage.

Report Error

View Answer Report Error Discuss

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

7 1983
Q:

Write a c program to copy a data of file to other file.

Answer

#include<stdio.h>
int main(){
  FILE *p,*q;
  char file1[20],file2[20];
  char ch;
  printf("\nEnter the source file name to be copied:");
  gets(file1);
  p=fopen(file1,"r");
  if(p==NULL){
      printf("cannot open %s",file1);
      exit(0);
  }
  printf("\nEnter the destination file name:");
  gets(file2);
  q=fopen(file2,"w");
  if(q==NULL){
      printf("cannot open %s",file2);
      exit(0);
  }
  while((ch=getc(p))!=EOF)
      putc(ch,q);
  printf("\nCOMPLETED");
  fclose(p);
  fclose(q);
 return 0;
}

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

0 1983
Q:

What are * and? when using them for wildcards in windows?

Answer

* - any characters, aribitary among


? - single character

Report Error

View answer Workspace Report Error Discuss

Subject: Hardware

0 1982