Expert JavaScript Developer

  Home  Client Side Scripting  Expert JavaScript Developer


“Expert JavaScript Developer Frequently Asked Questions in various Expert JavaScript Developer job Interviews by interviewer. The set of questions here ensures that you offer a perfect answer posed to you. So get preparation for your new job hunting”



208 Expert JavaScript Developer Questions And Answers

23⟩ Explain Methods GET and POST in HTML forms - what's the difference?

GET: Parameters are passed in the query string. Maximum amount of data that can be sent via the GET method is limited to about 2kb.

POST: Parameters are passed in the request body. There is no limit to the amount of data that can be transferred using POST. However, there are limits on the maximum amount of data that can be transferred in one name/value pair.

 240 views

28⟩ How to write a script for "Select" lists using JavaScript?

1. To remove an item from a list set it to null

mySelectObject.options[3] = null

2. To truncate a list set its length to the maximum size you desire

mySelectObject.length = 2

3. To delete all options in a select object set the length to 0.

mySelectObject.leng

 242 views

31⟩ Explain Text From Your Clipboard?

It is true, text you last copied for pasting (copy & paste) can be stolen when you visit web sites using a combination of JavaScript and ASP (or PHP, or CGI) to write your possible sensitive data to a database on another server.

 237 views

32⟩ Are Java and JavaScript the Same?

No. java and JavaScript are two different languages.

Java is a powerful object - oriented programming language like C++, C whereas JavaScript is a client-side scripting language with some limitations.

 254 views

33⟩ Explain the "Access is Denied" IE error mean?

The "Access Denied" error in any browser is due to the following reason.

A JavaScript in one window or frame is tries to access another window or frame whose

document's domain is different from the document containing the script.

 234 views

38⟩ Can you please explain the difference between web-garden and a web-farm?

Web-garden - An IIS6.0 feature where you can configure an application pool as a web-garden and also specify the number of worker processes for that pool. It can help improve performance in some cases.

Web-farm - a general term referring to a cluster of physically separate machines, each running a web-server for scalability and performance (contrast this with web-garden which refers to multiple processes on one single physical machine).

 234 views