Questions

Q:

Capitalism is characterized by which of the following?

A) Profits B) A market economy
C) Privately owned businesses D) All the above
 
Answer & Explanation Answer: D) All the above

Explanation:

Capitalism is an economic system followed by a country or a society which is characterized by Privately owned businesses, a market economy and profits.


Capitalism is defined as "production for exchange" driven by the desire for personal accumulation of money receipts in such exchanges, mediated by free markets. The markets themselves are driven by the needs and wants of consumers and those of society as a whole in the form of the bourgeois state.

Report Error

View Answer Report Error Discuss

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

0 2729
Q:

To evaluate a piece of media means to

A) disseminate the contents to a wide audience B) communicate the information to a group of people
C) express the main idea in a clear and specific way D) judge the purpose and message in a thoughtful way
 
Answer & Explanation Answer: D) judge the purpose and message in a thoughtful way

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

3 2729
Q:

For intra-State movement, the e-way bill by GST council will be rolled out in a phased manner beginning April 15 and will cover all the States by

A) May 1 B) June 1
C) May 31 D) July 31
 
Answer & Explanation Answer: A) May 1

Explanation:

For intra-State movement, the e-way bill will be rolled out in a phased manner beginning April

15 and will cover all the States by June 1. Businesses will continue to file summary sales return

GSTR-3B until June as the GST (Goods and Services Tax) Council has extended the present

system of return-filing by three months. Electronic way or e-way bill for movement of goods

between States would be implemented from April 1.

Report Error

View Answer Report Error Discuss

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

0 2729
Q:

Where is it legal to tie up your boat?

A) to a lighted buoy B) to a mooring buoy
C) to a non-lateral marker D) to a safe water marker
 
Answer & Explanation Answer: B) to a mooring buoy

Explanation:

Mooring buoy are white with a blue horizontal band. They usually are placed in marinas and other areas where boats are allowed to anchor. These are the only buoys you may tie up to legally.

buoy_mooring_can1532169062.jpg image

Report Error

View Answer Report Error Discuss

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

3 2729
Q:

Write a c program for quick sort.

Answer

#include<stdio.h>

void quicksort(int [10],int,int);

int main(){
  int x[20],size,i;

  printf("Enter size of the array: ");
  scanf("%d",&size);

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

  quicksort(x,0,size-1);

  printf("Sorted elements: ");
  for(i=0;i<size;i++)
    printf(" %d",x[i]);

  return 0;
}

void quicksort(int x[10],int first,int last){
    int pivot,j,temp,i;

     if(first<last){
         pivot=first;
         i=first;
         j=last;

         while(i<j){
             while(x[i]<=x[pivot]&&i<last)
                 i++;
             while(x[j]>x[pivot])
                 j--;
             if(i<j){
                 temp=x[i];
                  x[i]=x[j];
                  x[j]=temp;
             }
         }

         temp=x[pivot];
         x[pivot]=x[j];
         x[j]=temp;
         quicksort(x,first,j-1);
         quicksort(x,j+1,last);

    }
}

Output:
Enter size of the array: 5
Enter 5 elements: 3 8 0 1 2
Sorted elements: 0 1 2 3 8

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

0 2728
Q:

Which payment type can help you stick to a budget?

A) Payday loans B) Cash advances
C) Debit cards D) Credit cards
 
Answer & Explanation Answer: C) Debit cards

Explanation:

There are two payment types that will help you stick to your budget.

1. Cash
2. Debit Card

The amount in the debit card is the only amount you can spend to stay within budget.

These method work because once you spend your money, you are done. You don’t have anything else to spend.

 

Credit cards, payday loans, and cash advances are all loans on future income. When you use a credit card, there is always just a little bit more you can spend. These types do not help you budget properly. In fact, these types encourage you to spend beyond your means and be out of budget.

Report Error

View Answer Report Error Discuss

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

1 2727
Q:

Money can be transferred using mobile phones through the service called

A) NEFT B) ECS
C) IMPS D) RTGS
 
Answer & Explanation Answer: C) IMPS

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: General Awareness
Exam Prep: Bank Exams

36 2727
Q:

How many Enzymes are there in the Human Body?

Answer

There are nearly about 75000 enzymes of 3 classes are there in the human body. They are :


1. Metabolic Enzymes - Enzymes that help to run our Bodies


2. Digestive Enzymes - Enzymes that help in digesting Food


3. Food Enzymes - Enzymes from raw foods that start our Food digestion.

Report Error

View answer Workspace Report Error Discuss

Subject: Biology Exam Prep: AIEEE , Bank Exams , CAT
Job Role: Analyst , Bank PO

11 2727