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 JavaScript, which list best represents the main built in data types commonly discussed in interviews?
In web development, where are browser cookies actually stored on the user's computer hard disk, and on which side (client or server) do they physically reside?
In a typical web browser environment, what are JavaScript programs commonly used to do on web pages?
Are Java and JavaScript the same programming language, or are they different technologies with distinct purposes?
In JavaScript, how can you read the current text value entered by the user into a text input box in an HTML form?
In JavaScript, how can you determine whether a checkbox element on a web page is currently checked or unchecked?
In JavaScript running in a web browser, what is the difference between an alert box and a confirmation (confirm) box?
In JavaScript, which of the following is a correct way to create a new plain object instance?
In traditional JavaScript using var, does the language provide block level scope for variables declared inside if or for blocks, and how is scope actually handled?
Are JavaScript and jQuery the same thing, or how are they related in modern web development?
In JavaScript, how do timers such as setTimeout and setInterval work, and what is one important drawback of relying on these timers for precise timing?
In JavaScript, what is namespacing and how is it commonly used to organize code and avoid global name conflicts?
In JavaScript and browser based programming, which of the following best describes the main built in objects that are commonly used?
In a web browser, what does the JavaScript window.history object represent and allow scripts to do?
In older Mozilla based browsers, which of the following preferences is added to prefs.js to automatically open the JavaScript error console dialog each time an error occurs?
In classic browser scripting, which navigator object property has the same value in both Netscape and Internet Explorer and is therefore most reliable for basic feature detection?
In JavaScript, what does the ""this"" keyword refer to when used inside a method or function, assuming it is not explicitly bound or changed?
In JavaScript, what does the isNaN function do when it is passed a value as an argument?
In JavaScript, what is the difference between the equality operators ""=="" and ""==="" when comparing two values?
In HTML5, what are some of the major new features and improvements introduced compared to earlier versions of HTML?
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