yolo
How would a class name of "bananas" be selected in CSS? bananas #bananas .bananas @bananas
.bananas
When assignments are submitted late in this course, how much credit do they lose per day? 10% 2% 20% 5%
10
Which is generally the right permissions to have on ones home directory on Serenity? 705 755 510 644
755
As discussed in class, our course asks that you permissions for directories be ___ , and permissions for files be ___. 755, 604 644, 750 755, 644 755, 404
755, 644
Which is the correct doctype for HTML5? <!DOCTYPE html PUBLIC "-//IETF//DTD HTML 2.0//EN"> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 5//EN" "http://www.w3.org/TR/html5/strict.dtd"> <!DOCTYPE html> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML Basic 1.1//EN" "http://www.w3.org/TR/xhtml-basic/xhtml-basic11.dtd">
<!DOCTYPE html>
Select the topic that does not fall under the four layers of web design Content Browsers Behavior Presentation
Browsers
The following: IP internet protocol TCP transmission control protocol UDP user datagram protocol was text marked up using: Description List Unordered List Ordered List Split Tag List
Description List
JavaScript is a derivative language of Java. True False
False
Media queries are used to adjust displays to smaller viewports but the queries themselves cannot determine a device's viewport size. True False
False
The Internet is the same thing as the World Wide Web. True False
False
The UNIX chown command is used to set/change file permissions True False
False
The transition target CSS property will default to 1 sec if the duration is unspecified. True False
False
With the change to Copyright protection known as the Digital Millennium Copyright Act/Term Ext, rights to copyright material can be acquired only after its term of protection has expired True False
False
Which of the following are commands available to SFTP servers? Check all that apply. RMDIR - delete a directory on the server GET - retrieve file(s) from server to client. PUT - transfer file(s) from the client to server. MKDIR - delete a directory on the server.
GET - retrieve file(s) from server to client. PUT - transfer file(s) from the client to server.
Checked below all items considered principles of responsive web design (rwd) HTML <aside> CSS fixed positioning fluid images fluid grids media queries
HTML <aside> CSS fixed positioning fluid images fluid grids media queries
The <body> and <title> tags enclose content. How does the browser use the tags? The <body> </body> content is rendered as the actual display and the <title> </title> content is shown on the browser's tab The <body> </body> content is rendered as the actual display, the <title> </title> content is not shown The <body> </body> content is shown on the browser's tab and the <title> </title> content is rendered as the primary display The <body> </body> content is rendered as the primary display and the <title> </title> content is not shown
The <body> </body> content is rendered as the actual display and the <title> </title> content is shown on the browser's tab
When creating an HTML file, the filename: Should never have any spaces in it Should have spaces with multi-word name Should always be only lower-case letters Should never include any special characters (%$#@&^)
Should never have any spaces in it Should always be only lower-case letters Should never include any special characters (%$#@&^)
liv@rit (library.rit.edu/liv) "choosing topics" tutorial helps to narrow a topic selection True False
True
liv@rit (library.rit.edu/liv) "finding articles" tutorial helps in the selection of which database to use. True False
True
Which CSS property is used to prevent an element from floating up next to the previous floated element? no-float break float clear
clear
Which CSS property is used to set the color of text? background-color font-color color text-color
color
To check if an HTML file has met the standard the following link should be used. http://w3.validator.org/ http://validator.w3.com/ http://w3.validator.com/ http://validator.w3.org/
http://validator.w3.org/
Check each item in the list below if it fits the "invisible web" category. twitter library.rit.edu books24x7 myCourses
library.rit.edu books24x7 myCourses
Which of the following commands give a long (detailed) listing of the current directory's contents? ls -l ls -L ls -a ls -al
ls -l ls -al
What color is represented by the hexadecimal value #FF0000? blue green black red
red
Advanced search engine features are designed to reduce (check all that apply): errors results retrieved search times accuracy
results retrieved search times accuracy
Which Unix command creates a file with zero bytes content? ren - xyz touch xyz create xyz char xyz
touch xyz
Which of the following are 2D transformations? (Check all that apply) transform() skewX() matrix() rotate() transition()
transform() skewX() matrix() rotate()
How would a ID name of "bananas" be selected in CSS? #bananas bananas .bananas @bananas
#bananas
Select the relative CSS units (select all that apply). % px pt em
% em
HTML standards guarantee that HTML pages will display consistently between browsers. True False
False
A downside of using flexbox for columns is that it's not as widely supported by browsers as the other methods. True False
True
A downside to using CSS on HTML tables is that the box model margin property for the "cells" is not available. True False
True
A transition list of property duration-time pairs will allow several properties to be changed at the same time. True False
True
All CSS properties can be set through an elements style object. True False
True
An ID name can only be used once per HTML page. True False
True
External scripts are linked to an HTML page with a <script> tag. True False
True
Gopher was the first menu-driven Internet application used to share documents. True False
True
HTML and CSS are client-side technologies/languages. True False
True
Intellectual property is almost anything created through a creative or intellectual process True False
True
MP4 is digital quality is superior to Ogg Question options: True False
True
Responsive web page design can be accomplished without the use of JavaScript. True False
True
The <li></li> tag is used to create list items in unordered lists. True False
True
The <li></li> tag is used to create list items within ordered lists. True False
True
The UNIX mv command is used to change a file's name. True False
True
The first version of the Internet was funded by the U.S. Department of Defence's Advanced Research Project Agency. True False
True
When designing a web page, it's best to design for handheld mobile devices first, and then work towards larger viewport devices. True False
True
Why bother validating your HTML? Select all that apply. Validation increases the likelihood that the HTML will display consistently across browsers. Validation helps ensure forward compatibility. CSS (styling) support is better for well-formed HTML. HTML pages won't display in the browser if they're not valid.
Validation increases the likelihood that the HTML will display consistently across browsers. Validation helps ensure forward compatibility. CSS (styling) support is better for well-formed HTML.
HTML tags are referred to as what? elements attributes charsets entities
elements
Which methods of columnar layout ensure that the backgrounds of all columns are the same height? float and inline-block flexbox
flexbox
Fair Use" provides for exceptions to copyright restrictions (check all that apply) for small businesses under 50 employees not a substantial enough portion of the whole to impact the creator's income for personal use even if it impacts the creator's income for non-profit educational purposes as part of research or scholarship
for small businesses under 50 employees not a substantial enough portion of the whole to impact the creator's income for non-profit educational purposes as part of research or scholarship
Which property can be used in JavaScript to set the contents of an element? body contains innerHTML contents
innerHTML
SFTP servers require which port when establishing a connection? 41 42 21 22
22
What's the color depth for 24-bit graphics (aka "true color")? 16,777,216 colors 256 colors 65,536 colors 17,235,152,792,486 colors
16,777,216 colors
In order for a browser to recognize the version of HTML code used, a Doctype statement is required. Where is it placed? Before the <html> Inside the <body> Inside the <html> Inside the <head>
Before the <html>
Which are bitmapped images? raster images vector images
Correct Answer raster images
In Photoshop, which tool would be best for hiding an imperfection, like a scratch or a zit on someone's face? magic wand tool clone stamp tool marquee tool eraser tool
Correct Response clone stamp tool
In Photoshop, which tool would be best for selecting all pixels in an area of a single color, such as a white background in a clipart cartoon? eraser tool clone stamp tool marquee tool magic wand tool
Correct Response magic wand tool
In Photoshop, which tool would be best for selecting a rectangular area? magic wand tool marquee tool clone stamp tool eraser tool
Correct Response marquee tool
How many <script> tags are allowed in an HTML file? there's no limit 10 1 0
Correct Response there's no limit
Only the copyright holder can (check all that apply) Create derivative works Distribute or copy the work Perform the work Exhibit or control who exhibits the work Reproduce the material
Create derivative works Reproduce the material
"Hypertext" is text that constrained to be linear and does not contain links to other text or media. True False
False
<img src="picture.gif" /> is an example of a container tag. True False
False
Plagiarism governs the legal right to use materials created by another, particularly if income if involved True False
Flase
Which version of HTML will be used in ISTE140? HTMLX HTML5 HTML 4.01 XHTML 1.0
HTML5
Which of the following video format statements is correct? MP4 is proprietary and Ogg is open-source MP4 is open-source and Ogg is proprietary MP4 and Ogg are open-source MP4 and Ogg are proprietary
MP4 is proprietary and Ogg is open-source
What color model is typically used for images to be displayed on the web? Grayscale CMYK RGB Indexed
RGB
Which is the description of a full-stack developer? Someone who does the graphic design, chooses the themes, and implements HTML and CSS Someone who develops new stacks of burgers for fast food restaurants Someone who does both front-end (on the client) and back-end development (on the server) Someone responsible for the server and networking hardware
Someone who does both front-end (on the client) and back-end development (on the server)
Which of the following are audio codec formats? (Check all that apply) Question options: Wav psd Mp3 pmp Ogg
Wav Mp3 Ogg
Which of the following are video codecs? (Check all that apply) Question options: WebM mp4 psd Ogg h245
WebM mp4 Ogg
Online credibility is left to: W3C IANA chance validation.org
chance
Given this code: <meta charset='utf-8' /> Which is an example of an attribute value? utf-8 meta there is no example of an attribute value in this sample charset
utf-8