Web Development and Unix Fundamentals
A quiz covering basic HTML tags and web development concepts, along with fundamental Unix/Linux command-line operations.
Questions
What is the command to find the differences in the lines containing "1999" between the files orig.txt and copy.txt, and add the result to file result.1999?
- diff orig.txt -d copy.txt | grep 1999 > result.1999
- diff orig.txt copy.txt | grep 1999 >> result.1999
- grep 1999 *.txt >> result.1999
- diff orig.txt copy.txt | grep 1999 << result.1999
How do you tell the server to use your local display (197.42.197.67) for X-windows?
- set display local
- setenv DISPLAY 192.42.197.67:0.0
- setdsp x 192.42.197.67
- set display 192.42.197.67:0.0
How do you uncompress and untar an archive called "lot_of_thing.tar.Z"?
- tar lot_of_thing.tar.Z | decomp
- zcat lot_of_thing.tar.Z | tar xvf -
- tar xvf lot_of_thing.tar.Z
- tar lot_of_thing
Create a new file "new.txt" that is a concatenation of "file1.txt" and "file2.txt"?
- cat file1.txt file2.txt > new.txt
- make new.txt=file1.txt+file2.txt
- tail file1.txt | head file2.txt > new.txt
- cat file1.txt file2.txt
What does HTML stand for?
- Hypertext Markup List
- Happytext Markup Language
- Hypertext Mark Language
- Hypertext Markup Language
How do you add a comment into HTML?
- <-Comment->
- <--Comment-->
- <!--Comment-->
- <Comment/>
What tag is used to create an unordered list?
- <ul>
- <ol>
- <li>
- <ulist>
What is the correct tag for the smallest heading?
- <h6>
- <h7>
- <h1>
What is the correct HTML for creating a hyperlink?
- <a url="http://www.webdesignerhelp">Web Designer Help</a>
- <link="http://www.webdesignerhelp"/>Web Designer Help</a>
- <a link="http://www.webdesignerhelp">Web Designer Help</a>
- <a href="http://www.webdesignerhelp">Web Designer Help</a>
What is the correct HTML for inserting an image?
- <img display="image.gif" />
- <img image="image.gif" />
- <img src="image.gif" />
- <img ="image.gif" />
What is the correct tag for the largest heading?
- <h6>
- <large>
- <bigh>
- <h1>
Which input type would allow a reader to select several options from a list of possibilities?
- Radio Buttons
- Checkboxes
- Form
- Text Field
What does XHTML stands for?
- eXtra Hypertext Markup Language
- eXtension Hypertext Markup Language
- eXtensible Hypertext Markup Language
- eXtended Hypertext Markup Language
What character code would be used to create a < symbol?
- & gt ;
- & lt ;
- & lessthan ;
- & lesst ;
What character code would be used to create a / symbol?
- & slash;
- & #47;
- & frsl;
- & frsla;
What is the correct HTML for referring to an external style sheet?
- <link rel="stylesheet" type="text?css" href="style.css" />
- <link href="style.css" />
- <link style.css />
- <link stylesheet="style.css" />
What tag is used to create a Definition list?
- <dt>
- <dd>
- <dl>
- <di>
What tag is used to define abbreviated words?
- <abbr>
- <abr>
- <abbreviation>
- <ab>
Which of the following is the correct use of the
- <title="Web Designer Help"></title>
- <title=Web Designer Help/>
- <title="Web Designer Help"/title>
- <title>Web Designer Help</title>
Keyboard Shortcut for Deleting a row in MS Excel
- Ctrl +
- Ctrl -
- Shift +
- Shirt -
. 'display', 'image', and bare '=' are not valid image attributes.