0

web technology Online Quiz - 3

Description: web technology Online Quiz - 3
Number of Questions: 20
Created by:
Tags: web technology
Attempted 0/20 Correct 0 Score 0

SGML stands for Standard GUI Markup Language

  1. True

  2. False


Correct Option: B

CSS stands for Cascading Style Sheets

  1. True

  2. False


Correct Option: A

DOM stands for Document Object Model

  1. True

  2. False


Correct Option: A

DHTML stands for Declarative Hyper Text Markup Language

  1. True

  2. False


Correct Option: B

HTTP stands for Hypertext Transfer Protocol

  1. True

  2. False


Correct Option: A

W3C stands for World Wide Web Consortium

  1. True

  2. False


Correct Option: A

XSLT stands for Extensible Stylesheet Language Transactions

  1. True

  2. False


Correct Option: B

URL stands for Uniform Resource Locator

  1. True

  2. False


Correct Option: A

GIF stands for Graphics Interchange Format

  1. True

  2. False


Correct Option: A

GIF stands for Graphics Interchange Format

  1. True

  2. False


Correct Option: A

SOAP stands for Simple Object Access Procedure

  1. True

  2. False


Correct Option: B

XHTML stands for Extended HyperText Markup Language

  1. True

  2. False


Correct Option: B

WYSIWYG stands for What-You-See-Is-What-You-Get

  1. True

  2. False


Correct Option: A

AI Explanation

To answer this question, you need to understand what WYSIWYG stands for.

WYSIWYG stands for "What-You-See-Is-What-You-Get." It is a term used in computing to describe a system or software that allows users to see a preview of the final output as they are creating or editing it. This means that what you see on the screen during the editing process should closely resemble the final printed or displayed result.

Given this definition, the correct answer is:

A. True - This option is correct because WYSIWYG indeed stands for "What-You-See-Is-What-You-Get."

The ___________ technique can be used to achieve input and output coverage

  1. Boundary value analysis

  2. Equivalence partitioning

  3. Decision table testing

  4. State transition testing


Correct Option: B

AI Explanation

To answer this question, you need to understand the different techniques used in software testing. Let's go through each option to understand why it is correct or incorrect:

Option A) Boundary value analysis - This option is incorrect because boundary value analysis focuses on testing values at the boundaries of equivalence partitions, not on achieving input and output coverage.

Option B) Equivalence partitioning - This option is correct because equivalence partitioning is a technique used to divide the input data into groups or partitions, where each partition is expected to behave in the same way. By selecting representative test cases from each partition, we can achieve input and output coverage.

Option C) Decision table testing - This option is incorrect because decision table testing is a technique used to test software behavior based on different combinations of inputs and corresponding actions or decisions. It does not specifically focus on achieving input and output coverage.

Option D) State transition testing - This option is incorrect because state transition testing is a technique used to test software behavior based on different states and transitions between states. It does not specifically focus on achieving input and output coverage.

The correct answer is B) Equivalence partitioning. This option is correct because equivalence partitioning helps achieve input and output coverage by selecting representative test cases from each partition.

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?

  1. Create separate areas for desktop and mobile browsers

  2. Use same controllers and views for desktop and mobile browsers, but render views with different razor layouts for desktop and mobile browsers.

  3. Do nothing

  4. Use same controllers, but render different views for desktop and mobile browsers.


Correct Option: B

In which method do we resolve the ambiguity arising from having different home controllers in different areas of MVC application?

  1. Index method of HomeController.cs

  2. About method of _Layout.cshtml

  3. RegisterRoutes method in Global.asax.cs

  4. Login method of HomeController.cs


Correct Option: C

In which file do we write code to associate a different layout for mobile devices in MVC3?

  1. Global.asax.cs

  2. web.config

  3. _Layout.cshtml

  4. _ViewStart.cshtml


Correct Option: D

MVC framework is built on top of ASP.NET framework

  1. True

  2. False


Correct Option: B

It is mandatory that same controllers be shared by different areas in an MVC application.

  1. True

  2. False


Correct Option: B

Which class is to be updated to specify the home controller in Mobile area?

  1. RazorLayout

  2. ViewStart

  3. HomeController

  4. MobileAreaRegistration


Correct Option: D
- Hide questions