Questions

Q:

Sum of factors of 4b2c2-(b2+c2-a2)2 is 

A) a + b + c B) 2(a + b + c)
C) 0 D) 1
 
Answer & Explanation Answer: B) 2(a + b + c)

Explanation:
Report Error

View Answer Report Error Discuss

0 2883
Q:

Autocorrect was originally designed to replace

A) Misspelled words B) Grammatically incorrect
C) Repetitive words D) All of the above
 
Answer & Explanation Answer: A) Misspelled words

Explanation:

autocorrect_was_originally_designed_to_replace1561613833.jpg image

 

Autocorrect was originally designed to replace Misspelled words. Its purpose is as part of the spell checker to correct common spelling or typing errors, saving time for the user. It is commonly found in word processors and text editing interfaces for smartphones, computers, etc.

Report Error

View Answer Report Error Discuss

11 2882
Q:

Calcium absorption is facilitated by the presence of

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

Explanation:

The presence of vitamin D in the body enhances the absorption of calcium by the intestine.

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

Write a c program for insertion sort.

Answer

#include<stdio.h>
int main(){

  int i,j,s,temp,a[20];

  printf("Enter total elements: ");
  scanf("%d",&s);

  printf("Enter %d elements: ",s);
  for(i=0;i<s;i++)
      scanf("%d",&a[i]);

  for(i=1;i<s;i++){
      temp=a[i];
      j=i-1;
      while((temp<a[j])&&(j>=0)){
      a[j+1]=a[j];
          j=j-1;
      }
      a[j+1]=temp;
  }

  printf("After sorting: ");
  for(i=0;i<s;i++)
      printf(" %d",a[i]);

  return 0;
}

Output:
Enter total elements: 5
Enter 5 elements: 3 7 9 0 2
After sorting:  0 2 3 7 9

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

0 2881
Q:

Where is a hub specified in the OSI model?

A) Data link layer B) Session layer
C) Application Layer D) Physical layer
 
Answer & Explanation Answer: D) Physical layer

Explanation:

Hubs are specified or operate at Layer1 i.e, the physical layer in the OSI model. Hubs regenerate electrical signals. A hub sends data packets (frames) to all devices on a network, regardless of any MAC addresses contained in the data packet.

Report Error

View Answer Report Error Discuss

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

0 2881
Q:

What is one map unit equivalent to

A) 1% recombination frequency B) the distance between a pair of homologous chromosomes
C) Both A & B D) 1 nanometer of distance between two genes
 
Answer & Explanation Answer: A) 1% recombination frequency

Explanation:

The distance between two genes is measured with a unit called map unit. One map unit is equivalent to 1% recombination frequency.

Report Error

View Answer Report Error Discuss

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

3 2880
Q:

Richest man in Asia 2018?

A) Mukesh Ambani B) Jack Ma
C) Prem Ji D) Lee
 
Answer & Explanation Answer: A) Mukesh Ambani

Explanation:

Indian business magnate Mukesh Ambani topples Jack Ma as Asia’s richest person as he positions Reliance Industries to disrupt the e-commerce space in India.

 

The chairman of India’s refining-to-telecoms conglomerate, Ambani was estimated to be worth US$44.3 billion in July 2018 with the share price of Reliance Industries rising 1.6 per cent to a record 1,099.8 rupees (US$16.05), according to Bloomberg Billionaires Index.

 

Jack Ma’s wealth stood at US$44 billion at the close of trading on the sameday in the US, where the company is listed.

Report Error

View Answer Report Error Discuss

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

5 2879
Q:

5 Digits Number?

What 5-digit number has the following features:

If we put the numeral 1 at the beginning, we get a number three times smaller than if we put the numeral 1 at the end of the number.

Answer

We can make an equation:


3(100000 + x) = 10x+1


(Why? Well, adding 100000 puts a 1 at the front of a five-digit number, and multiplying by 10 and adding 1 puts a 1 at the end of a number)


Solving this gives:


10x+1 = 3(100000 + x)
10x+1 = 300000 + 3x
10x = 299999 + 3x
7x = 299999
x = 299999/7 = 42857


The answer is 42857 (142857 is three times smaller than 428571).

Report Error

View answer Workspace Report Error Discuss

9 2879