Questions

Q:

Write a c program to check whether a number is strong or not.

Answer

#include<stdio.h>
int main(){
  int num,i,f,r,sum=0,temp;

  printf("Enter a number: ");
  scanf("%d",&num);
 
  temp=num;
  while(num){
      i=1,f=1;
      r=num%10;

      while(i<=r){
         f=f*i;
        i++;
      }
      sum=sum+f;
      num=num/10;
  }
  if(sum==temp)
      printf("%d is a strong number",temp);
  else
      printf("%d is not a strong number",temp);

  return 0;
}

Sample output:
Enter a number: 145
145 is a strong number

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

0 2020
Q:

What is an idle thread?

Answer

The special thread a dispatcher will execute when no ready thread is found.

Report Error

View answer Workspace Report Error Discuss

1 2020
Q:

What is virtual memory?

Answer

Virtual memory is hardware technique where the system appears to have more memory that it actually does. This is done by time-sharing, the physical memory and storage parts of the memory one disk when they are not actively being used.

Report Error

View answer Workspace Report Error Discuss

0 2020
Q:

What are the things that you need to check in a retail market, as a first line supervisor?

Answer

Applicant should answer that as a first line supervisor, he/she should directly supervise sales workers in a retail department. He/She would get involved in management functions such as purchasing, budgeting, accounting and ensure quality of supply apart from his/her regular supervisor work.

Report Error

View answer Workspace Report Error Discuss

Subject: Retail

0 2020
Q:

Which of the following is not true of color blindness?

A) Color blind people learn to rely on shapes, patterns, and positions of signs and signals. B) Red-green color blindness is the most common type of color blindness.
C) A color blind person cannot see any colors. D) For some people, it might be difficult to recognize colors of traffic lights and signs.
 
Answer & Explanation Answer: C) A color blind person cannot see any colors.

Explanation:
Report Error

View Answer Report Error Discuss

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

2 2020
Q:

Through specialization and international trade, a nation

A) will attain some combination of goods lying inside its production possibilities curve B) will shift its production possibilities curve towards left
C) can attain some combination of goods lying outside its production possibilities curve D) will shift its production possibilities curve towards right
 
Answer & Explanation Answer: C) can attain some combination of goods lying outside its production possibilities curve

Explanation:
Report Error

View Answer Report Error Discuss

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

0 2020
Q:

What is the chemical formula of aluminium nitride?

A) AlN B) Al2N
C) AlN2 D) AlN3
 
Answer & Explanation Answer: A) AlN

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Chemistry
Exam Prep: Bank Exams

1 2020
Q:

In the following question, a word has been written in four different ways out of which only one is correctly spelt. Select the correctly spelt word

A)

Auixiliary

B)

Auxiliary

C)

Auxiliarry

D)

Auixliary

 
Answer & Explanation Answer: C)

Auxiliarry



Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams , CAT , GRE , TOEFL
Job Role: Bank Clerk , Bank PO

0 2020