Questions

Q:

which of the following molecule contains a nonpolar covalent bond?

A) Br2 B) CO2
C) CCl4 D) CO
 
Answer & Explanation Answer: A) Br2

Explanation:

Br-Br.

In Br2, two of the same atoms, pull on each side of the bond is equal making it as non-polar.

The other options all include a significantly more electronegative atom (the oxygens and the chlorine), so those bonds are all polar covalent.

Report Error

View Answer Report Error Discuss

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

0 2092
Q:

What would be the output of the following program, if the array beigns at address 65486?

main()

{

    int arr[] = {12,14,15,23,45};

    printf ("%u %u", arr, &arr);

}

Answer

65486  65486

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

0 2092
Q:

C program to find whether a number is palindrome or not.

Answer

 #include<stdio.h>
int main(){
    int num,r,sum=0,temp;

    printf("Enter a number: ");
    scanf("%d",&num);

    temp=num;
    while(num){
         r=num%10;
         num=num/10;
         sum=sum*10+r;
    }
    if(temp==sum)
         printf("%d is a palindrome",temp);
    else
         printf("%d is not a palindrome",temp);

    return 0;
}

Sample output:
Enter a number: 131
131 is a palindrome

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

1 2092
Q:

Upanishads are the ______________________

A) Great Epics B) Story Books
C) Source of Hindu Philosophy D) Law Books
 
Answer & Explanation Answer: C) Source of Hindu Philosophy

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: General Awareness

3 2092
Q:

Which country was responsible for the idea of the internet?

A) United States B) Japan
C) India D) China
 
Answer & Explanation Answer: A) United States

Explanation:

United States was the country that was responsible for the idea of the internet.

Report Error

View Answer Report Error Discuss

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

1 2091
Q:

What is the primary purpose of the Supremacy Clause?

A) to explain why state and federal powers are always kept equal B) it has the power to divide the state and national governments
C) to outline why some powers must be implied rather than detailed D) None of the above
 
Answer & Explanation Answer: B) it has the power to divide the state and national governments

Explanation:
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 2091
Q:

A universal recipient blood group belongs to

A) O B) A
C) B D) AB
 
Answer & Explanation Answer: D) AB

Explanation:

In transfusions of packed red blood cells, individuals with type O Rh D negative blood are often called universal donors. Those with type AB Rh D positive blood are called universal recipients.

The immune system of a person with AB blood will accept blood from all possible donors, whether they have O, A, B, or AB blood. Since both A and B antigens are present in a person with AB blood, the recipient won't reject the blood. The body identifies that blood as "self" rather than "foreign."

Report Error

View Answer Report Error Discuss

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

12 2091
Q:

The functional connection between two neurons is a

A) Axon B) Synapse
C) Neuroglia D) Dendrites
 
Answer & Explanation Answer: B) Synapse

Explanation:

The functional connection between two neurons is a Synapse.

Report Error

View Answer Report Error Discuss

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

2 2091