Questions

Q:

Rearrange the parts of the sentence in correct order.

Today, less privileged white
P- Americans are considered to be
Q- and pathologists predominates
R- in crisis, and the language of sociologists

A) PRQ B) QPR
C) RPQ D) QRP
 
Answer & Explanation Answer: A) PRQ

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 6786
Q:

I am a number I am not an odd number I am higher than 90 I am not higher than 100 If you subtract me from 100, you get nothing. What number am I?

Answer

The required number 100.


It is not an odd number and is not higher than 100 and greater than 90.


When we subtract 100 from 100, we get nothing i.e, 0.

Report Error

View answer Workspace Report Error Discuss

Subject: Number Puzzles Exam Prep: Bank Exams

41 6786
Q:

5 L from A are V?

Answer

5 L from A are V --- 5 Letters from Alphabets are Vowels.


 

Report Error

View answer Workspace Report Error Discuss

13 6782
Q:

Write a c program for linear search.

Answer

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

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

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

    printf("Enter the elements of the array: ");
    for(i=0;i<=n-1;i++){
         scanf("%d",&a[i]);
    }

    printf("Enter the number to be search: ");
    scanf("%d",&m);
    for(i=0;i<=n-1;i++){
         if(a[i]==m){
             c=1;
             break;
         }
    }
    if(c==0)
         printf("The number is not in the list");
    else
         printf("The number is found");

    return 0;
}

Sample output:
Enter the size of an array: 5
Enter the elements of the array: 4 6 8 0 3
Enter the number to be search: 0
The number is found

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

2 6780
Q:

Who is the Indian Classical dancer credited with the first female dancer to learn Chhau form ?

Answer

Sonal Mansingh

Report Error

View answer Workspace Report Error Discuss

9 6779
Q:

The prime meridian passes through

A) Paris B) Greenwich
C) New York D) Delhi
 
Answer & Explanation Answer: B) Greenwich

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: World Geography

13 6777
Q:

The oxidation number of Cr in K2Cr2O7 is

A) +6 B) -5
C) +3 D) -4
 
Answer & Explanation Answer: A) +6

Explanation:

We will rewrite the formula as an equation.

2K + 2Cr + 7O = 0

The zero comes from there being no overall charge on the compound.

Each oxidation number is represented by the element's symbol.

Since this compound is not a peroxide or superoxide, the oxidation value for O is -2

K being in group 1 has a +1 charge and therefore has an oxidation number of K is +1

Now, by putting known values in we have:

2(+1) + 2(Cr) + 7(-2) = 0

2 + 2Cr -14 = 0

2Cr = +12

Cr = +6.

Report Error

View Answer Report Error Discuss

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

13 6776
Q:

Syadvad is a doctrine of

A) Lokayatism B) Saivism
C) Jainism D) Vaishnavism
 
Answer & Explanation Answer: C) Jainism

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian History

7 6774