Interview Questions

Q:

What determines the value of an item?

A) the capital required to build the factory B) the unlimited wants of the consumers
C) the resources consumed in production D) the amount of goods that are produced
 
Answer & Explanation Answer: A) the capital required to build the factory

Explanation:

Value is the monetary worth of something, in this case, it is an item.

In option A, since it is talking about capital which is measured in monetary terms.

The value of an item is determined by its quality and its age. Often antiques with good quality are sold in the market with a high value and are sometimes auctioned.

Report Error

View Answer Report Error Discuss

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

0 2913
Q:

Which is best for coding the standard libary for c++?

A) no trailing underscores on names B) complex objects are returned by value
C) have a member-swap() D) All of the mentioned
 
Answer & Explanation Answer: D) All of the mentioned

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: C++

1 2912
Q:

Market survey means...........

A) Market Research B) Market Planning
C) Marketing Strategies D) Market Monitoring
 
Answer & Explanation Answer: A) Market Research

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Marketing and Sales

0 2911
Q:

What are aggregate functions in SQL? What are those functions?

Answer

Aggregate functions in SQL are used to perform calculation on data. These functions are inbuilt in SQL and return a single value.

SUM( )



SUM function returns the sum or addition of all NOT NULL values of a column. For e.g. I have a Table employee with the fields id, name, salary and I want the sum of all salaries, I can use SUM function as shown
SELECT SUM(emp_salary) from employee;
Hence, if my column emp_salary has values 20,000, 22,000, 21,000; the output will be 63,000

AVG( )


 
AVG function returns the average of all NOT NULL values of a column. For e.g. I have a Table employee with the fields id, name, salary and I want the average of all salaries, I can use AVG function as shown
SELECT AVG(emp_salary) from employee;
Hence, if my column emp_salary has values 20,000, 22,000, 21,000; the output will be 21,000

COUNT( )



COUNT function returns the number of rows or values of a table. For e.g. I have a Table employee with the fields id, name, salary and I want the count of all rows, I can use COUNT function as shown
SELECT COUNT(*) from employee;

Max ( ) and Min ( )



MAX function returns the largest value of a column in a table. For e.g. I have a Table employee with the fields id, name, salary and I want the maximum salary of an employee, I can use MAX function as shown
SELECT MAX(emp_salary) from employee;
Hence, if my column emp_salary has values 20,000, 22,000, 21,000; the output will be 22,000



MIN function returns the smallest value of a column in a table. For e.g. I have a Table employee with the fields id, name, salary and I want the minimun salary of an employee, I can use MIN function as shown
SELECT MIN(emp_salary) from employee;
Hence, if my column emp_salary has values 20,000, 22,000, 21,000; the output will be 20,000

Report Error

View answer Workspace Report Error Discuss

Subject: Oracle

0 2904
Q:

What is the managed execution process?

Answer

Managed execution process is a process where CLR executes the managed code. The steps involved in this process are:



  1.  Choosing the right compiler

  2.  Compiling the code to MSIL. This also generates the required metadata.

  3.  Compile the MSIL ode to native machine code.

  4. Executing the code with the variety of services available

Report Error

View answer Workspace Report Error Discuss

Subject: .NET

0 2901
Q:

Explain the difference between data mining and data warehousing.

Answer

Data mining is a method for comparing large amounts of data for the purpose of finding patterns. Data mining is normally used for models and forecasting. Data mining is the process of correlations, patterns by shifting through large data repositories using pattern recognition techniques.


Data warehousing is the central repository for the data of several business systems in an enterprise. Data from various resources extracted and organized in the data warehouse selectively for analysis and accessibility.

Report Error

View answer Workspace Report Error Discuss

0 2900
Q:

Do you prefer to work on your own or as part of team?

Answer

Even if you like to work as a team or independent. Make sure you show interest in both, As most jobs require you to work both as part of team and independent.

In general, the idea is to say what you prefer without being negative about the thing you don’t.

Independently -
If you have done enough research on the job posting and mostly need to work independently then you can say something like “I prefer to work alone, but I find that occasionally working with a team feels creative and fun. Always felt, it is easy to solve problems being part of a team.

Work in a Team -
On the other hand, if your research says that your job requires working in a team then you can say something like "I like the dynamics of working in a team, but do like working independently when the assignment requires it.”

Report Error

View answer Workspace Report Error Discuss

Subject: Team Work

4 2900
Q:

If you are current on the owner of a set, what is the difference between an obtain next and obtain first in IDMS?

Answer

No difference. There is a difference between obtain first and obtain next for an area sweep, but not when current on the owner in a set.

Report Error

View answer Workspace Report Error Discuss

0 2896