wnas

Questions for the fronteers exam, a preview.

html css fronteers

As I am working on the questions for the written part of the 'fronteers certification', I had (and still have) a lot of difficulty in deciding the level of questions that would be appropriate. To easy is not good, but to hard would also be bad. So how does one figure out the correct level is on questions. One thing is certain, not by himself that is.

That is why we had a test exam a couple of weeks ago, we learned a lot from that. As that how you ask a question is as important as the question itself. If you have a question that can be interpreted a little bit different, people will. Test subject were every bit like clients in that respect, I can tell you that much. Thank god that we have one teacher in our midst, he will help a lot in that respect...

So for your amusement, I will present a couple of questions to you, some that made it to the exam, some that didn't. If you want to take those as a quick test I would recommend that you would take them without google assistance, as that would be the case in the real world...

CSS 2.1

  1. Welke kleur wordt de paragraaf (p) met deze CSS.

    What color does the paragraph (p) become with this CSS.

    p { color : red; }
    body p { color: green; }
    .foo p { color: black; }
  2. Welk element wordt rood, met deze HTML,

    Which element(s) becomes red with this HTML,

    p ~ div + h2[title] { color: red; }

    En deze html

    <p>paragraaf</p>
    <div>division</div>
    <h2 id="a">heading A</h2>
    <div>
    	<h2 id="b">heading B</h2>
    </div>
    <h2 id="c" title="title">header C</h2>
  3. Hoe breed is deze div in totaal, met deze CSS?

    How wide is this div, with this CSS?

    div { width : 100px; padding: 10px; border: 1px; }

XHTML 1.0 strict

  1. Welke tag geeft een geordende lijst?

    Which tag creates an ordered list?

  2. 			<li><p>Is de onderstaande code valide XHTML 1.0 strict ?</p>
    				<p lang="en">Is this code valid XHTML 1.0 strict?</p>
    				<pre><code>&#60;img src="foo.gif" title="title / description" &#62;</code></pre>
    				<label for="frx2a"><input type="radio" id="frx2a" name="frx2" value="a">ja</label>
    				<label for="frx2b"><input type="radio" id="frx2b" name="frx2" value="b">nee</label>
    			</li><li>
    				<p>Waar staat de <code>dt</code> tag voor?</p>
    				<p lang="en">Where does the <code>dt</code> tag stand for?</p>
    				<label for="frx8a"><input type="radio" id="frh8a" name="frh8" value="a">document type</label>
    				<label for="frx8b"><input type="radio" id="frh8b" name="frh8" value="b">definition term</label>
    			</li>
    

HTML 4.0 strict

  1. Is de body tag verplicht?

    Is the body tag required ?

  2. Is de afsluitende /p tag verplicht?

    Is the closing /p tag required ?

  3. Is deze html valide HTML 4.0 strict?

    Is this HTML valid HTML 4.0 strict?

    <TR width=100 >

All of these questions are right out of the specifications of the W3C as those are easily testable and not open to discussion.

What do you think, are these questions too easy, too hard or something else. Please let me know, I will try and put a full exam online in working order before Fronteers 2008 but as things are going now, I probably won't have the time. This because I will leave for london and @media ajax only two days after fronteers and still have some clients to keep happy...

← Home