Questions

Q:

The given sentences, when properly sequenced, form a coherent paragraph. Each sentence is labelled with a letter. Choose the most logical order of the sentences from among the five given choices to construct a coherent paragraph keeping 1 as the first statement.

1) In Hindu mythology, when Shiva opens his third eye, it is considered a terrible warning for the cosmos.

A) In somewhat similar fashion, in 2017, women across the world seemed to declare war — on harassment, abuse, rape, inequality and every form of injustice.

B) Anger, however, is only one facet of the fight for empowerment. Concomitantly, the year saw women stack up achievements on an unprecedented scale.

C) It means he is angry enough to incinerate anything that comes in his way.

D) Across the world, there was a furious outpouring of rage against men in power, men on the street, men at home, and in families.

A) ABCD B) CBDA
C) DBAC D) DACB
 
Answer & Explanation Answer:

Explanation:

The correct sequence is CADB.

Report Error

View Answer Report Error Discuss

Filed Under: English

0 2747
Q:

Who is in the judicial branch?

Answer

Judicial branch is one among the three branches of the government. 


Supreme court, the magistrate (local) and municipal (city) courts are there in the judicial branch.


The Judicial branch interprets the laws.

Report Error

View answer Workspace Report Error Discuss

Subject: Indian Politics Exam Prep: AIEEE , Bank Exams , CAT , GATE
Job Role: Analyst , Bank Clerk , Bank PO

1 2747
Q:

Write a c program for binary search.

Answer

#include<stdio.h>
int main(){

    int a[10],i,n,m,c=0,l,u,mid;

    printf("Enter the size of an array: ");
    scanf("%d",&n);

    printf("Enter the elements in ascending order: ");
    for(i=0;i<n;i++){
         scanf("%d",&a[i]);
    }

    printf("Enter the number to be search: ");
    scanf("%d",&m);

    l=0,u=n-1;
    while(l<=u){
         mid=(l+u)/2;
         if(m==a[mid]){
             c=1;
             break;
         }
         else if(m<a[mid]){
             u=mid-1;
         }
         else
             l=mid+1;
    }
    if(c==0)
         printf("The number is not found.");
    else
         printf("The number is found.");

    return 0;
}

Sample output:
Enter the size of an array: 5
Enter the elements in ascending order: 4 7 8 11 21
Enter the number to be search: 11
The number is found.

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

0 2747
Q:

Podsol is a type of soil which is characteristic of a region under the cover of _________forest

A) deciduous B) coniferous
C) evergreen D) alpine
 
Answer & Explanation Answer: B) coniferous

Explanation:

It develops in a region of  moderate rainfall and limited evaporation. It is agriculturally a poor soil but addition of lime and fertilizers would yield favourable results. Found extensively in northern Canada and northern Russia.

Report Error

View Answer Report Error Discuss

Filed Under: World Geography

0 2746
Q:

What was the name of the mission that first landed men on the moon?

Answer

Apollo 11

Report Error

View answer Workspace Report Error Discuss

0 2746
Q:

Who owns Tradestation?

A) SBI Group B) Monex Group, Inc.
C) CME Group D) None of the above
 
Answer & Explanation Answer: B) Monex Group, Inc.

Explanation:

Tradestation is owned by its parent organization Monex Group, Inc.

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

Which of the following is also known as Carbolic Acid?

A) Hydroxide B) Sulphuric Acid
C) Ethanol D) Phenol
 
Answer & Explanation Answer: D) Phenol

Explanation:

Phenol with a molecular formula [C6H5OH] is also called as Carbolic Acid. It is a white poisonous clear compound with sweet smell. It is used in making plastics, detergents and drugs.

Report Error

View Answer Report Error Discuss

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

12 2746
Q:

Name the sea demoness known for trapping birds by illusion, who tried to obstruct Hanuman on his way to Lanka?

Answer

Simhika

Report Error

View answer Workspace Report Error Discuss

Subject: Indian Culture

33 2745