Questions

Q:

Which Lok Sabha Elections 2019 start from April 11 is this in India?

A) 14th B) 15th
C) 16th D) 17th
 
Answer & Explanation Answer: D) 17th

Explanation:

The Lok Sabha Elections 2019 that are starting from April 11 of 2019 in India is 17th Lok Sabha Elections.

Report Error

View Answer Report Error Discuss

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

0 2448
Q:

Depletion of ozone layer is caused by

A) CFC's B) Carbon tetra-chloride (CCl4)
C) HCFC's D) All of the above
 
Answer & Explanation Answer: D) All of the above

Explanation:

Ozone layer depletion is one of the most serious problems faced by our planet earth. Substances that Deplete the Ozone Layer (ODS) emission are responsible for ultraviolet radiations from the sun break them to release chlorine (from CFCs) and bromine (from methyl bromide and halons).

Report Error

View Answer Report Error Discuss

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

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

Who has been conferred the Ashoka Chakra for year 2019?

A) Syam Prasad B) Ahmed Sunani
C) Nazir Ahmad Wani D) Vishnu wagh
 
Answer & Explanation Answer: C) Nazir Ahmad Wani

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Honours and Awards
Exam Prep: AIEEE , Bank Exams , CAT
Job Role: Analyst , Bank Clerk , Bank PO

9 2447
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 2446
Q:

For an object, the state of rest is considered to be the state of ______ speed.

A) increasing B)
C) inverse D) zero
 
Answer & Explanation Answer: D) zero

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Physics
Exam Prep: Bank Exams

4 2445
Q:

Stretching exercises should ideally be performed

A) within a 5-minute time period B) 5 to 7 days a week
C) with a swinging, bouncing motion D) to the point of moderate pain
 
Answer & Explanation Answer: B) 5 to 7 days a week

Explanation:
Report Error

View Answer Report Error Discuss

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

1 2445
Q:

Fiords abound the coast of

A) Sweden B) France
C) Norway D) German
 
Answer & Explanation Answer: C) Norway

Explanation:

Fiords are along narrow inlets into the sea-coast with steep sides. It usually occurs along the coast of a mountainous region.It has been formed by glacial action.

Report Error

View Answer Report Error Discuss

Filed Under: World Geography

0 2445