Questions

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 2414
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 2414
Q:

A word processor would most likely be used to do

A) type a biography B) maintain an inventory
C) a word processor would most likely be used to do D) do a computer search in media center
 
Answer & Explanation Answer: A) type a biography

Explanation:
Report Error

View Answer Report Error Discuss

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

6 2413
Q:

Which of these is exhibiting kinetic energy?

A) an archer with a flexed bow B) a person sitting on a couch while watching TV
C) a space station orbiting Earth D) All of the above
 
Answer & Explanation Answer: C) a space station orbiting Earth

Explanation:

Any moving object can exhibit kinetic energy, as kinetic energy is also known as Motional energy.

In the given options, only a space station orbiting Earth is in motion and all the other are in rest position.

 

Hence, option C) a space station orbiting Earth is only exhibiting kinetic energy.

Report Error

View Answer Report Error Discuss

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

3 2413
Q:

Convert the expression ((A + B) * C – (D – E) ^ (F + G)) to equivalent Prefix Notation

Answer

Prefix Notation:


^ - * +ABC - DE + FG

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

1 2411
Q:

What is Memory-Management Unit (MMU)?

Answer

Hardware device that maps virtual to physical address. In MMU scheme, the value in the relocation register is added to every address generated by a user process at the time it is sent to memory.


->The user program deals with logical addresses; it never sees the real physical addresses

Report Error

View answer Workspace Report Error Discuss

0 2411
Q:

Two equal arcs of two circles subtend angle of  60° and 75° at the centre. The ratio of the radii of the two circles is

A) 5/4 B) 3/2
C) 4/5 D) 2/3
 
Answer & Explanation Answer: A) 5/4

Explanation:
Report Error

View Answer Report Error Discuss

0 2411
Q:

Which type of molecules polar or nonpolar dissolves in water?

Answer

In general, polar solvents dissolve polar solutes, and nonpolar solvents dissolve nonpolar solutes.
As water molecules are polar, polar molecules dissolves in water.

Report Error

View answer Workspace Report Error Discuss

Subject: Chemistry Exam Prep: Bank Exams , AIEEE
Job Role: Bank PO , Bank Clerk , Analyst

1 2411