HTML and Java Web Technologies Quiz
Test your knowledge of HTML fundamentals, Java web frameworks (Wicket, Servlets, Applets), and web application concepts including session management and component architecture.
Questions
When you have a graphic that you would like to use for the backdrop of your page, what tag sequence do you use?
- BODY PICTURE
- BODY BACK
- BODY BACKGROUND
- BODY BACKDROP
How many numerical characters are in a hex color code?
- 5
- 6
- 4
- 7
What tag is used when you want to create a horizontal divider across your page?
- HL
- HD
- TR
- HR
What tag is used to center text on a page?
- t mid
- middle
- mid
- center
What tag do you use if you want text to pop up when the browser hovers his/her mouse over a graphic on your page in Internet Explorer?
- ctrl
- alt
- hover
- over
HTML is a programming language.
- True
- False
HTML documents are structured into two parts.
- BODY & TAIL
- HEAD & TAIL
- HEAD & BODY
- FIRST & BODY
HTML documents are also called
- Script pages
- Web pages
- Application pages
- HTML pages
HTML colors are defined using a notation,
- colour
- hexadecimal
- decimal
- number
HTML we use today was developed from the prototype written by
- Ben lee
- Paul werk
- John versky
- Tim Berners-Lee
Servlets are typically used for...
- Create a JVM for applets
- Extending a web server by providing dynamic web content.
- Storing information in applets.
- Loading buttons and menus.
A program written in the Java programming language can run on any platform because
- Java programming is derived from C++
- The Java Virtual Machine(JVM) interprets the program for the native operating system
- The compiler is identical to a C++ compiler
- The APIs do all the work
When a program class implements an interface, it must provide behavior for
- Two methods defined in that interface
- Only certain methods in an interface
- Any methods in a class
- All methods defined in that interface
Which method will a web browser call first on a new applet?
- main method
- start method
- init method
- paint method
Components in wicket act as
- view
- controller
- Model
- 1 & 2
- 2 & 3
which object holds the data that can be shared by all users ?
- request
- page
- application
- session
- session store
which of the below java components has an associated mark up ?
- form
- panel
- webpage
- window
- fragment
Java component and its associated markup should be in the same directory?
- True
- False
Is the object referenced by a CompoundPropertyModel should be Serializable?
- True
- False