Questions and answers 2025
What ,is ,a ,characteristic ,of ,a ,web ,page ,with ,responsive ,design?
The ,ability ,to ,react ,to ,user ,events
A ,measure ,of ,the ,page ,load ,speed
The ,ability ,to ,resize ,to ,the ,screen ,size
A ,measure ,of ,the ,page ,close ,speed ,- ,CORRECT ,ANSWER-The ,ability ,to ,resize
,to ,the ,screen ,size
Which ,programming ,language ,provides ,dynamic ,content ,for ,a ,web ,page ,across
,all ,browsers?
XML
JavaScript
HTML5
Java ,- ,CORRECT ,ANSWER-JavaScript
Which ,type ,of ,content ,should ,use ,an ,<aside>?
News ,Feeds
Site ,copyrights
Headlines
Navigation ,Menus ,- ,CORRECT ,ANSWER-News ,Feeds
Which ,element ,should ,a ,developer ,use ,for ,a ,bulleted ,list?
<ul>
,<ol>
<li>
<p> ,- ,CORRECT ,ANSWER-<ul>
What ,does ,an ,HTML5 ,code ,validator ,conform ,about ,code?
It ,contains ,no ,warnings.
It ,works ,in ,every ,browser.
It ,complies ,with ,a ,standard.
It ,follows ,best ,practices. ,- ,CORRECT ,ANSWER-It ,complies ,with ,a ,standard.
A ,web ,developer ,needs ,to ,play ,an ,audio ,le ,endlessly. ,The ,developer ,writes ,the
,following ,HTML ,code:
<audio>
,<Source ,src ,"media/audio.ogg" ,type ,"audio/ogg" ,/>
<audio>
Which ,attribute ,should ,this ,developer ,use?
Controls
autoplay
loop
src ,- ,CORRECT ,ANSWER-loop
Which ,attribute ,is ,used ,to ,display ,an ,image ,inside ,a ,element ,before ,the ,video
,starts ,playing?
src
img
type
poster ,- ,CORRECT ,ANSWER-Poster
Which ,style ,sheet ,code ,denes ,the ,18-pixel ,Arial ,font ,for ,all ,level ,two ,headers?
h2 ,{font-family-: ,Arial; ,font-weight: ,18px; ,}
, .h2 ,{font-name: ,Arial; ,font-size: ,18px; ,}
h2 ,{font-family: ,Arial; ,font-size: ,18px; ,}
.h2 ,{font-name: ,Arial; ,font-weight:18px; ,} ,- ,CORRECT ,ANSWER-h2 ,{font-family:
,Arial; ,font-size: ,18px; ,}
Given ,the ,following ,CSS ,code:
body ,{
,color ,: ,white;
}
Which ,part ,of ,an ,element ,is ,affected ,by ,the ,color ,property?
Text
Border
Background
Shadow ,- ,CORRECT ,ANSWER-Text
What ,should ,be ,added ,first ,when ,embedding ,CSS ,in ,a ,single ,web ,page ,as ,an
,internal ,style ,sheet?
A ,<style> ,element ,to ,the ,<head> ,section
A ,<head> ,element ,to ,the ,<style> ,section
Declarations ,with ,a ,<style> ,</style> ,block
Declarations ,with ,a ,<head> ,</head> ,block ,- ,CORRECT ,ANSWER-A ,<style>
,element ,to ,the ,<head> ,section
What ,is ,the ,first ,character ,a ,developer ,should ,use ,for ,an ,id ,selector ,in ,CSS?
#
:
;
. ,- ,CORRECT ,ANSWER-#
A ,developer ,has ,an ,image ,that ,needs ,to ,remain ,in ,the ,same ,place ,when ,the
,page ,is ,scrolled. ,