Class Name: Web Development Mock Test
Class Session: Test - 1
Total Questions: 45 | Duration: 60 Mins
Instruction:
Note: You have only one attempt. So make it useful.
1) Select the real world Applications of Python:
2) Which of these are Python IDE's?
3) Which is not a key feature of Python?
4) Identify the Valid Statement
6) Python identifiers has maximum possible length. TRUE or FALSE?
8)
What is the output of the code shown below?
'%x %d' %(255, 255)
9) Which of the below Escape sequence NOT supported in Python
11) Converts an integer to a Unicode character
12) Function to check in a string that all characters are alphanumeric?
13)
Fruits = ["Apple", "Orange", "Mango", "Banana"]
Fruits [-1] = ?
14) How will you remove last object from a list?
15) Which of the following statements create a dictionary?
16)
dict1 = {1:'1',2:'2',3:'3'}
dict {}
print (len(dict1))
17) Function used to display documentation string is called:
19)
What is the output of the following?
i = 1
while True:
if i%007 == 0:
break
print(i)
i += 1
20) while writing a code, if we haven't decided what to do yet, we use:
21) Option to relate to a Function Call made with an argument passed as its parameter?
22) What is returned by math.ceil(5.6)?
23) The clause allows the programmer to force an error to occur is:
24) Choose the write answer of creating an empty class?
25) Which of the following is required to create a new instance of a class?
26) Which of the following is not a semantic HTML
28) A semantic HTML describes its meaning in
29) The CSS property ……………… can be used to simulate <sub> element.
31) <legend> is defined by a ……………. element.
32) What is jQuery? jQuery is a
33) Which method in a React Component should you override to stop the component from updating?
34) Which of the following is correct syntax for a button click event handler, foo?
35) What happens when you call setState() inside render() method?
36) How do you write an inline style specifying the font-size:12px and color:red; in JSX
37) What will happen if you render an input element with disabled = {false}
38) Which of the following below act as the input of a class-based component?
39) What does {% include %} does?
41)
Which of these commands is not a
management command of staticfiles?
42)
What data types and objects are not accepted as
an argument by Paginator class?
43)
Which of these is not a valid method or
approach to perform URL resolution?
44)
Which of the following Password Validators are
not provided by default in Django?