:: Home     :: MS Dynamics CRM     :: .Net 1.1     :: .Net 2.0     :: Sharepoint Portal     :: Ajax

  login:        
  passwords:  
Asp.Net Interview Questions
  • 2.0 Interview Questions
  • Ado .Net 2.0 Interview Questions
  • Ado .Net Interview Question
  • Ado.Net Interview Questions
  • Ado.Net Interview Questions In .Net
  • Asp Interview Questions
  • Asp.Net Exam Questions
  • Asp.Net Interview
  • Asp.Net Interview Points
  • Asp.Net Interview Question
  • Asp.Net Interview Question And Answer
  • Asp.Net Interview Questions
  • Asp Net Latest Interview Questions
  • Asp.Net Multiple Questions
  • Asp.Net Possible Interview Question
  • Asp.Net Questions
  • Asp.Net Questions For Interview
  • Asp.Net Related Questions
  • Asp.Net Web Developer Interview Questions
  • Asp.Net Web Development Interview Questions
  • Ibm Asp.Net Interview Questions
  • Important Interview Questions In Asp.Net
  • Interview Question Asp.Net
  • Interview Question For Asp.Net
  • Interview Question In Asp.Net
  • Interview Question Of Asp.Net
  • Interview Question On Asp.Net
  • Interview Questions Asp.Net
  • Interview Questions For An Asp.Net Developer
  • Interview Questions For An Asp.Net Developer
  • Interview Questions For Asp.Net
  • Interview Questions In Asp.Net
  • Interview Questions Of Asp.Net
  • Interview Questions On Asp.Net
  • Interview Questions Related To Asp.Net
  • Interview Questoins In Asp.Net
  • Latest Interview Question AspNet
  • Latest Interview Question Asp.Net
  • .Net Asp Interview Questions
  • Questions In Asp.Net
  • Questions On Asp.Net Application Domain
  • Questions On Dataset In Asp.Net
  • Interview Question On Asp Net 1.1 Asp.Net 2.0
  • Asp.Net FAQS
  • Asp.Net Faq s
  • Asp.Net Faq With Answer
  • Asp.Net Faqs
  • Asp.Net Interview Faqs
  • Faq On Asp.Net
  • Faqs In Asp.Net
  • Faqs On Asp.Net
  • Questions In Asp.Net
  • Questions On Asp.Net Application Domain
  • To Asp.Net Faqs
  • Asp.Net 2.0 Interview Questions
  • Asp 2.0 Interview Questions
  • Asp Net 2.0 Exam Questions
  • Asp.Net 2.0 Interview
  • Asp.Net 2.0 Interview Question
  • Asp.Net 2.0 Interview Questions
  • Asp.Net 2.0 Job Interview
  • Asp.Net 2.0 Job Interview Questions
  • Asp.Net 2.0 Questions
  • Asp.Net 2.0 Website Programming Interview Questions
  • Asp.Net 2 Exam Questions
  • Asp.Net 2 Interview Questions
  • Asp.Net 2005 Interview Questions
  • Interview s Questions Of Asp.Net 2.0
  • Interview Question Asp.Net 2.0
  • Interview Question For Asp.Net 2.0
  • Interview Question In Asp.Net 2.0
  • Interview Question Of Asp.Net 2.0
  • Interview Question On Asp.Net 2005
  • Interview Questions Asp.Net 2.0
  • Interview Questions For Asp.Net 2.0
  • Interview Questions In Asp.Net 2.0
  • Interview Questions In Asp.Net 2.0
  • Interview Questions In Asp.Net 2.0
  • Interview Questions Of Asp.Net 2.0
  • Interview Questions On Asp.Net 2.0
  • Question On Asp.Net 2.0
  • Asp.Net 1.1 Interview Questions/FAQS
  • Asp.Net 1.1 Faqs
  • Interview Question On Asp.Net 1.1 & Asp.Net 2.0
  • Java Script/HTML/DHTML Interview Questions
  • Javascript Interview Questions In .Net
  • Interview Question Answer Html Dhtml
  • .Net WebServices & Remoting Interview Questions
  • .Net Remoting Interview Questions
  • .Net Web Services Interview Question
  • .Net Web Services Interview Questions
  • .Net Webservice Interview
  • .Net Webservices Interview Questions
  • Web Services Interview Questions
  • Share Point Interview Questions
  • Interview Questions For Sharepoint Developer
  • Sharepoint Administrator Interview Questions
  • Sharepoint Interview Questions
  • Sharepoint Interview Questions & Answers
  • Sharepoint Portal Interview Questions
  • Biz Talk Server Interview Questions
  • Biztalk Server Interview Questions
  • Visual Studio 2005/2003 Interview Questions
  • Visual Studio 2005 Interview Questions
  • Vs 2005 Interview Questions
  • .Net 2.0 Interview Questions
  • Interview Questions For .Net 2.0
  • Interview Questions In .Net 2.0
  • .Net 2.0 Interview
  • .Net 2.0 Interview Question
  • .Net 2.0 Interview Questions
  • .Net 2.0 Question
  • .Net 2.0 Questions
  • .Net 2 Interview Questions
  • .Net 2005 Interview Questions
  • .Net Framework 2.0 Faq s
  • . Net_Framework_2.0_Faq s.aspx
  • .Net Interview Questions/FAQS
  • Faqs In Net
  • Interview Question .Net
  • Interview Question Of .Net
  • Interview Question On .Net
  • Interview Question Related to net
  • Interview Questions For .Net
  • Interview Questions .Net
  • Interview Questions On .Net
  • Interview Work Exam For .Net Programmer
  • .Net Framework Interview Questions
  • .Net Interview Faq
  • .Net Interview Faqs
  • .Net Interview Question
  • .Net Interview Faq
  • .Net Interview Question List
  • .Net Interview Question With Options
  • .Net Interview Questions
  • Questions In .Net
  • What Type Questions In .Net
  • Download .net interview question
  • Microsoft .Net Interview Questions
  • Simple Interview Questions On Microsoft .Net
  • .Net Windows/Web Forms Interview Questions
  • .Net Web Developer Interview Questions
  • Windows .Net Forms Interview Questions
  • .Net Web Developer Interview Questions
  • Asp.Net/Classic Asp Questions
  • Asp Interview Questions
  • Asp.Net Multiple Questions
  • Asp.Net Possible Interview Question
  • Classic Asp Interview Questions

  • Javascript Interview Questions In .Net


    1. what is the differene between java and java script...?

      Java Script is object based language it is used for front end validations
      java is object oriented language object oriented language supports OOP's Object based not suppoted inheritence.

    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.

    5. What is negative infinity?

      It’s a number in JavaScript, derived by dividing negative number by zero.

    6. What boolean operators does JavaScript support?

      &&, || and !

    7. What does "1"+2+4 evaluate to?

      Since 1 is a string, everything is a string, so the result is 124.

    8. What looping structures are there in JavaScript?

      for, while, do-while loops, but no foreach.

    9. How do you create a new object in JavaScript?

      var obj = new Object(); or var obj = {};

    10. How do you assign object properties?

      obj["age"] = 17 or obj.age = 17

    11. What’s a way to append a value to an array?

      arr[arr.length] = value;

    12. What is this keyword?

      It refers to the current object.

    13. What is the main difference between Client side JavaScript and and Server side Java Script. How actually they run on both side with Example?

      Clientside Javascript encompasses the core language plus extras such as the predefined objects, only relevant to running Javasript in a browser.The clientside javascript is embedded directly in the HTML pages and is interpreted by the browser completly at the run time. Serverside javascript also encompasses the core language plus extas as the predefined objects and functions only relevant to running Javasript in a server.The serverside javascripts are compiled before they are deployed.

    Google
     
    ::  Home :: Services ::  Prices ::  Request Quote
    Copyright 2007, Megasolutions Ltd