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

What was the purpose of the double v campaign?

Answer

The Double V Campaign was used in World War II. The purpose of the double v campaign is to fight for victory and ending segregation at home.


It was aimed at African-Americans, and it first appeared in an African-American newspaper, the Pittsburgh Courier, in 1942. The Double V Campaign worked to have a victory over racism abroad and racism in the United States.

It stood so it gave a chance for Black Americans to fight in the war so they could achieve Victory at Home and Abroad- (Civil Rights then the war in the Atlantic and Pacific).

Report Error

View answer Workspace Report Error Discuss

Subject: World History Exam Prep: AIEEE , Bank Exams , CAT
Job Role: Analyst , Bank Clerk , Bank PO

1 2441
Q:

What was the total time taken to write the Indian Constitution?

A) 2 years, 08 months & 18 days B) 2 years, 11 months & 18 days
C) 2 years, 09 months & 18 days D) 2 years, 10 months & 18 days
 
Answer & Explanation Answer: B) 2 years, 11 months & 18 days

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

2 2441
Q:

Who is the co-founder of Hotmail?

Answer

Sabeer Bhatia

Report Error

View answer Workspace Report Error Discuss

4 2440
Q:

In India, country's 1st Owl Festival held in

A) Hyderabad B) Pune
C) Kolkata D) Bangalore
 
Answer & Explanation Answer: B) Pune

Explanation:

In India, country's 1st Owl Festival held in Pune, for two days i.e, on Nov 29 and Nov 30. It is a first-of-its-kind festival in the country that is being organised with the intention of creating awareness about owl as a bird and debunking numerous superstitions associated with it.

Report Error

View Answer Report Error Discuss

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

3 2440
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 2440
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 2440