Legacy ASP.NET MVC and Web Technology Acronyms
Quiz covering ASP.NET MVC 3/4 framework concepts (including obsolete mobile patterns) and fundamental web technology acronyms and standards
Questions
SGML stands for Standard GUI Markup Language
- True
- False
CSS stands for Cascading Style Sheets
- True
- False
DOM stands for Document Object Model
- True
- False
DHTML stands for Declarative Hyper Text Markup Language
- True
- False
HTTP stands for Hypertext Transfer Protocol
- True
- False
W3C stands for World Wide Web Consortium
- True
- False
XSLT stands for Extensible Stylesheet Language Transactions
- True
- False
URL stands for Uniform Resource Locator
- True
- False
GIF stands for Graphics Interchange Format
- True
- False
GIF stands for Graphics Interchange Format
- True
- False
SOAP stands for Simple Object Access Procedure
- True
- False
XHTML stands for Extended HyperText Markup Language
- True
- False
WYSIWYG stands for What-You-See-Is-What-You-Get
- True
- False
The ___________ technique can be used to achieve input and output coverage
- Boundary value analysis
- Equivalence partitioning
- Decision table testing
- State transition testing
When identical data is to be presented on desktop and mobile browsers, with only changes to CSS stylesheets, which of the following is the best option?
- Create separate areas for desktop and mobile browsers
- Use same controllers and views for desktop and mobile browsers, but render views with different razor layouts for desktop and mobile browsers.
- Do nothing
- Use same controllers, but render different views for desktop and mobile browsers.
In which method do we resolve the ambiguity arising from having different home controllers in different areas of MVC application?
- Index method of HomeController.cs
- About method of _Layout.cshtml
- RegisterRoutes method in Global.asax.cs
- Login method of HomeController.cs
In which file do we write code to associate a different layout for mobile devices in MVC3?
- Global.asax.cs
- web.config
- _Layout.cshtml
- _ViewStart.cshtml
MVC framework is built on top of ASP.NET framework
- True
- False
It is mandatory that same controllers be shared by different areas in an MVC application.
- True
- False
Which class is to be updated to specify the home controller in Mobile area?
- RazorLayout
- ViewStart
- HomeController
- MobileAreaRegistration