Questions

Q:

If there is a lock on an adjacent key, an insert will fail if the isolation level is set to what?

A) committed read B) repeatable read
C) share read D) indexed read
 
Answer & Explanation Answer: B) repeatable read

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: IBM Certification

1 2730
Q:

Promotions and promotion mix :

What about the budget? We want our promotional campaigns to be cost effective enough. I don’t think we can afford celebrity endorsements as of now!

Answer

No problem. We can use network marketing as an alternative. The company already has its strong network of customers who can spread the word about its products. They can encourage referral rewards for say every three customers who will buy our product or avail our service.


We can also announce a contest for the customers to buy the product and win a chance to get himself broadcasted for the product advertisement. We can ask them to send in their photo along with the contest application form which they get alongwith the product they buy. So we don’t have to pay them as we would otherwise have to pay to a celebrity.

Report Error

View answer Workspace Report Error Discuss

0 2730
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:

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:

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

Access to potable water is most heavily limited by

A) Raw water supplies B) Money
C) Climate D) Precipitation
 
Answer & Explanation Answer: B) Money

Explanation:

The potable water is the water, which is tested and safe for drinking purpose and cooking preparations. The water is tested and purified in industries. So, the potable water is costly.

Access_to_potable_water_is_most_heavily_limited_by1557724525.jpg image

Hence, Access to potable water is most heavily limited by money.

Report Error

View Answer Report Error Discuss

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

2 2728
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