Which one is the correct way of adding image in HTML file?
Anonymous Quiz
11%
<image source>
70%
<img src>
12%
<img source>
7%
<image src>
👍1
What function do you use to read a string?
Anonymous Quiz
39%
input(«Enter a string»)
18%
eval(input(«Enter a string»))
9%
enter(«Enter a string»)
34%
print(enter(«Enter a string»))
How to check whether an object x is an instance of class A?
Anonymous Quiz
51%
x.instance(A)
31%
A.instance(x)
18%
isinstance(x, A)
0%
isinstance(A, x)
In Python, what is the default maximum level of recursion?
Anonymous Quiz
8%
500
21%
1000
15%
10000
56%
There is no default maximum level
Which code snippet below will not return True?
Anonymous Quiz
15%
1 in [1,0]
32%
1 in [1,0] == True
38%
(1 in [1,0]) == True
15%
1 in [1, 2, 3]
Which one is the Universal Selector in CSS which selects all the HTML elements on the page ?
Anonymous Quiz
28%
#
13%
.
10%
;
50%
*
👍1
Which element defines a drop-down list ?
Anonymous Quiz
37%
<input type=dropdown>
17%
<dropdown>
27%
<input type=select>
20%
<select>
Which character is used to represent the closing of a tag in HTML ?
Anonymous Quiz
16%
\
68%
/
11%
!
5%
.
1) Which of the following not a primitive data type?
Anonymous Quiz
11%
int
22%
byte
61%
enum
6%
short
2) What type of identifier can store true or false?
Anonymous Quiz
3%
float
22%
bool
75%
boolean
0%
byte
Please open Telegram to view this post
VIEW IN TELEGRAM
Telegram
CODERS_HUB
You’ve been invited to add the folder “CODERS_HUB”, which includes 43 chats.
What will be the value of x?
long y = 256; byte x = byte(y);
long y = 256; byte x = byte(y);
Anonymous Quiz
45%
256
18%
127
10%
0
28%
Error!!