Interview Questions

Q:

Name the various parties involved in IR system?

Answer

The main parties involved in the IR system are: 


i.) Employers – They are the ones who possess the rights to hire the employees and remove them. They also possess the rights to relocate, close or merge the business. They can opt for technological changes as and when they see it in the interest of business. 


ii.) Employees – They are actually the ones who keep the business moving. They possess the rights to voice their opinions and feelings while striving for betterment. They usually form the unions to negotiate with the employers.


iii.) Government – Government is the one who influences the IR system with laws, rules, agreements, awards of court etc. They also include third parties & labour and tribunal courts to manage the IR system.

Report Error

View answer Workspace Report Error Discuss

Subject: Law

7 6671
Q:

What is the difference between BRD, SRS and Use Case documents?

Answer

BRD - Business Requirement document is consist of functional Business Requirements, Gap Analysis (between current and future scenarios), In scope and Out of scope of the project, Business rules, Assumptions, Risk etc.


SRS - Source Requirement Specification is consist of Use cases, Use Case Scenarios, Activity flow diagram, Non functional Business Requirements.


Use cases - are the pictorial representation of user centric view of the system.

Report Error

View answer Workspace Report Error Discuss

1 6665
Q:

Which two method you need to implement for key Object in HashMap ?

Answer

In order to use any object as Key in HashMap, it must implements equals and hashcode method in Java.

Report Error

View answer Workspace Report Error Discuss

4 6638
Q:

What is the data structures used to perform recursion?

Answer

Stack. Because of its LIFO (Last In First Out) property it remembers its ‘caller’ so knows whom to return when the function has to return. Recursion makes use of system stack for storing the return addresses of the function calls. Every recursive function has its equivalent iterative (non-recursive) function. Even when such equivalent iterative procedures are written, explicit stack is to be used.

Report Error

View answer Workspace Report Error Discuss

Subject: C++

3 6626
Q:

What is the user-defined header file extension in c++?

A) cpp B) h
C) hf D) none of these
 
Answer & Explanation Answer: B) h

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: C++

1 6622
Q:

Which of the following are incorrect form of StringBuffer class constructor  ?

A) StringBuffer(int size , String str) B) StringBuffer(int size)
C) StringBuffer(String str) D) StringBuffer()
 
Answer & Explanation Answer: A) StringBuffer(int size , String str)

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Java
Job Role: Database Administration , IT Trainer

3 6574
Q:

What do you understand by Intercompany Settlement?

Answer

A key functional area of SAP for Utilities that supports cross-company exchange of settlement data based on international standards such as EDI, XML, and Microsoft Excel.


Intercompany data exchange manages data transfer between retailers, distributors, and independent service operators with special regard to the requirements in deregulated markets.

Report Error

View answer Workspace Report Error Discuss

Subject: Accounts Payable

2 6508
Q:

Difference between system call and API

Answer

A system call is a function.subroutine which interrupts the currently executing program and transfers control to the interrupt routine.The contents of the executing program are saved and after the interrupt routine finishes its function,control is transferred back to the executing program. If we talk in the context of Linux then System calls are called kernel mode.


Whereas API (Application Programming Interface) is a function or a set of functions, objects, protocols or data-structures for the support of application development for developers/programmers. It is actually a kind of function definition which specifies how to make available of a specific service of the system/OS to the other program/process or system. Read more at: https://www.queryhome.com/48442/os-what-is-difference-between-system-call-and-api

Report Error

View answer Workspace Report Error Discuss

2 6484