Questions

Q:

Amazon Rainforest Forests are located in which continent?

A) South America B) Australia
C) North America D) Antarctica
 
Answer & Explanation Answer: A) South America

Explanation:

Amazon Rainforest Forests are located in South America.

Report Error

View Answer Report Error Discuss

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

7 2151
Q:

Write a c program to print multiplication table

Answer

 #include<stdio.h>
int main(){
  int r,i,j,k;
  printf("Enter the number range: ");
  scanf("%d",&r);
  for(i=1;i<=r;i++){
      for(j=1;j<=10;j++)
           printf("%d*%d=%d ",i,j,i*j);
      printf("\n");
  }
  return 0;
}

Sample Output:
Enter the number range: 5

1*1=1 1*2=2 1*3=3 1*4=4 1*5=5 1*6=6 1*7=7 1*8=8 1*9=9 1*10=10
2*1=2 2*2=4 2*3=6 2*4=8 2*5=10 2*6=12 2*7=14 2*8=16 2*9=18 2*10=20
3*1=3 3*2=6 3*3=9 3*4=12 3*5=15 3*6=18 3*7=21 3*8=24 3*9=27 3*10=30
4*1=4 4*2=8 4*3=12 4*4=16 4*5=20 4*6=24 4*7=28 4*8=32 4*9=36 4*10=40
5*1=5 5*2=10 5*3=15 5*4=20 5*5=25 5*6=30 5*7=35 5*8=40 5*9=45 5*10=50

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

0 2151
Q:

Point out the error, if any, in the following program.

main()

{

    int a = 10;

    void f();

    a = f();

    printf ( "\n %d", a );

}

void f()

{

    printf ( "\n Hi ");

}

Answer

In spite of defining the function f() as returning void, the program is trying to collect the value returned by f() in the variable a.

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

0 2150
Q:

Along the coasts salinity is 

A) lowered B) increased
C) stable D) unaffected
 
Answer & Explanation Answer: A) lowered

Explanation:

Rainfall and addition of fresh water from rivers reduce salinity neat the coasts.

Report Error

View Answer Report Error Discuss

Filed Under: World Geography

1 2150
Q:

Why is it important to monitor ad campaign performance?

Answer

In order to determine if campaigns meet business marketing and conversion goals.

Report Error

View answer Workspace Report Error Discuss

0 2150
Q:

Core of earth is also known as

A) Barysphere B) Centrosphere
C) Besosphere D) Lithosphere
 
Answer & Explanation Answer: A) Barysphere

Explanation:

Core of earth is also known as Barysphere.

Report Error

View Answer Report Error Discuss

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

4 2150
Q:

How many bits are in a MAC address?

A) 64 B) 48
C) 32 D) 16
 
Answer & Explanation Answer: B) 48

Explanation:

MAC - Media Access Control, address is a globally unique identifier assigned to network devices, and therefore it is often referred to as hardware or physical address.

 

MAC addresses are 6-byte (48-bits) in length, and are written in MM:MM:MM:SS:SS:SS format.

Report Error

View Answer Report Error Discuss

0 2150
Q:

What is the correct order for Respiration?

A) Election transport chain – Krebs’ cycle – glycolysis B) Glycolysis – Krebs’ cycle – electron transport chain
C) Glycolysis – electron transport chain – Krebs’ cycle D) The Krebs’ cycle - electron transport chain - glycolysis
 
Answer & Explanation Answer: B) Glycolysis – Krebs’ cycle – electron transport chain

Explanation:

Cellular respiration can be broken down into three main steps:

1. Glycolysis,

2. The Kreb's cycle (The citric acid cycle), and

3. Electron Transport Chain.

 

https://hyperphysics.phy-astr.gsu.edu/hbase/biology/celres.html

Report Error

View Answer Report Error Discuss

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

3 2150