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:

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:

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:

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

What are the minimal cost and minimal risk solution?

Answer

In binary representation there are some states that believed to be never occurred due to some particular functionality of a given circuit. If zero output is assigned to such states then it is called minimal risk solution as  we are resetting the formidable states which could be occurred accidentally. Another approach is to assigned a don't care to them so it results in lesser logic and hence is called minimal cost solution.

Report Error

View answer Workspace Report Error Discuss

Subject: Hardware

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:

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

Which of the following is a physical property of water?

A) Tasteless B) odorless
C) conducts electricity D) All of the above
 
Answer & Explanation Answer: D) All of the above

Explanation:
Report Error

View Answer Report Error Discuss

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

5 2092