What will the following code output?
a,b,c=3,5,6 b,c,a=a,b,c print(a,” ”,b,” ”,c)
3 5 6
6 3 5
5 6 3
6 5 3
.mod
.module
.py
.python
Organize fragmented files
Delete unnecessary and temporary files
Format the hard drive
Optimize system performance
NCP
ISDN
LCP
HDLC
IoT makes the connected technology, product, or services to active engagement between each other.
It makes the complete failure of the system.
IoT makes things smart and enhances life through the use of data.
None of the above
What is the output of the following program:
i = 0while i < 3: print (i) i=i+1 print (i+1)
0 2 1 3 2 4
0 1 2 3 4 5
Infinite loop
0 1 2 3
Define keyword in python
Define variable in python
Define function in python
All of the above
int
bool
void
None
Link
ALINK
VLINK
All the above
SBI
ICICI
BOB
RBI
Calculating result
Sorting on result
Filtering on result
All of these
Scanner
Light Pen
Graphics Tablet
Touchpad
onsize
onresize
onzoom
onexpand
avrgcc
g++
cpython for windows
avrdude
Text file
Binary file
Both (A) and (B)
None of these
LI
UL
OI
a=5 a*=10 print(a)
5
10
50
Error
for
While
do-while
Run need based application
Create anti virus software
Write Programs
Hack other computer
What will be the output of the following Python function?
sum(2,4,6)sum([1,2,3])
Error, 6
12, Error
12, 6
Error, Error
A Computer virus
A Browser
A program that catalogs web sites
A hacker community
or
equal
and
not
sets the file's current position at the offset
sets the file's previous position at the offset
sets the file's current position within the file
:valid
:required
:optional
:invalid
Privately
Publicly
Batch
User
#classname
.classname
element.classname
*classname
Creative writing
Complex decision-making
Data entry from spreadsheets to databases
Physical labor in a factory
Data link Layer
Network Layer
Transport Layer
None of These
Display()
Prompt()
Alert()
Confirm()
x | y
x ^ y
x & y
x – y
Use internet for collecting and sharing data
Need microcontrollers
Use wireless technology
Are completely safe
What will be the output of the following Python code?
for i in range(5): if i == 5: break else: print(i)else: print("Here")
0 1 2 3 4 Here
0 1 2 3 4 5 Here
0 1 2 3 4
1 2 3 4 5
Searching.
Heuristics.
Pattern recognition.
Parallel processing.
<body>
<br>
<hr>
<img>
Shift+F2
Shift+F5
Shift+F3
CTRL+F9
RAM, ROM, I/O ports and timers
CPU, RAM, I/O ports and timers
CPU, RAM, ROM, I/O ports and timers
CPU, ROM, I/O ports and timers
Perception Layer
Smart Network Layer
Smart Application Layer
Data Layer
International Goods
Electronic Goods
Computer Products
Product and Services over internet
text-color
color
font-color
All of These
Identifier
Expression
Syntax
Task
4-bit
8-bit
16-bit
32-bit
6LoWPAN
LoRa
LoRaWAN
Directly typing function name in a cell
Using function wizard or selecting from toolbar
Both (a) and (b)
Depends on the function
Pulse Code Modulated Signal
Frequency Modulated Signal
Pulse Width Modulated Signal
Pulse Amplitude Modulated Signal
55
60
555
Sniffer script
Spruff
Spam
Crepe
It is triggered when an element is clicked
It is triggered when an element gains focus
It is triggered when an element is hovered
It is triggered when the window is resized
Firewall
Antivirus software
Encryption
Intrusion detection system (IDS)
Format
Slide Show
Slide
Tools
x = "abcdef"i = "a"while i in x: print(i, end = " ")
no output
i i i i i i …
a a a a a a …
a b c d e f