Curioustab
Aptitude
General Knowledge
Verbal Reasoning
Computer Science
Interview
Take Free Test
Aptitude
General Knowledge
Verbal Reasoning
Computer Science
Interview
Take Free Test
Technology Questions
In HTML5 graphics, what is the main difference between using the Canvas element and using SVG (Scalable Vector Graphics) for drawing on a web page?
In HTML5 web development, what is SVG (Scalable Vector Graphics) and how is it used to render graphics in the browser without losing quality when scaled?
In HTML5, what is the canvas element and how is it used together with JavaScript to draw and animate graphics on a web page?
In modern web development, what is HTML5 Web Storage and how does it help web applications store key value data in the browser more efficiently than cookies?
In HTML5 Web Storage, how do the localStorage and sessionStorage objects differ in terms of lifetime and scope of the stored key value data?
In HTML5, what is the concept of Application Cache and what was its main advantage for web applications before being replaced by modern offline technologies?
In the context of HTML5 Application Cache, what is a manifest file and what role does it play in controlling which resources are cached for offline use?
In HTML5, what is a Web Worker and how does it help JavaScript applications run long running tasks without freezing the user interface?
In HTML5, which JavaScript objects are not directly accessible from inside a Web Worker, and how does this restriction affect what a worker can do?
In HTML5, which attributes were introduced for the form element to control features such as automatic completion and client side validation behavior?
In HTML5, can a web application obtain the geographical position of a user, and if so, how is this typically done in the browser?
HTML5 provides a drag and drop facility. How can you make an image element draggable so that it can be dragged by the user on supported browsers?
In the HTML5 Canvas 2D API, which method is used to draw an image onto the canvas at a specified position and size?
In HTML, what are meta tags used for inside the head section of a web page?
In web technologies, what is the main difference between XML and HTML in terms of purpose and the use of tags?
In an HTML document, what does an HTML tag do in relation to the content and layout of a web page?
In web programming, the abbreviation DOM stands for which term that describes the in memory tree representation of an HTML or XML document?
In classic HTML page design, what was considered an advantage of using frames, despite their later decline in popularity?
For designing the layout of a modern web page, which approach is generally better and why: using table elements for layout or using div elements with CSS based layouts?
In HTML, what is a non breaking space and how is it used to control spacing and line breaks in text content?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79