ASP.NET
- What does ASP stand for?
- How to create a data binding between server controls and data source?
- What is the difference between Page State and Session State?
- What items does ASP.NET consist?
- web content files (.aspx)
- source files (.c)
- assemblies (.dll, .exe)
- data source files (.mdb)
- references
- icons
- user controls
- 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)
- What is Dynamic Link Library?
- 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
- What can/ can’t in-browser JavaScript do?
- Why is it better to write JS in a separate file?
- Why is “use strict” necessary to be declared?
- What is difference between “var” and “let” in variable declaration?
- What is the difference between “alert”, “prompt” and “confirm”?
- 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>
- 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
- What is the difference between function declaration and function expression?
Leave a Reply