Bài HTML:
1. Từ HTML là từ viết tắt của từ nào?
Hyperlinks and Text Markup Language
Home Tool Markup Language
Hyper Text Markup Language
2. Ai (tổ chức nào) tạo ra Web standards?
The World Wide Web Consortium
Microsoft
Netscape
3. Đâu là tag tạo ra tiêu đề web kích cỡ lớn nhất.
<heading>
<h1>
<h6>
<head>
4. Đâu là tag để xuống dòng trong web?
<lb>
<br>
<break>
5. Đâu là tag tạo ra mầu nền của web?
<body color="yellow">
<body bgcolor="yellow">
<background>yellow</background>
6. Đâu là tag tạo ra chữ in đậm
<b>
<bold>
<bld>
<bb>
7. Đâu là tag tạo ra chữ in nghiêng
<ii>
<italics>
<i>
<list>
<ul>
<ol>
<dl>
15. Tag nào tạo ra 1 checkbox?
<check>
<input type="check">
<checkbox>
<input type="checkbox">
16. Tag nào tạo ra 1 text input field?
<textfield>
<textinput type="text">
<input type="text">
<input type="textfield">
17. Tag nào tạo ra 1 drop-down list?
<select>
<list>
<input type="dropdown">
<input type="list">
18. Tag nào tạo ra 1 text area?
<input type="textbox">
<textarea>
<input type="textarea">
19. Tag nào dùng để chèn 1 hình vào web?
<image
<img>image.gif</img>
<img <img href="image.gif>
20. Tag nào dùng để tạo hình nền cho web?
<body background="background.gif">
<background img="background.gif">
7. dòng nào thể hiện đúng một comment (lời chú thích) trong CSS?
/* this is a comment */
// this is a comment //
‘ this is a comment
// this is a comment
8. dòng nào dùng để thay đổi màu nền?
color:
bgcolor:
background-color:
9. làm thế nào thêm màu nền cho tất cả các phần tử <h1> ?
h1.all {background-color:#FFFFFF}
h1 {background-color:#FFFFFF}
all.h1 {background-color:#FFFFFF}
10. làm thế nào thay màu nền của chữ (text)?
text-color=
fgcolor:
color:
text-color:
11. thuộc tính nào thay đổi kích cỡ chữ?
font-style
font-size
text-style
text-size
12. thuộc tính nào làm chữ trong tag p trở thành chữ đậm?
p {text-size:bold}
<p style=”font-size:bold”>
<p style=”text-size:bold”>
p {font-weight:bold}
13. làm sao để hiển thị liên kết mà ko có gạch chân bên dưới?
a {decoration:no underline}
padding, có thể gán giá trị âm cho thuộc tính này không?
Yes
No
20. làm thế nào để hình ở đầu mỗi dòng của 1 list (danh sách) có hình vuông?
type: 2
type: square
list-type: square
list-style-type: square
Text j
1/ a logical error is usually đetece by :
a.the teaching assistant
b.JVM
c.java compiler
d.the operating system
2/given
abstract class techno{
abstract void techmethod();}
class techsub extends techno{
void techmethod();}
which of the following statements are legal instantiations of a techno variable
a/techno tsup=new techsub();
b/techno tsup = new techno();
c/none of the above
3/how can you destroy an object?
a/call x.remove(), where x is the object's name
b/set all of the object's reference to null
c/call x.finalize(), where x is the object's name
d/only the garbage collection system can destroy an object
e/null all the reference to the object
f/ call Runtime.getRuntime().gc
1.Cascading Style Sheets
2.<link rel=”stylesheet” type=”text/css” href=”mystyle.css”>
3.In the <head> section
4.<style>
5.style
6.body {color: black}
7./* this is a comment */
8.background-color:
9.h1 {background-color:#FFFFFF}
10.color.
11.font-size
12.p {font-weight:bold}
13.a {text-decoration:none}
14.text-transform:capitalize
15.font-family
16.font-weight:bold
17.border-width:10px 1px 5px 20px(top-right-bottom-left)
18.margin
19.No
20.list-style-type: square