Objective Assesment Web Dev

अब Quizwiz के साथ अपने होमवर्क और परीक्षाओं को एस करें!

Which of the following languages is a proprietary technology that allows you to use various languages, including JavaScript, VBScript, Visual Basic, or C#? Perl Python .NET JSP

.net

Which of the following Web portals is considered a vertical portal? Select 2 www.cnet.com http://slashdot.org www.yahoo.com www.google.com

.www.cnet.com http://slashdot.org

Which line of code represents a valid way to use an image as a hyperlink, and will validate in an HTML5 page? A.<a href="http://www.ucorp.biz" img src="questions.jpg" alt="Questions"/> </a> B.<a href="http://www.ucorp.biz"> <img src="questions.jpg" alt="Questions"> </a> C.< img src="http://www.ucorp.biz"> <img "questions.jpg" border="0"/> </a> D.<img src="questions.jpg" link="http://www.ucorp.biz" alt="Questions"/> </a>

<a href="http://www.ucorp.biz"> <img src="questions.jpg" alt="Questions"> </a>

Which tag pair is used for embedding video and interactive maps in HTML?

<iframe>

type

Attribute designates the form field type.

value

Attribute that allows for default text inside a text box.

Which third-party outsource service will always be needed when developing a website? A.Database server B.Domain name server C.Hosting of server-side applications D.Hosting of HTML/CSS/JS files

B.Domain name server

Which of the following is an object-oriented compiled programming language whose programs must be compiled to a specific computer type? Java C# C++ Visual Basic

C++

Which two tags are containers for other tags? A.<main> and <section> B.<header> and <footer> C.<head> and <body> D.<p> and <h1>

C.<head> and <body>

Who can supply a Web server, network bandwidth, and advanced Web & database connectivity?

Cloud Service Provider (CSP)

What is CGI and what are some languages you can use for its implementation?

Common Gateway Interface (PHP, Perl, ASP)

As a general rule, what is the maximum size your Webpage should be? A.50 KB B.500 KB C.1 MB D.100 KB

D.100 KB

Which of the following is a reason for choosing a GUI editor to create a Webpage? A.GUI editors often modify code that is entered manually B.You will always be using the most up-to-date version of HTML C.Typing code teaches you HTML fundamentals D.You can create Webpages by simply clicking your mouse

D.You can create Webpages by simply clicking your mouse

Which of the following is a standard developed by the W3C? Document Object Model (DOM) Dynamic HTML

DOM

get

Form data is submitted from a form to the URL of the Webpage for use in a query string. This method sends information in cleartext and is thus less secure.

Any violation of a copyright or trademark. Infringement Copyright Trade Secret Licensing Trademark Plagiarism

Infringement

Which language is commonly used as a client-side scripting language in web development? A.PHP B.Ruby C.Python D.JavaScript

JS

Three audio formats

MP3, WAV, Ogg

What Web form input type creates round option buttons in a group of two or more mutually exclusive options? Single-option Select List Multiple-option Select List Radio Buttons Text Box Checkboxes

Radio Buttons

rows

Specifies the number of rows of text to display in the box.

cols

Specifies the width in characters of the scrolling text box.

Which Web form component is a button that, when clicked, causes the form's action statement to process? File Upload Reset Button Password Field Textarea Submit Button

Submit Button

True false? JavaScript is embedded into XHTML or HTML using the script tag. True False

T

True or false? Client-side scripts can be disabled from browsers. True False

T

True or false? JavaScript offers programmers several advantages, including platform-independence. TrueFalse

T

True or False? GUI HTML editors typically create excessive code that makes the Webpage bulky in size. True False

True

Which of the following is a compiled programming language developed by Microsoft and used for stand-alone applications and server-side Web applications? Java C# C++ Visual Basic

Visual Basic

What two attributes must be included for the form to function in creating an HTML form?

action and method

Which tag could you use to add a brief summary of your markup page's contents for display in browser search results? A.<head> B.<body> C.<meta> D.<html>

c

What property of the Radio object is used to determine if a radio button is selected? A.the value property B.the checked property C.set its value property to an empty string D.call its blur() method

checked

Which of the following is a valid coordinate for a circle client-side image map? coords = "x1, y1, x2, y2, ...xn, yn" coords = "x1, y1, x2, y2" coords = "x1, y1, radius" coords = "x1, y1, gps"

coords = "x1, y1, radius"

Identify the number of name/value pairs in the following URL: http://www.exampledomain.com/example.php?firstname=John&lastname=Smith 0 1 2 3

2

Which HTML element does NOT have a default action associated with the click event? A.<img> B.<button> C.<input> D.<a>

<img>

How do you make a form for user to type first name?

<input type="text" name="firstname" id="firstname">

Which HTML tag is used in tables to specify a cell within a non-header row? A.<dt> B.<th> C.<td> D.<ht>

<td>

Identify the query string in the following URL: http://www.exampledomain.com/example.php?firstname=John&lastname=Smith ?firstname=John&lastname=Smith exampledomain.com http:// /example.php

?firstname=John&lastname=Smith

What is the difference between the Internet and the World Wide Web? A.The Web is the content, the Internet the delivery infrastructure B.The Internet is the content, the Web the delivery infrastructure C.One is public, the other is private D.No difference, they are both the same

A

ssi file name extensions

A Web server that supports SSI reads each HTML page for SSI instructions, and then processes the instructions for each user request. Standard practice is for HTML files that use SSI to use the .shtml or .shtm file name extension, rather than simply .html or .htm.

Which legal concern relates to fair use during website planning? A.Copyright B.Trademark C.Trade secrets D.Patent

A.Copyright

What is the primary purpose of the document object model (DOM)? A.Defines documents' logical structure and how they are accessed and manipulated B.Controls the look and feel of a web page C.Uses a bottom-up approach D.Enables dynamic web pages that do not require server processing

A.Defines documents' logical structure and how they are accessed and manipulated

What is the purpose of SSL/TLS in an e-commerce transaction? A.It encrypts data transmissions so private information remains private B.It mediates an authentication process between the requisitioner and the payment authority C.It provides a universal data-formatting method, known as a merchant system D.It controls inventory of raw materials from upstream providers to manage supply chain

A.It encrypts data transmissions so private information remains private

Which property can be used to center table data vertically? A.vertical-align B.vlign C.text-align:vertical D.table-data:vertical-align

A.vertical-align

Which of the following is a programming methodology that enables Web applications to interact with users in much the same way they do with desktop applications? XMLHttpRequest Web 2.0 Podcast Web Feed Streaming AJAX

AJAX

Which of the following is Microsoft's original server-side scripting solution? Perl Cobol ASP C

ASP

Which of the following languages is Microsoft's original server-side scripting language that is only used with Microsoft systems? ASP PHP Python JSP

ASP

This required <form> attribute specifies the name and location of the CGI script used to process the form. method get action post

Action

How do you add a submit/reset button to a form?

Add type attribute to <input> with submit or reset value, action attribute will specify where info from form is sent

single-tier applications

All three layers are combined into one application or database. A Microsoft Access database available only on a local system. A user simply opens Access, then manipulates the database.

Which of the following are characteristics of an interlaced image? Select 2. Appears invisible or incomplete until entire image is read. Appears as a degraded image as it renders. At first appears fuzzy, but continuously sharpens as it is read. The top appears after the browser has read 50% of the image.

Appears as a degraded image as it renders. At first appears fuzzy, but continuously sharpens as it is read.

Which of the following are characteristics of a non-interlaced image? Select 2. Appears invisible or incomplete until entire image is read. Appears as a degraded image as it renders. At first appears fuzzy, but continuously sharpens as it is read. The top appears after the browser has read 50% of the image.

Appears invisible or incomplete until entire image is read. The top appears after the browser has read 50% of the image.

method

Attribute specifies the method by which the browser will send form data to a Web server.

action

Attribute specifies the name and location of the CGI script used to process the form. The contents of the form will be processed by the script and acted upon according to the instructions in the script.

multiple="multiple"

Attribute used in <select> to allow users to pick multiple answers.

Which form field offers square option buttons in a group of two or more options? A.Select B.Check box C.Radio button D.Text box

B

Which statement describes the relationship between Dynamic HTML (DHTML) and the Document Object Model (DOM)? A.The DOM is a standard way to define style configurations for DHTML B.DHTML utilizes a collection of technologies, including the DOM, to control the overall appearance and function of a web page C.DHTML provides a web page with a structure, and the DOM provides a web page with interactivity and animations D.The DOM and DHTML are two distinct languages for both establishing the structure and modifying the look and feel of a web page

B.DHTML utilizes a collection of technologies, including the DOM, to control the overall appearance and function of a web page

Which codec is required for MP4 videos to render properly in an HTML5 browser that supports it? A.VP8 B.H.264 C.WebM D.Theora

B.H.264

What version of HTML introduced CSS? A.HTML 3.2 B.HTML 4.0 C.XHTML D.HTML5

B.HTML 4.0

Which site management editor feature displays link hierarchies of the target Webpages? A.Import Webpages B.Hypertext links C.Inline images D.Icon bars

B.Hypertext links

Which HTML tag provides elements for acquiring information from the end user in a web form? A.Body and Radio B.Input and Button C.Body and Input D.Radio and Button

B.Input and Button

What is the difference between web page responsiveness and efficiency? A.Responsiveness is about the overall performance of a web page, while efficiency is about the use of web form elements in a web page B.Responsiveness is about how a web page displays correctly on different devices, while efficiency is about how quickly a web page is displayed C.Responsiveness is about the smooth display of a web page, while efficiency is about the correct display of a web page in different devices D.None, responsiveness and efficiency in this context are synonyms

B.Responsiveness is about how a web page displays correctly on different devices, while efficiency is about how quickly a web page is displayed

AJAX is a set of technologies used in developing and delivering web content. Which of the following is not true? A.xHTML is based on the HTML4.0 specification B.The Document Object Model is deprecated in web2.0 C.XML is used to display tabular data D.HTML5 allows for online collaboration

B.The Document Object Model is deprecated in web2.0

Which of the following is used with the HTML5 <video> element to identify the location and file name of the media resource? A.The type attribute B.The src attribute C.The <source> element D.The <audio> element

B.The src attribute

How do vector-based graphics differ from rasterized graphics? A.Rasterized images can be altered more easily B.Vector-based graphics are based on components of the image instead of pixels C.Rasterized images are more compact in size D.Vector-based graphics are fee based, while clip art is free

B.Vector-based graphics are based on components of the image instead of pixels

Which CSS3 property controls the color of a link before it has been visited? A.a:visited B.vlink C.a:link D.link

C

Which of the following is a procedural compiled programming language used to develop stand-alone application, rather than Web applications? Perl Cobol ASP C

C

Which of the following is a true statement in order to use a GUI HTML editor to preview the page as you develops it? A.You can preview the page with only the default browser on your computer or device B.You can preview the page with a browser emulator in the GUI editor but not a real browser C.You can preview the page with all the browsers installed on your computer or device D.You will receive an error because GUI editors cannot preview pages in a Web browser

C

Which of the following is a compiled object-oriented programming language that is the proprietary competitor to Java? Java C# C++ Visual Basic

C#

What technology refers to hosted applications and services offered by a third party? A.Mobile applications B.Ajax C.Cloud computing D.Scalability

C.Cloud computing

Which protocol is most often used to publish a Website to a remote Web host? A.SMTP B.SNMP C.FTP D.NNTP

C.FTP

What feature is used to provide tailored access to third-party applications when creating a web page? A.HTML hyperlinks B.Python C.Graphical user interface (GUI) D.Web server

C.Graphical user interface (GUI)

Which two statements accurately describe the differences between HTML and XML? A.HTML is case sensitive, while XML is not case sensitive. HTML is a display language, while XML is a data storage language. B.HTML is case sensitive, while XML is not case sensitive. HTML files and XML files have different extensions (.html and .xml). C.HTML is a display language, while XML is a data storage language. HTML can tolerate simple syntax mistakes, while XML does not accept any syntax mistakes. D.HTML files and XML files have different extensions (.html and .xml). HTML can tolerate simple syntax mistakes, while XML does not accept any syntax mistakes.

C.HTML is a display language, while XML is a data storage language. HTML can tolerate simple syntax mistakes, while XML does not accept any syntax mistakes.

Which of the following embeds formatting information into a document to instruct an interpreter how to render text? A.Hyperlinks B.The <body> tag C.Markup tags D.Attributes

C.Markup tags

What is the common approach to provide database connectivity to websites? A.PostgreSQL DBMS and Python interface B.Oracle Express DBMS and Ruby interface C.MySQL relational DBMS and PHP interface D.Microsoft Access DBMS and ASP.NET interface

C.MySQL relational DBMS and PHP interface

Which of the following statements are true of web images? A.GIF files support millions of colors B.JPEG images support interlacing C.PNG is a bitmap-based format D.Only SVG supports transparent backgrounds

C.PNG is a bitmap-based format

Which is not a requirement for web page accessibility? A.All non-text content, including Java applets, must provide text-based alternatives B.All images must provide text-based description C.The use of background and foreground colors must provide good contrast D.All forms must be easily readable by screen reading technology

C.The use of background and foreground colors must provide good contrast

Which laws enforce rules and regulations over web pages around the world? A.The World Wide Web Consortium mandate B.The US copyright law C.There are no laws covering the rules and regulations over the WWW D.The United Nations regulations

C.There are no laws covering the rules and regulations over the WWW

What type of error usually indicates that your browser does not support a specific DOM? A.HTTP 404 Error - File Not Found B.Write Error C.Undefined Object Error D.DOM Error

C.Undefined Object Error

What is JDBC and what is its purpose? A.it's a protocol for transmitting data across the Internet B.a proprietary Microsoft SaaS service C.an API providing access to a database D.a set of tools for middleware development

C.an API providing access to a database

What is the best way to center a <video> element window within an HTML5 Webpage? A.width and height attributes B.div align="center" C.video class D.<video> element

C.video class

Which of the following HTML5 APIs provides a place on a Webpage where developers can display visual images on the fly without the need for a plug-in? Offline Web Application Geolocation Drag-and-Drop Funcationality Canvas

Canvas

Which Web form input type creates square boxes in a group of two or more non-exclusive options? Single-option Select List Multiple-option Select List Radio Buttons Text Box Checkboxes

Checkboxes

Which of the following CGI technologies or languages is a proprietary technology designed to be easier to install and use than other interpreters and languages? ColdFusion AJAX PHP Django

ColdFusion

What is the Document Object Model (DOM)?

Cross-platform and language-independent API

Transparency, interlacing and animation are all techniques supported by which image file format? A.JPEG B.BMP C.GIF 87a D.PNG

D

Which line of HTML code creates a multiple-option select list in a Web form? A.<input type="select" name="work" multiple="multiple" size="4"/> B.<select multiple="selectlist" name="work" size="4"> C.<input type="select" name="work" multiple="yes" size="4"/> D.<select name="work" multiple="multiple" size="4">

D

Which of the following form code creates a mutually exclusive list of items? A.<input type="checkbox" name="payment" value="visa">Visa B.<select type="checkbox" name="payment" value="visa">Visa C.<select type="radio" name="payment" value="visa">Visa D.<input type="radio" name="payment" value="visa">Visa

D

What are the three audio formats supported by the HTML5 <audio> element? A..mp3, .aac, .wav B.mp3, .wma, .ogg C..mp3, .wav, .aiff D..mp3, .wav, .ogg

D..mp3, .wav, .ogg

What is the purpose of the CSS standard? A.Data storage B.Replacement for HTML C.Allows commerce in the WWW D.Simplifies the definition of styles in web pages

D.Simplifies the definition of styles in web pages

Which optional CSS property can you use to make text in an area appear more bold? A.font-size B.font-style C.font-stretch D.font-weight

D.font-weight

Which of the following is a vendor-neutral, cross-platform application programming interface (API)? Document Object Model (DOM) Dynamic HTML

DOM

Which of the following specifies how objects in a document can be referred to and manipulated through scripting languages? Document Object Model (DOM) Dynamic HTML

DOM

Which of these options is an API with tree-like structure that defines a way to access and manipulate documents A.DOM B.DHTML C.<button> D.<table>

DOM

Which of these options is a combination of W3C standards to provide interactivity to web pages A.DOM B.DHTML C.<button> D.<table>

DTHML

Three elements involved in databases

Data - the database file or multiple database files. Business logic - the SQL coding necessary to create relationships with the data stored in the database. Presentation - the way that data and business logic are presented on the user screen. Presentation includes Web forms created with HTML, and application-specific interfaces such as Microsoft Access or a Web browser.

Which of the following CGI technologies or languages is an open-source Web framework that makes the creation of complex, database-driven Websites easier by emphasizing the use of components that can be reused? ColdFusion AJAX PHP Django

Django

Which of the following allows content to be exchanged, without the need to refresh the browser window? Document Object Model (DOM) Dynamic HTML

Dynamic HTML

Which of the following allows you to animate text when a user passes a mouse pointer over certain parts of the page? Document Object Model (DOM) Dynamic HTML

Dynamic HTML

Which of the following allows you to create Webpages that react to user actions? Document Object Model (DOM) Dynamic HTML

Dynamic HTML

True or false? Image layers are supported by the most popular graphic file formats, such as PNG, GIF, and JPG. True False

F

True or false? JavaScript cannot be used for copyright protection. True False

F

True or false? JavaScript cannot be used to detect browser type and version. True False

F

True or false? JavaScript is considered an object-oriented language because it supports inheritance. True False

F

What is FTP and what is its purpose?

File Transmit Protocol used for web page publishing

Which multimedia technology did popular video sharing sites replace with Motion Picture Experts Group-4 (MP4) to address security concerns? A.Flash B.WAV C.Ogg> D.WebM

Flash

post

Form data is posted to the URL specified by the action attribute. Post is the preferred method for sending form data. It can send more characters, although sometimes post requires more processing by the CGI script.

Which Web-ready image formats support interlacing?

GIF 87a, GIF 89a, and PNG

What image file formats support image interlacing?

GIF and PNG

What <form> method attribute value instructs the browser to append the form data to the URL for the use in a query string? method get action post

Get

vector

Graphics that use mathematical coordinates with lines, curves, and shapes to create images and specify colors. Vector graphics can be created using various software tools, such as Adobe Illustrator. Vector graphics are generally small in file size. Vector graphics are scalable, which means they keep their image quality when enlarged or shrunk.

bitmap

Graphics that use small dots (usually thousands) to create images and specify colors. Each dot is mapped to bits stored in a computer's memory. Bitmaps are also called raster graphics, and they include the JPEG, GIF and PNG formats. Digitized photographs are the most common type of bitmap seen on the Web. Bitmap images can be created using software tools such as Microsoft Paint. Making bitmap images more detailed can create large file sizes. Removing pixels and compressing files will decrease file size but will also reduce image quality.

Which area of computer science improves creativity to offer a better end user experience with a website? A.HPC B.NLP C.ML D.HCI

HCI

Which of the following GUI Editor features offer easily identifiable graphical buttons to provide the same functions found in text-based menus? Images Icon Bars Publish Documents Table Creation

Icon Bars

Which of the following GUI Editor features allow you to open pages from the internet and save them to a Website or local file system? Import HTML Pages Text Style Options Hypertext Links Templates and Wizards

Import

image interlacing

Interlacing is a technique that allows an image to progressively display in a browser as it downloads. The image will appear in stages over the period of downloading time. This action makes your pages more accessible to users with slower Internet connections. This was important during the days of dial-up, but not widely seen with today's broadband Internet connections. Non-interlaced image formats are read from top to bottom. The top of a non-interlaced image will appear after the browser has read 50 percent of the image. The bottom half will render sometime later. By contrast, an interlaced image appears to fade in as it renders in the browser because it is interpreted differently. An interlaced image is repeatedly scanned from left to right. The first pass will render roughly 13 percent of the entire image. The second pass delivers 25 percent, and then continues in 25-percent increments until the image renders completely. During this process, the full image will at first appear fuzzy, but will continuously sharpen.

Which of the following is an object-oriented compiled programming language whose applications are platform-independent? Java C# C++ Visual Basic

Java

The legally authorized use of another person's or entity's copyrighted intellectual property. Infringement Copyright Trade Secret Licensing Trademark Plagiarism

Licensing

Which of the following do many GUI HTML editors offer that text editors do not?

Live preview of pages

Which of the following are valid 'audio only' file formats? Select 2. OGG MP4 MP3 WAV

MP3 WAV

Which of the following file formats are valid 'video only' formats? Select 2. MP4 WAV WEBM OGG

MP4 WEBM

Which of the following Internet marketing practices is the effect of marketing efforts influencing a particular target market or demographic? Off-Site Web Analytics Branding Mind Share

Mind Share

Which option is valid for a presentation prototype? A.Style sheet B.Site map C.Mockup D.Menu tree

Mockup

ssi support in web servers

Most Web servers include SSI capability. However, the SSI feature may be disabled. For example, if you are using Apache Server, you must edit the httpd.conf file to enter the instructions necessary for Apache Server to process the server-side includes found in HTML pages. With Microsoft Internet Information Services (IIS), you must select features in the GUI to enable SSI.

Which Web form element is an exposed list of two or more options, optionally scrollable, from which a user can make more than one selection? Single-option Select List Multiple-option Select List Radio Buttons Text Box Checkboxes

Multiple-option Select List

Which of the following are valid file formats for 'both video and audio' format? OGG WAV MP4 WEBM

OGG

Which of the following Internet marketing practices is used to determine your potential audience and how well your site has addressed and penetrated that market? Off-Site Web Analytics Branding Mind Share

Off-Site Web Analytics

Which of the following <video> formats are supported in HTML5?

Ogg, WebM, MP4

Which of the following Internet marketing practices is the practice of studying visitor behavior once that visitor has accessed your site in an attempt to increase market share and sales? Aggregator PPC (Pay-Per-Click) SEO (Search Engine Optimization) On-Site Web Analytics

On-Site Web Analytics

Which of the following CGI technologies or languages is a open-source scripting technology that can create dynamic, database-driven Websites that will run on multiple platforms? ColdFusion AJAX PHP Django

PHP

Which of the following is an interpreted server-side scripting language for creating dynamic Webpages? Perl Cobol PHP C

PHP

Which of the following Internet marketing practices is a technique that enables you to list your site high in search engine rankings by advertising on keywords that describe your product or service? Aggregator PPC (Pay-Per-Click) SEO (Search Engine Optimization) On-Site Web Analytics

PPC (Pay-Per-Click)

Which of the following is a cross-platform programming language that enables users to write custom CGI programs and system management programs? Perl Cobol PHP C

Perl

Which of the following languages is a traditional technology that is platform-independent? Perl Python .NET JSP

Perl

A specific instance of infringement in which an individual or entity claims to have created content that was created by someone else. Infringement Copyright Trade Secret Licensing Trademark Plagiarism

Plagiarism

wrap

Specifies whether user-entered text can wrap to new lines when submitted. This advanced attribute is used in conjunction with server-side scripts (such as PHP) that process form data. If "soft" is specified, text in the textarea is not wrapped when submitted. This setting is the default. If "hard" is specified, text in the textarea will wrap (adding newline characters) when submitted. The cols attribute must be specified when using wrap="hard". Note: The wrap attribute was deprecated in HTML 4.01 but was revived in HTML5 with "soft" and "hard" values, instead of the similar "none" and "virtual" values.

True or false? Photographs on photo-sharing Websites are copyrighted to the photographer. TrueFalse

T

True or false? You can use JavaScript to deposit cookies on the system hard drive of users who visit your site. True False

T

Which of the following GUI Editor features allow you to arrange data or organize a page layout? Images Icon Bars Publish Documents Table Creation

Table Creation

textarea

Tag is a container tag used to create an area for user commends and feedback.

select

Tag is a container tag used to create single-option and multiple-option select lists.

input

Tag is not a container tag; it stands alone. You use <input> to create text boxes, check boxes, radio buttons, and the Submit and Reset buttons.

option

Tag nexted in <select> to show options to choose from.

AJAX is a set of technologies used in developing and delivering web content. Which of the following is not true? A.xHTML is based on the HTML4.0 specification B.The Document Object Model is deprecated in web2.0 C.XML is used to display tabular data D.HTML5 allows for online collaboration

The Document Object Model is deprecated in web2.0

n-tier applications

The business logic, data and presentation are completely separated. An upgrade in one of the layers does not necessarily mean the others are affected. Using a Web browser to visit a Website that is connected to a remote database. The Web browser downloads the necessary forms and is responsible for presentation. The Web server is responsible for providing the business logic and programming. The remote database provides the data. Many times, multiple Web servers and databases are used.

two-tier applications

The client is responsible for presentation and business logic, and a server houses only the data. Called a clientserver relationship. Any change to the database requires client upgrade. A proprietary client connects to a database server to process information. For example, using Microsoft Access to query a remote database. 46

compression

The compression algorithms available in SVG allow you to create high-quality images and movies that are smaller in file size than other formats. SVG images have more efficient compression than JPG or GIF images.

Which three options are What You See Is What You Get (WYSIWYG) editors for web pages? A.Visual Studio, Froala, Notepad++ B.Froala, Notepad++, Adobe Dreamweaver C.Visual Studio, Notepad++, Adobe Dreamweaver D.Visual Studio, Froala, Adobe Dreamweaver

Visual Studio, Froala, Adobe Dreamweaver

file upload

Web Form Field: a button and field that allow users to navigate to and select a local file for uploading or other purposes (for example, to validate HTML files).

submit button

Web Form Field: a button that, when clicked, causes the form's action statement to process. Labeled "Submit" or "Submit Query" by default, but can display any label.

reset button

Web Form Field: a button that, when clicked, clears all form data and sets all form fields back to the default values for those fields. Labeled "Reset" by default, but can display any label.

single-option select list

Web Form Field: a drop-down list of two or more options from which a single selection can be made.

text area

Web Form Field: a scrolling text field into which the user can enter multiple lines of text.

password field

Web Form Field: a text box that visually masks the entered characters as filled circles.

text box

Web Form Field: a text field into which a user can enter characters.

multiple-option select list

Web Form Field: an exposed list of two or more options, optionally scrollable, from which the user can make multiple selections.

radio button

Web Form Field: round option buttons in a group of two or more mutually exclusive options. Reserved for two or more mutually exclusive options.

check box

Web Form Field: square boxes in a group of two or more non-exclusive options.

Which of the following is a valid coordinate for a rectangle client-side image map? coords = "x1, y1, x2, y2, ...xn, yn" coords = "x1, y1, x2, y2" coords = "x1, y1, radius" coords = "x1, y1, gps"

coords = "x1, y1, x2, y2"

Which of the following is a valid coordinate for a polygon client-side image map? coords = "x1, y1, x2, y2, ...xn, yn" coords = "x1, y1, x2, y2" coords = "x1, y1, radius" coords = "x1, y1, gps"

coords = "x1, y1, x2, y2, ...xn, yn"

Which Web form input type provides a button that allows users to navigate and select a local file for uploading? File Upload Password Textarea Submit Button Reset Button

file upload

What is the attribute of the HTML <a> tag that may have value as a Uniform Resource Locator? A.hyper B.href C.url D.link

href

Which of the following languages is a universal technology that uses the Java interpreter? Perl Python .NET JSP

jsp

What attribute would you apply to the <audio> element to play a file over & over again without stopping?

loop="loop"

When working with offline web applications, what instructs the browser to store certain files locally to allow the user to continue working without the connection? manifest canvas property DOM

manifest

What required <form> attribute specifies the manner in which the browser will send form data to a Web server? method get action post

method

Which attribute of the form field elements organizes the user's information into name=value pairs to a database using a CCI script?

name

Which Web form input type is a text box that visually masks the entered characters as filled circles? File Upload Reset Button Password Text area Mask

password

What <form> method attribute value allows sending more characters and is slightly more secure when submitting a Web form? method get action post

post

possible hot spot shapes

rect: used to create a rectangular area circle: used to create a circular area poly: used to create a polygonal area default: used to define the entire area

Which Web form element creates a drop-down list of two or more options from which a single selection can be made? Single-option Select List Multiple-option Select List Radio Buttons Text Box Checkboxes

single-option select list

Which hyperlink attribute defines where a link will open in a browser? A.path B.target C.name D.alt

target

What Web form input type is a standard text box in which a user can enter characters? Single-option Select List Multiple-option Select List Radio Buttons Text Box Checkboxes

text box

Which Web form element is a scrolling text field where the user can enter multiple lines of text? File Upload Reset Button Password Text area Submit

textarea

Which of the following Web portals is considered a horizontal portal? Select 2. www.cnet.com http://slashdot.org www.yahoo.com www.google.com

www.yahoo.com www.google.com


संबंधित स्टडी सेट्स

Health Insurance - Medical Expense insurance

View Set

MUS 185 Final Exam Caribbean Unit

View Set

World Geography : South Asia Exam

View Set