Web Development Interview Questions – Set 04

What can javascript programs do? Generation of HTML pages on-the-fly without accessing the Web server. The user can be given control over the browser like User input validation Simple computations can be performed on the client’s machine The user’s browser, OS, screen size, etc. can be detected Date and Time Handling. What does the delete … Read more

Web Development Interview Questions – Set 03

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 aclient-side scripting language with some limitations. Difference between window.onload and onDocumentReady? The onload event does not fire until every last piece of the page is loaded, … Read more

Web Development Interview Questions – Set 02

How to hide javascript code from old browsers that dont run it? Use the below specified style of comments <script language=javascript> <!–javascript code goes here–> Or Use the <NOSCRIPT>some html code </NOSCRIPT> tags and code the display html statements between these and this will appear on the page if the browser does not support javascript. … Read more

Web Development Interview Questions – Set 01

Introduction to CSS CSS means Cascading Style Sheet It is used to customize in-built HTML tags, means defining user-defined styles to HTML tags. Selectors P Property: value <P Style = “Color: red; Background-color: orange; Font-size: 14pt; Text-align: right”> Semicolon is deli meter for properties. Colon is separator for property and values. <h1> is called tag … Read more

Web Development Interview Questions

Web Development Interview Questions – Set 04 Web Development Interview Questions – Set 03 Web Development Interview Questions – Set 02 Web Development Interview Questions – Set 01