Questions

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

Which state launched Kalia scholarship scheme to boost education for farmers children?

A) Odisha B) Uttar Pradesh
C) Haryana D) Madhya Pradesh
 
Answer & Explanation Answer: A) Odisha

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

"Sirius", the brightest star outside solar system, is also called ______.

A) Cat star B) Dog star
C) Fox star D) Lion star
 
Answer & Explanation Answer: B) Dog star

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: General Science
Exam Prep: Bank Exams

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

Visceral muscle is another name for

A) Cardiac muscle B) Smooth muscle
C) Skeletal muscle D) None of the above
 
Answer & Explanation Answer: B) Smooth muscle

Explanation:

Visceral muscle is another name for Smooth muscle.

Report Error

View Answer Report Error Discuss

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

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

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