Interview Questions

Q:

What is difference between baseband and broadband transmission?

Answer

In a baseband transmission, the entire bandwidth of the cable is consumed by a single signal. In broadband


transmission, signals are sent on multiple frequencies, allowing multiple signals to be sent simultaneously.

Report Error

View answer Workspace Report Error Discuss

1 4004
Q:

Which Bank has obtained RBI approval to open representative offices in Kuwait and Singapore?

A) SBI B) Federal Bank
C) HDFC D) ICICI
 
Answer & Explanation Answer: B) Federal Bank

Explanation:

Federal Bank has obtained RBI approval to open representative offices at Kuwait and Singapore.

The bank has been the preferred banker for NRI's and the NRI friendly measures have resulted in increasing inflow of foreign remittances.

The bank already has its representative offices in Abu Dhabi and Dubai and it has tied up with 110+ overseas banks/remittance partners.

Report Error

View Answer Report Error Discuss

Filed Under: Bank Interview
Exam Prep: Bank Exams , CAT
Job Role: Bank Clerk , Bank PO

6 4000
Q:

When will you define a method as static?

Answer When a method needs to be accessed even before the creation of the object of the class then we should declare the method as static.
Report Error

View answer Workspace Report Error Discuss

Subject: Java

0 3996
Q:

What is accumulated loss?

Answer

A loss (or losses) from previous years carried forward in order to offset future earnings. This reduces the tax burden for the years with profit as the accumulated losses are deducted from the taxable profit.

Report Error

View answer Workspace Report Error Discuss

Subject: Accounts Payable

0 3991
Q:

The threshold limit upto which coins can be issued as per the Coinage Act 2011 ? 

A) 100 B) 200
C) 500 D) 1000
 
Answer & Explanation Answer: D) 1000

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Bank Interview
Exam Prep: Bank Exams , CAT
Job Role: Bank Clerk , Bank PO

12 3988
Q:

Write a c program for bubble sort.

Answer

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

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

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

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

  //Bubble sorting algorithm
  for(i=s-2;i>=0;i--){
      for(j=0;j<=i;j++){
           if(a[j]>a[j+1]){
               temp=a[j];
              a[j]=a[j+1];
              a[j+1]=temp;
           }
      }
  }

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

  return 0;
}

Report Error

View answer Workspace Report Error Discuss

Subject: Web Technology

0 3988
Q:

Selecting and managing marketing channels :

On what criteria can channel members be evaluated for their proper selection?

Answer

The SCPCA method can be used to evaluate channel members.


a) Sales (S): How much sales each channel member can give within a cetain time frame


b) Cost(C): How much cost would be incurred for each channel?


c) Profitability(P): Which channel can give better profitability to the company?


d) Control(C): Whether company can have better control over its channel members or not.


e) Adaptability (A): Whether the channel alternatives are flexible enough to any changes or not. The channel meeting the objectives of the company is selected

Report Error

View answer Workspace Report Error Discuss

0 3984
Q:

Who is responsible for maintaining the Accounts receivable in an organization?

Answer

Accountants... in big organization there will be a department to maintain AR department.

Report Error

View answer Workspace Report Error Discuss

1 3982