Interview Questions

Q:

What is Windows Workflow Foundation (WF)?

Answer

Windows Workflow Foundation (WF) is a technology that was first introduced in .NET Framework 3.0. WF consists of a programming model, a workflow runtime engine, workflow designer, a rules engine, and tools to quickly build workflow-based applications on Windows. WF facilitates the separation between the business process code and the actual implementation code.

Report Error

View answer Workspace Report Error Discuss

Subject: .NET

0 4640
Q:

How to create a basic text file in php?

Answer

$filename = "/home/user/guest/newfile.txt";
$file = fopen( $filename, "w" );
if( $file == false )
{
echo ( "Error in opening new file" );
exit();


}
fwrite( $file, "This is a simple test\n" );
fclose( $file );

Report Error

View answer Workspace Report Error Discuss

Subject: PHP
Job Role: IT Trainer

1 4633
Q:

When are you supposed to use endif to end the conditional statement?

Answer When the original if was followed by : and then the code block without braces.
Report Error

View answer Workspace Report Error Discuss

Subject: PHP

0 4625
Q:

Explain the ternary conditional operator in PHP?

Answer Expression preceding the ? is evaluated, if it’s true, then the expression preceding the : is executed, otherwise, the expression following : is executed.
Report Error

View answer Workspace Report Error Discuss

Subject: PHP

0 4619
Q:

Which type of assets should be capitalized and when expense out?

Answer

Assets are things which is provide service for long duration it may 3 years 4 years or for long period of time.These items capitalize in our account books and charge depreciation in every year according to these rate it may 20 10 100


 

Report Error

View answer Workspace Report Error Discuss

3 4617
Q:

What opportunities does a financial downturn present to financiers?

Answer

In a market where the value of assets is falling, known as a bear market, traders might consider taking short positions, that is, borrowing assets they don’t own, selling them, and buying them back to return them at a later date when their price has fallen. Meanwhile, those working in asset management or M&A might consider, or advise clients to consider, snapping up undervalued assets.

Report Error

View answer Workspace Report Error Discuss

Subject: Bank Interview

1 4607
Q:

Explain hospitality in terms of hotel industry ?

Answer

Hospitality actually means, taking care of guests in the best possible way.


Organizing, providing services and looking care after guests is included in it.


It means friendly and generous treatment of guests. 


Hospitality industry includes all companies involved in providing services for guests. They provide more mental satisfaction than tangible objects.

Report Error

View answer Workspace Report Error Discuss

Subject: Hospitality

13 4598
Q:

Server controls contain attributes whereas HTML controls have properties only.

A) TRUE B) FALSE
Answer & Explanation Answer: B) FALSE

Explanation:

Server controls contain properties whereas HTML controls have attributes.

Report Error

View Answer Workspace Report Error Discuss

Subject: Web Technology
Job Role: Software Architect

0 4597