Interview Questions

Q:

Why are commercial advertisements made?

A) To convince the viewer to buy a product B) To confuse the viewer about the different products in market
C) To dissuade the viewer from buying a product D) To highlight the flaws of a product
 
Answer & Explanation Answer: A) To convince the viewer to buy a product

Explanation:

Commercial advertisements are created for the purpose of raising the awareness of the public on a company's products or services.

 

* It is very important for a business to have its goods and services known to the public.

 

* It can greatly boost its sales by attracting more csutomers which in effect helps a company grow and become successful.

Report Error

View Answer Report Error Discuss

Filed Under: Advertising and Media
Exam Prep: AIEEE
Job Role: Analyst

0 2130
Q:

What is DHCP scope?

Answer

A scope is a range, or pool, of IP addresses that can be leased to DHCP clients on a given subnet.

Report Error

View answer Workspace Report Error Discuss

0 2130
Q:

How does Microsoft classify security threats to its software?

Answer

Microsoft classifies such threats into 4 indicators, which are low, moderate, important, and critical. Such indicators are available as reference under the Microsoft bulletin.

Report Error

View answer Workspace Report Error Discuss

0 2129
Q:

How would you handle the family of a patient in your care who is displeased with your care of the patient?

Answer

Sample Answers :


I would listen to their concerns, and reassure them that I was doing my very best for their loved one.


 Sometimes family members are looking for someone or something to blame for what their loved one is going through. I would try to reassure them that the patient was getting the best quality of care available.


 I would listen to their concerns, and make sure that if any were well founded they were addressed immediately.

Report Error

View answer Workspace Report Error Discuss

5 2127
Q:

How to get the contents of an input box using Javascript?

Answer

Use the "value" property.
var myValue = window.document.getElementById("MyTextBox").value;

Report Error

View answer Workspace Report Error Discuss

Subject: Web Technology

0 2123
Q:

Explain about creating VB applications in excel ?

Answer

User defined functions can be created into the Microsoft spreadsheet. Spreadsheets can be customized according to the user needs by using VB applications. To create visual basic functions useful for spreadsheet you need to click Tools and select Macros where you will need to click on Visual basic editor.

Report Error

View answer Workspace Report Error Discuss

0 2122
Q:

Describe Use Case Testing.

Answer

Use Case: A use case is a description of the process which is performed by the end user for a particular task. Use case contains a sequence of step which is performed by the end user to complete a specific task or a step by step process that describe how the application and end user interact with each other. Use case is written by the user point of view.


Use case Testing: the use case testing uses this use case to evaluate the application. So that, the tester can examines all the functionalities of the application. Use case testing cover whole application, tester performs this testing in step by step process to complete one task

Report Error

View answer Workspace Report Error Discuss

Subject: QA Testing

0 2122
Q:

What are the usages of the Command object in ADO.NET?

Answer

The following are the usages of the Command object in AD0.NET:

The Command object in AD0.NET executes a command against the database and retrieves a DataReader or DataSet object.

  =>  It also executes the INSERT, UPDATE, or DELETE command against the database.
  =>  All the command objects are derived from the DbCommand class.
  =>  The command object is represented by two classes: SqlCommand and OleDbCommand.
  =>  The Command object provides three methods to execute commands on the database:
  =>  The ExecuteNonQuery() method executes the commands and does not return any value.
  =>  The ExecuteScalar() method returns a single value from a database query.
  =>  The ExecuteReader() method returns a result set by using the DataReader object.

Report Error

View answer Workspace Report Error Discuss

Subject: .NET

0 2121