Questions

Q:

Which type of weathering creates karst topography?

A) Chemical B) Physical
C) Both A & B D) None of the above
 
Answer & Explanation Answer: A) Chemical

Explanation:

Karst topography is created by the chemical weathering of the rocks such as limestone, dolomite etc...

Report Error

View Answer Report Error Discuss

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

7 2449
Q:

In the biosphere living beings are inter-related and interdependent on each other for survival. This life supporting system is known as the __________.

A) Ecosystem B) Mountain range
C) Forest D) Atmosphere
 
Answer & Explanation Answer: A) Ecosystem

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: General Science
Exam Prep: Bank Exams

1 2449
Q:

What is Executive in Windows NT?

Answer

In Windows NT, executive refers to the operating system code that runs in kernel mode.

Report Error

View answer Workspace Report Error Discuss

1 2449
Q:

Suez Canal was completed in the year

A) 1859 B) 1869
C) 1871 D) 1889
 
Answer & Explanation Answer: B) 1869

Explanation:

Of the two international ship canals, the Suez is more important than the Panama. Constructed over a period of 10 years according to a plan of the French Engineer  Ferdinand de Lesseps, the Suez Canal was opened as early as 1869.

Report Error

View Answer Report Error Discuss

Filed Under: World Geography

0 2448
Q:

You can use display planner to

A) add ads B) research keywords
C) display network D) All of the above
 
Answer & Explanation Answer: C) display network

Explanation:

Display Planner is a free Google Ads tool you can use to plan your Display Network ad campaigns.

Report Error

View Answer Report Error Discuss

3 2448
Q:

What document is the supreme law of the land?

A) The constitution B) The senate
C) The bill D) All of the above
 
Answer & Explanation Answer: A) The constitution

Explanation:
Report Error

View Answer Report Error Discuss

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

4 2448
Q:

Which among the following temperature scale is based upon absolute zero?

A) Rankine B) Celsius
C) Fahrenheit D) Kelvin
 
Answer & Explanation Answer: D) Kelvin

Explanation:

Kelvin temperature scale is the temperature scale that is based upon absolute zero.

Report Error

View Answer Report Error Discuss

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

6 2447
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 2447