Web Development Interview Questions

ASP interview question

  1. How do you create a recordset object in VBScript?
  2. What is Querystring collection? - It allows you to extract data sent to the server using a GET request.
  3. Explain the difference between POST and GET Method. - GET requests are string data that is visible to the end user via the URL and a limit of 2kb, POST requests have no limit on total data and the user can’t see the data in a query string.
  4. Why do we use Option Explicit? - To avoid multiple variables of the same name.

JavaScript interview question

  1. What’s relationship between JavaScript and ECMAScript? - ECMAScript is yet another name for JavaScript (other names include LiveScript). The current JavaScript that you see supported in browsers is ECMAScript revision 3.
  2. What are JavaScript types? - Number, String, Boolean, Function, Object, Null, Undefined.
  3. How do you convert numbers between different bases in JavaScript? - Use the parseInt() function, that takes a string as the first parameter, and the base as a second parameter. So to convert hexadecimal 3F to decimal, use parseInt (”3F”, 16);
  4. What does isNaN function do? - Return true if the argument is not a number.

Interview questions for Web developer position

  1. What’s the difference between primary key and unique key?
  2. The Perl script on the site is working slow. What’s your plan of attack?
  3. Name several reasons why a Web site would not work entirely.
  4. Write an SQL statement that would select only the customers who made multiple orders within a single week.
  5. What version control systems do you use?
  6. How do you configure the maximum number of processes in Apache?
  7. How much memory do you need for Web server app? Describe your logic of calculating this number.
  8. What are response codes 302 and 303?

PHP interview questions, Part 2

  1. How can we repair a MySQL table?
  2. What are the advantages of stored procedures, triggers, indexes?
  3. What is the maximum length of a table name, database name, and fieldname in MySQL?
  4. How many values can the SET function of MySQL take?
  5. What are the other commands to know the structure of table using MySQL commands except explain command?
  6. How many tables will create when we create table, what are they?
  7. What is the purpose of the following files having extensions 1) .frm 2) .myd 3) .myi? What do these files contain?

PHP interview questions, Part 1

  1. What are the differences between Get and post methods in form submitting, give the case where we can use get and we can use post methods?
  2. Who is the father of PHP and explain the changes in PHP versions?
  3. How can we submit a form without a submit button?
  4. In how many ways we can retrieve the date in the result set of mysql using PHP?
  5. What is the difference between mysql_fetch_object and mysql_fetch_array?
  6. What is the difference between $message and $$message?
  7. How can we extract string ‘abc.com ‘ from a string ‘http://info@abc.com’ using regular expression of PHP?

Pages (5): « First ... « 2 3 4 [5]