Questions

Q:

The system board is also known as the

A) Mother board B) Main circuit board
C) Baseboard D) All of the above
 
Answer & Explanation Answer: D) All of the above

Explanation:

The system board is also known as the Mother board, Main circuit board, Baseboard or logic board.

Report Error

View Answer Report Error Discuss

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

4 2004
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 2004
Q:

What is SMP?

Answer

To achieve maximum efficiency and reliability a mode of operation known as symmetric multiprocessing is used. In essence, with SMP any process or threads can be assigned to any processor.

Report Error

View answer Workspace Report Error Discuss

1 2004
Q:

In the following question, the sentence given with blank to be filled in with an appropriate word. Select the correct alternative out of the four and indicate it by selecting the appropriate option.
 
She does not agree, and ______ does Anita

A)

also

B)

even

C)

neither

D)

so

 
Answer & Explanation Answer: C)

neither



Explanation:
Report Error

View Answer Report Error Discuss

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

0 2003
Q:

In the following question, the sentence given with blank to be filled in with an appropriate word. Select the correct alternative out of the four and indicate it by selecting the appropriate option.

Ramesh ______ into his own trap

A) falling B) was fell
C) fell D) fall down
 
Answer & Explanation Answer: C) fell

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 2003
Q:

With YouTube Analytics, you can track metrics on

A) TrueView ad skip rates B) Playback locations
C) Cost-per-channel visit D) All of the above
 
Answer & Explanation Answer: D) All of the above

Explanation:

With YouTube Analytics, you can track metrics on Playback locations. Playback locations gives you how many views your channel got and what videos they watched. 

 

With_YouTube_Analytics,_you_can_track_metrics_on1554273173.jpg image

 

With YouTube Analytics we can Find out who's watching, what they like to watch, and which videos could make you the most money.

Report Error

View Answer Report Error Discuss

4 2002
Q:

What are the major flags in 8086?

Answer

In 8086 Carry flag, Parity flag, Ausiliary caarry flag, Zero flag, Overflow flag, Trace flag, Interrupt flag, Direction flag, and Sign flag.

Report Error

View answer Workspace Report Error Discuss

Subject: Hardware

0 2002
Q:

Which Indian armed force has conducted ‘Exercise Topchi 2019’?

A) Indian Army B) Indian Air Force
C) Indian Coast Guard D) Indian Navy
 
Answer & Explanation Answer: A) Indian Army

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

1 2002