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

Why the temporary registers W and Z are named so i mean we start from A, B, C, D, E then H and L coz H stands for higher bit and L for lower bit of the address pinted by memory pointer.. but wats W and Z for?

Answer

As W and Z alphabets are not widely used similarly as W and Z is internally used they would have been named so

Report Error

View answer Workspace Report Error Discuss

Subject: Hardware

0 2093
Q:

The first Olympiad was held in Greece in the year

Answer

776 BC

Report Error

View answer Workspace Report Error Discuss

Subject: World History

2 2093
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 2093
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:

Improve the bracketed part of the sentence.
The stranded pilgrims (had waited) in the bitter cold for more than two hours now.

A) has been waiting B) have been waiting
C) have waited D) no improvement
 
Answer & Explanation Answer: B) have been waiting

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 2092
Q:

Select the antonym of
therapeutic

A) ameliorative B) analeptic
C) salubrious D) inimical
 
Answer & Explanation Answer: D) inimical

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams , CAT

0 2091
Q:

The geologic time scale is subdivided into

A) Eon B) Era
C) Periods D) All of the above
 
Answer & Explanation Answer: D) All of the above

Explanation:

The geologic time scale is subdivided into 4 units called Eon, Era, Periods and Epochs.

Report Error

View Answer Report Error Discuss

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

3 2091