Interview Questions

Q:

Which kind of inheritance is not supported directly through classes in java?

A) Multilevel B) Multiple
C) Single D) Hirarcheal
 
Answer & Explanation Answer: B) Multiple

Explanation:

Multiple inheritance is not supported directly but it is achieved through the concept of Interface

Report Error

View Answer Report Error Discuss

Filed Under: Java
Job Role: Software Architect

0 3313
Q:

Managing direct and online marketing :

What is direct marketing? Give some examples.

Answer

In direct marketing, there is a direct interaction of the customers with the seller without any intermediaries. Here, the role of the intermediaries is nil. The medium used is more direct using telephone, mail, internet where the seller can directly reach out to the consumer. Examples of such marketing include telemarketing, email, voicemail marketing, door-to-door selling etc. This kind of marketing is more time saving as the problem of distance which may otherwise exist between the buyer and seller is eliminated and is also cost effective as it minimizes commuting costs.

Report Error

View answer Workspace Report Error Discuss

0 3312
Q:

What are string functions in VBScript?

Answer

Asc() - Returns ANSI Character Code 


Chr() - Returns Character from ANSI Code 


InStr() - Find a string within another 


InStrRev() - Find a string within another (Reverse) 


LCase() - Convert a string to lowercase 


Left() - Crops a string from left 


Len() - Determine the length of a string 


LTrim() - Remove leading spaces from a string 


Mid() - Crops a string 


Replace() - Replace a substring within a string 


Right() - Crops a string from right 


RTrim() - Remove trailing spaces from a string 


Space() - Creates a string with the specified number of spaces 


StrComp() - Compare two strings 


String() - Creates a repeated character string 


StrReverse() - Reverse the characters of a string 


Trim() - Remove both leading and trailing spaces from a string 


UCase() - Convert a string to uppercase 

Report Error

View answer Workspace Report Error Discuss

Subject: Web Technology

5 3308
Q:

What is the purpose of Buffer class in Node.js?

Answer

Buffer class could be a global class and may be accessed in application without importing buffer module. A Buffercould be a quite an array of integers and corresponds to a raw memory allocation outside the V8 heap. A Buffer can not be resized.

Report Error

View answer Workspace Report Error Discuss

Subject: Web Technology
Job Role: Software Architect

0 3307
Q:

What is a PL/SQL package? what are its Advantages ?

Answer

A package is a collection of related PL/SQL objects. The package contains a body and a specification. The package specification has the declaration which is public and can be used in the PL/SQL sub programs inside the package.


The package body holds the implementation of all the PL/SQL objects declared in the specification.


Example of a PL/SQL Package.


CREATE OR REPLACE PACKAGE emp_data AS 


PROCEDURE add_employee (


      ename VARCHAR2,


      job VARCHAR2,


      mgr NUMBER,


      sal NUMBER,


      deptno NUMBER);


END emp_actions;


 


CREATE OR REPLACE PACKAGE BODY emp_data AS 


PROCEDURE add_employee (


       ename VARCHAR2,


       job VARCHAR2,


       mgr NUMBER,


       sal NUMBER,


       deptno NUMBER) IS


BEGIN


         INSERT INTO emp VALUES (empno_seq.NEXTVAL, ename, job, mgr, SYSDATE, comm, deptno);


END add_employee;


END emp_data;


Advantages of  PL/SQL packages :


Packages are easier for application designing, encapsulating data, additional functionality and better performance. An application has various modules which can be placed in packages and handled easier.


 

Report Error

View answer Workspace Report Error Discuss

Subject: Oracle

0 3307
Q:

What are the advantages and the disadvantages of equity finance and debt finance to a company raising finance and investors?

Answer

The advantage of equity finance for a company – raising money by selling shares – is that this money does not have to be repaid. However, new shareholders usually get to have a say in how the company is run. Despite these rights, equity is often seen as a risky choice for investors as they will lose all their money if the company doesn’t prosper. If it does well, on the other hand, they may see their stake multiply in value many times over.


Debt finance – money raised through loans – must be repaid eventually by a company, usually with interest, but lenders won’t be able to exert as much influence as shareholders over how the company does business. The debt of a reliable company is usually seen as a safe investment, but fixed repayment schedules means that there are few opportunities for large returns.

Report Error

View answer Workspace Report Error Discuss

Subject: Bank Interview

0 3302
Q:

What do you like most about being a medical assistant?

Answer

Employers often ask this question to gauge whether you are someone who enjoys your job and wants to perform well on the job. Simply explain what you like, and tell why you find these responsibilities to be rewarding.


 


Example Answer ::


My favorite part of being a medical assistant is working with different patients who come into the office. I like being the friendly face that patients see when they come back into the exam area. I want patients to enjoy coming into the office, and I want to represent my office well.

Report Error

View answer Workspace Report Error Discuss

6 3299
Q:

How can u write programmatically value help to a field without using search help and match code?

Answer

By using two types of function modules to be called in SAP Script:

1)HELP_OBJECT_SHOW_FOR_FIELD
2)HELP_OBJECT_SHOW

Report Error

View answer Workspace Report Error Discuss

Subject: ABAP

0 3297