Questions

Q:

Which of these is true of all simple machines?

A) these make work easier B) work input > work output
C) Both A & B D) None of the above
 
Answer & Explanation Answer: C) Both A & B

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

Sales promotions include all of the following except

A) Online Ads B) Coupons
C) Free Samples D) Rebates
 
Answer & Explanation Answer: A) Online Ads

Explanation:

Sales promotion uses both media and non-media marketing communications for a pre-determined, limited time to increase consumer demand, stimulate market demand or improve product availability.

 

Sales promotions include Coupons, Rebates, Free Samples, etc... Online Ads come under advertising form.

Report Error

View Answer Report Error Discuss

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

4 2449
Q:

Geography can be understood in terms of five different

A) Themes B) Languages
C) Places D) None of the above
 
Answer & Explanation Answer: A) Themes

Explanation:

Geography is a field of science related to the study of the lands, places, relation between people & their environments. Geography can be understood in terms of five different themes. They are :

• Location
• Place
• Human-Environment Interaction (HEI)
• Movement
• Region.

Report Error

View Answer Report Error Discuss

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

3 2449
Q:

The part of the Himalayas between Tista and Dihang rivers is known as _________ Himalayas.

A) Nepal B) Kashmir
C) Assam D) Jammu
 
Answer & Explanation Answer: C) Assam

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian Geography
Exam Prep: Bank Exams

1 2448
Q:

Who is the co-founder of Hotmail?

Answer

Sabeer Bhatia

Report Error

View answer Workspace Report Error Discuss

4 2448
Q:

St Andreas Fault passes close to the US city of

A) Los Angeles B) New Orleans
C) Hollywood D) San Francisco
 
Answer & Explanation Answer: D) San Francisco

Explanation:

A devastating  series of earthquakes in 1906 ruined the city completely and its presence is a constant remainder of the past and a threat of repetition in future.

Report Error

View Answer Report Error Discuss

Filed Under: World Geography

0 2448
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 2448
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