Questions

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

In the following question, some part of the sentence may have errors. Find out which part of the sentence has an error and select the appropriate option. If a sentence is free from error, select 'No Error'.

No beggar who comes(A)/to our doors(B)/goes back empty handed.(C)/No error(D)

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

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 2099
Q:

The powder keg in the balkans refers to the

A) efforts taken to ease tensions throughout the region B) invasion of the region
C) larger number of munitions factories built in the region D) political instability of the region
 
Answer & Explanation Answer: D) political instability of the region

Explanation:

In the early 20th century, the Balkans were called a "powder keg" because the political situation in the region was very unstable. For a long time, the Ottoman Turks occupied the balkans, and with the rise of nationalism, some balkan states declared independence.

Report Error

View Answer Report Error Discuss

Filed Under: World History
Exam Prep: AIEEE , Bank Exams
Job Role: Analyst , Bank Clerk

1 2098
Q:

Which organelles supply energy to the cell?

A) Mitochondria B) Cytoplasm
C) Ribosomes D) None of the above
 
Answer & Explanation Answer: A) Mitochondria

Explanation:

Mitochondria which is present in both plant and animal cells supplies energy to the cells and hence called as the powerhouse of the cell.

Report Error

View Answer Report Error Discuss

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

3 2098
Q:

The mammalian heart is myogenic and it is regulated by nerves. The heartbeat originates from

A) sinoatrial node B) QRS wave
C) T wave D) hepatic portal system
 
Answer & Explanation Answer: C) T wave

Explanation:

The mammalian heartis called myogenic (myo = muscle, genie = originating from). It means the heart beat or the activities of the heart are auto regulated which originates from a muscle called nodal tissue.In the human heart,heartbeat originates and contraction is initiated by a special modified heart muscle known as sinoatrial node. It is located in the right atrium; while the QRS waves are the depolarisation of the ventricles, which initiates the ventricular contraction.The T-wave represents the repolarisation,that is, the return of the ventricles from excited tonormal state.Hepatic portal system is the unique vascular connection that exists between the digestive tract and liver. This vein carries blood from intestine to the liver.

Report Error

View Answer Report Error Discuss

Filed Under: Biology
Exam Prep: Bank Exams

3 2098
Q:

The HAVING clause does which of the following?

A) Acts like a WHERE clause but is used for columns rather than groups B) Acts like a WHERE clause but is used for rows rather than columns
C) Acts EXACTLY like a WHERE clause D) Acts like a WHERE clause but is used for groups rather than rows
 
Answer & Explanation Answer: D) Acts like a WHERE clause but is used for groups rather than rows

Explanation:
Report Error

View Answer Report Error Discuss

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

0 2098