Questions

ASP.NET

  1. What does ASP stand for?
  2. How to create a data binding between server controls and data source?
  3. What is the difference between Page State and Session State?
  4. What items does ASP.NET consist?
    • web content files (.aspx)
    • source files (.c)
    • assemblies (.dll, .exe)
    • data source files (.mdb)
    • references
    • icons
    • user controls
  5. What content files does a project contain?
    • Page file (.aspx)
    • User control (.ascx)
    • Web service (.asmx)
    • Master page (.master)
    • Site map (.sitemap)
    • Website configuration file (.config)
  6. What is Dynamic Link Library?
  7. What is an event?
    • Event is an action or occurrence (such as mouse click, mouse movement, key press, …)
    • Event occur >> Application responds to it and manage it

JavaScript

  1. What can/ can’t in-browser JavaScript do?
  2. Why is it better to write JS in a separate file?
  3. Why is “use strict” necessary to be declared?
  4. What is difference between “var” and “let” in variable declaration?
  5. What is the difference between “alert”, “prompt” and “confirm”?
  6. What is the difference between Function and Variables?
    • No matter how the function is defined – it’s just a value, stored in the variable <function name>
  7. What is the difference between Function and Regular data?
    • Regular values like strings or numbers represent the data
    • A function can be perceived as an action
  8. What is the difference between function declaration and function expression?

Be the first to comment

Leave a Reply

Your email address will not be published.


*