Dreamweaver job interview question study guide


Intellisense
What happens when you type the < symbol in Dreamweaver? It depends on which panel or window has the focus. I like to work in Split mode where you can see BOTH the Code window (panel) and the Design window (panel). <P>

Oops! I just typed in a PARAGRAPH tag and because I was the DESIGN panel had the focus, what did Dreamweaver put into this growing file instead? &lt;P&gt; is what got entered into the HTML, so the web browser displays <P> and does NOT do a paragaph break, but shows the HTML tag for the paragraph break.

INTELLISENSE and INTELLIHINTS is the drop-down help list that frees you from memorizing or always having to go find the documentation to see the syntax and options available for HTML codes, etc.

... What is < ? What is > ?What is   ?
There are ESCAPE SEQUENCES for SPECIAL CHARACTERS.
See http://www.cs.tut.fi/~jkorpela/HTML3.2/3.10.html and see also http://www.mcli.dist.maricopa.edu/tut/tut10.html again. You saw these two pages in class and in lab back in early September!

What happens when you type an AMPERSAND & in Dreamweaver?
Code window has the focus. You get Intellisense list of ALL the possible Character Entity codes, of which &lt; is one, and &amp followed by a ; is the code for &, and is the ESCAPE SEQUENCE for &.

Suppose the Design window (Design Panel) has the focus. Recall in Split mode, the Code panel is the top half and the Design panel is the bottom half. Then you will just see an & show up there in the Design panel when you type that character. Of course, what you see in the Code (the actual HTML) panel is the Escape Sequence code, the Character Entity code &AMP; show up.

Typing a < into the Code panel?
You get a drop-down list here too. Also can be called INTELLISENSE. Use the arrow keys to scroll through the 94 different HTML tags, or type a letter and INTELLISENSE immediately goes to the first TAG that begins with that letter.

Job interview assumptions
The prospective job candidate knows basic HTML. You do NOT have to mention that the < symbol is used to start a tag. They are trying to see how deep your understanding and experience of Dreamweaver is. They are trying to see if you are comfortable with more advanced aspects of web pages - so if you know vocabulary and the DW setup and so on and demonstrate an appreciation of how to use the software and communicate/teach other employees how to use it, they will want to consider hiring you over the other 97 applicants.

Telling the interviewer that the < symbol starts a TAG is perhaps like being interviewed for a journalism or writing job and being asked the following: What do you like about Ralph Waldo Emerson's essays? Your answer: That he uses sentences and those sentences end in periods. And he breaks it up into paragraphs.

Or it would be like being interviewed to be a speech writer for some politician or leader? Question: What has most influenced you or what do you like about Lincoln's or Tom Paine's oratory? Answer: That Lincoln's speeches are made up of words and sentences and pargraphs and are interesting.

Or finally, you are being interviewed to be one of team of writer's for Jay Leno or David Letterman. Question: What comedians have influenced you and what do you take from them? Answer: Seinfeld, Bill Cosby and Lenny Bruce. They say stuff that makes me laugh.

Finished
late on a very memorable, profoundly moving

Sunday
afternoon, using the seldom used

<DT> Definition Term and
<DD> Definition Definition approach inside a <DL> Definition List.

<DL> lists are DEFINITily not as popular as <OL> or <UL> lists, which are Ordered Lists (numbered) and Unnumbered Lists (bulleted), respectively.

What is the DeaL with DL here? Not too worry, none of this is one the exam. Just playing around with DW and DL and using all of the above about < and & and so on.