Questions

Q:

Which subatomic particle has no charge?

A) electron B) neutron
C) proton D) All of the above
 
Answer & Explanation Answer: B) neutron

Explanation:

An atom is composed of three subatomic particles. They are ::

 

1) Electron (-vely charged particle)

2) Proton (+vely charged particle)

3) Neutron (No charge particle)

 

Hence, Neutron is the subatomic particle which has no charge.

Report Error

View Answer Report Error Discuss

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

2 2658
Q:

Attribution theory was designed to account for

A) how people explain others' behavior B) the process of revealing intimate aspects of ourselves to others
C) social facilitation and social loafing D) the loss of self-awareness that occurs in group situations
 
Answer & Explanation Answer: A) how people explain others' behavior

Explanation:

Attribution theory was designed to account for how people explain others' behavior. It is a theory in psychology states that the attributions people make about events and behavior can be classed as either internal or external. In an internal, or dispositional, attribution, people infer that an event or a person's behavior is due to personal factors such as traits, abilities, or feelings.

Report Error

View Answer Report Error Discuss

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

2 2658
Q:

Stress is a factor that contributes to heart disease risk.

A) TRUE B) FALSE
Answer & Explanation Answer: A) TRUE

Explanation:

True, Stress is a factor that contributes to heart disease risk.


More factors that contributes to heart disease risk are blood pressure, cholesterol, smoking, physical inactivity and overeating.

Report Error

View Answer Workspace Report Error Discuss

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

0 2658
Q:

Improve the bracketed part of the sentence.
If (you will approach) her sincerely, she will listen to your problem definitely.

A) you approach B) you are approaching
C) you will be approaching D) No improvement
 
Answer & Explanation Answer: A) you approach

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 2658
Q:

Who is the author of ' The Accidental Prime Minister - The Making and Unmaking of Manmohan Singh'

Answer

Sanjaya Baru

Report Error

View answer Workspace Report Error Discuss

3 2657
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 2657
Q:

The elements which have low value of ionization potential are strong:-

A) Oxidizing agents B) Reducing agents
C) Oxidizing and Reducing agents depending upon the reactants D) none of these
 
Answer & Explanation Answer: C) Oxidizing and Reducing agents depending upon the reactants

Explanation:

Oxidizing and reducing agents depend upon the reactant. Oxidizing and reducing agents are key terms used in describing the reactants in redox reactions that transfer electrons between reactants to form products.

Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 2657
Q:

Which substance contains metallic bonds?

A) C6H12O6 B) Hg
C) H2O D) NaCl
 
Answer & Explanation Answer: B) Hg

Explanation:

Metallic bond is a bond between two metal atoms. Here in the given option Hg is the only metal with metallic bond.

Report Error

View Answer Report Error Discuss

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

4 2656