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:

Who appointed as goodwill ambassador for Nepal tourism?

A) Madhuri Dixit B) Jaya Pradha
C) Priyanka Chopra D) Deepika Padukone
 
Answer & Explanation Answer: B) Jaya Pradha

Explanation:

Former Member of Parliament of India and cine artist Jaya Prada has been appointed the goodwill ambassador for the promotion of Nepal's tourism.

Report Error

View Answer Report Error Discuss

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

3 2094
Q:

Gravitational force is maximum at which place

A) Poles B) Tropic of cancer
C) Tropic of capricorn D) Equator
 
Answer & Explanation Answer: A) Poles

Explanation:

Gravitational force is the force that binds everything at the surface of the earth. Gravitational force is maximum at Poles.

Report Error

View Answer Report Error Discuss

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

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

Project Quality Management - Processes

Describe the Inputs, Tools and Techniques , Outputs included in the Perform Quality Assurance?

Answer

I. Inputs



  • Quality management plan

  • Quality metrics

  • Process improvement plan 

  • Work performance information 

  • Approved change requests

  • Quality control measurements 

  • Implemented change requests

  • Implemented corrective actions 

  • Implemented defect repair

  • Implemented preventive actions 


II. Tools and Techniques



  • Quality planning tools and techniques

  • Quality audits

  • Process analysis 

  • Quality control tools and techniques


III. Outputs



  • Requested changes

  • Recommended corrective actions

  • Organizational process assets (updates)

  • Project management plan (updates)

Report Error

View answer Workspace Report Error Discuss

0 2094
Q:

Project Communications Management - Processes

Describe the Inputs, Tools and Techniques , Outputs included in the Performance Reporting?

Answer

I. Inputs



  • Work performance information

  • Performance measurements

  • Forecasted completion

  • Quality control measurements

  • Project management plan


                - Performance measurement baseline



  • Approved change requests

  • Deliverables


II. Tools and Techniques



  • Information presentation tools

  • Performance information gathering and compilation

  • Status review meetings

  • Time reporting systems

  • Cost reporting systems


III. Outputs



  • Performance reports

  • Forecasts

  • Requested changes

  • Recommended corrective actions

  • Organizational process assets (updates)

Report Error

View answer Workspace Report Error Discuss

0 2093
Q:

If an animal is an ectotherm, it has?

A) A skeleton on the inside of its body B) A body that does not produce much internal heat
C) A skeleton on the outside of its body D) A body that regulates its own internal temperature
 
Answer & Explanation Answer: B) A body that does not produce much internal heat

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Animals and Birds
Exam Prep: AIEEE , Bank Exams , CAT , GATE
Job Role: Analyst , Bank Clerk , Bank PO

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