Interview Questions

Q:

Distinguish between Static vs. Dynamic HTML

Answer

- The easiest difference is static HTML once rendered cannot be changed on the other hand dynamic HTML can be changed.


- Static web pages cannot have database access but dynamic pages can be connected to database.


- Using static HTML no interactions persist between user and server but dynamic HTML has capability to interact with the user.


- Static HTML does not require server side coding but dynamic HTML requires server side coding.


- No animation, games can be developed using the static HTML but on the other hand dynamic HTML can perform this task.

Report Error

View answer Workspace Report Error Discuss

Subject: Web Technology

0 4498
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 4496
Q:

What is the difference between billable and non-billable expenses?

Answer

The terms Billable and Non-Billable expenses are normally associated with say a consultancy company where they bill consultants out to their clients. Therefore Billable expenses will be paid by the client whereas Non-billable will be paid by your employer. What's included in both is subject to the contract your company has with their client.

Report Error

View answer Workspace Report Error Discuss

Subject: Accounts Payable

7 4473
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 4471
Q:

What is the full form of SOX and what does it means in Accounting ?

Answer

Sarbanes Oxley Act. Otherwise known as Public companies Accounting reforms and investor protection Act. It was enacted in 2002 in USA after lot of scams come up on accounting framework whereby investors lose faith and confidence on accounting disclosures.

Report Error

View answer Workspace Report Error Discuss

Subject: Accounts Receivable Exam Prep: Bank Exams , CAT
Job Role: Bank Clerk , Bank PO

7 4470
Q:

What are the benefits of using of ADO.NET in .NET 4.0.

Answer

The following are the benefits of using ADO.NET in .NET 4.0 are as follows:

 =>   Language-Integrated Query (LINQ) - Adds native data-querying capabilities to .NET languages by using a syntax similar to that of SQL. This means that LINQ simplifies querying by eliminating the need to use a separate query language. LINQ is an innovative technology that was introduced in .NET Framework 3.5.
 =>   LINQ to DataSet - Allows you to implement LINQ queries for disconnected data stored in a dataset. LINQ to DataSet enables you to query data that is cached in a DataSet object. DataSet objects allow you to use a copy of the data stored in the tables of a database, without actually getting connected to the database.
=>   LINQ to SQL - Allows you to create queries for data stored in SQL server database in your .NET application. You can use the LINQ to SQL technology to translate a query into a SQL query and then use it to retrieve or manipulate data contained in tables of an SQL Server database. LINQ to SQL supports all the key functions that you like to perform while working with SQL, that is, you can insert, update, and delete information from a table.
=>   SqlClient Support for SQL Server 2008 - Specifies that with the starting of .NET Framework version 3.5 Service Pack (SP) 1, .NET Framework Data Provider for SQL Server (System.Data.SqlClient namespace) includes all the new features that make it fully compatible with SQL Server 2008 Database Engine.
=>   ADO.NET Data Platform - Specifies that with the release of .NET Framework 3.5 Service Pack (SP) 1, an Entity Framework 3.5 was introduced that provides a set of Entity Data Model (EDM) functions. These functions are supported by all the data providers; thereby, reducing the amount of coding and maintenance in your application. In .NET Framework 4.0, many new functions, such as string, aggregate, mathematical, and date/time functions have been added.

Report Error

View answer Workspace Report Error Discuss

Subject: .NET

1 4453
Q:

Explain Superglobal variables in PHP .

Answer

To access the global data which is originating externally, the super globals are used. The superglobals are available as arrays. These superglobals represents the data from URLs, HTML forms, cookies, sessions and also the web server. For this purpose, $HTTP_GET_VARS, $HTTP_POST_VARS are used. The super globals are pretty good enough to be used in functions. The following are the list of super globals.


$_GET, $_POST, $_COOKIE;$_REQUEST, $_SERVER, $_SESSION, $_ENV, $_FILE


Another PHP Superglobal, called $GLOBALS; is available for persisting every variable with global scope.

Report Error

View answer Workspace Report Error Discuss

Subject: PHP

0 4432
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 4431