CODING QUIZ
2.99K subscribers
44 photos
1 video
35 links
https://t.me/addlist/oJIs6WVKrqBmMWQ1

Hello! I am @Myhurthearts and welcome to the Coding channel! Here we can learn all things related to coding and improve our skills , just let me know
Download Telegram
Machine language is .......
Anonymous Quiz
51%
Low_level language
49%
High_level language
You can use the stream insertion operator ">>" to send the output to cout.
Anonymous Quiz
72%
True
28%
False
#include is not part of c++ language.
Anonymous Quiz
33%
True
67%
False
#include lines not seen by compiler.
Anonymous Quiz
40%
True
60%
False
You can place a semicolon at the end of #include line.
Anonymous Quiz
39%
True
61%
False
What is output of following −
print("any".encode())
Anonymous Quiz
53%
‘any’
15%
‘yan’
25%
b’any’
7%
x’any’
What is the output of the following code?
print(type([1,2]))
Anonymous Quiz
17%
<class 'tuple'>
27%
<class 'int'>
16%
<class 'set'>
11%
<class 'complex'>
29%
<class 'list'>
Which of the following codes raises an exception?
Anonymous Quiz
23%
# test
23%
a = {1, 2, #comment 3, 4}
👍1
Which function could be used to list every file and folder in the current directory?
Anonymous Quiz
21%
os.dirnames(‘.’)
38%
os.listdir(‘.’)
36%
os.listdir(‘/’)
Which one is the root element of the HTML page ?
Anonymous Quiz
19%
<head>
16%
<body>
59%
<html>
7%
<title>
The first version of HTML was written by
Anonymous Quiz
23%
Dave Raggett
23%
Charles Babbage
47%
Tim Berners Lee
7%
Augusta Ada
Which version of html is currently used
Anonymous Quiz
9%
HTML 3
8%
HTML 4
69%
HTML 5
14%
HTML 6
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
int price = 50;
//50 is a string literal.
Anonymous Quiz
32%
True
68%
False
total.sales = 50;
//right variable and not be any errors.
Anonymous Quiz
48%
True
52%
False
totalSales$ = 50;
//right variable
Anonymous Quiz
64%
True
36%
False
How many errors?

int length =12, width =5, area ;
Anonymous Quiz
37%
0
23%
1
29%
2
6%
3
6%
4
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)