A recursive function that has two base cases
A function where the recursive functions leads to an infinite loop
A recursive function where the function doesn’t return anything and just prints the values
A function where the recursive call is the last thing executed by the function
switch
foreach
Nested Loop
None
WAN
LAN
Fox
Short-range Wireless Network
What will be the output of the following Python code snippet?
numbers = {}letters = {}comb = {}numbers[1] = 56numbers[3] = 7letters[4] = 'B'comb['Numbers'] = numbers comb['Letters'] = lettersprint(comb)
Error, dictionary in a dictionary can’t exist
‘Numbers’: {1: 56, 3: 7}
{‘Numbers’: {1: 56}, ‘Letters’: {4: ‘B’}}
{‘Numbers’: {1: 56, 3: 7}, ‘Letters’: {4: ‘B’}}
Denoted by triple quotes for providing the specification of certain program elements
Design and implementation of specific functionality to be incorporated into a program
Defines the specification of how it is to be used
Any program that reuses code
Web Service
Softwares
All of the mentioned
Internet
11
8
1
0
BMP
DOC
STK
PPT
Device to Cloud
Device to Gateway
Backend Data Sharing
Device-to-device
What is the output of the following code ?
def fun(a, b=6): a=a+b print(a)fun(5, 4)
9
5
4
When grey is added to a color
When black is added to a color
When white is added to a color
None of the above
CNC Machining
Additive Manufacturing
Casting
Forging
What will be the output of the following Python code?
i = 1while True: if i%2 == 0: break print(i) i += 2
1 2
1 2 3 4 5 6 …
1 3 5 7 9 11 … infinite time
What will be the output of the following Python statement?
print(chr(ord('A')+32))
A
B
a
Error
Voice recognition systems
Vacuum tube computers
Mechanical calculators
Punch card readers
Docstring
Python Package Index
both a & b
none of the mentioned
Letters
Animations
Visual effect in slide show
IEEE 802.5
IEEE 802.12
IEEE 802.11
IEEE 802.7
A type of physical robot used in manufacturing
A software technology that automates repetitive and rule-based tasks
A manual process for data entry
A type of virtual reality simulation
Closed Loop Control System
Open Loop Control System
Feedback Control System
All of above
Sending an email
Buying a product from an online store
Creating a blog
Using a search engine
CPU, I/O Devices
I/O Devices, CPU
Timer, I/O Devices
CPU, ALU
Match the following cell referencing types with their descriptions.
A-1, B-2, C-3, D-4
A-2, B-1, C-4, D-3
A-3, B-4, C-1, D-2
A-4, B-3, C-2, D-1
Capacitance
Resistance
Inductance
None of these
Line Break
Horizontal row
Heading
Underline
2temp
float
temp_2
temp-value
The event host
Sponsoring organizations
Special guests or dignitaries
All of the above
Ctrl + X
Ctrl + N
Ctrl + M
None of These
Unordered list
Ordered list
Description list
Descriptive list
Required arguments
Keyword arguments
Default arguments
Variable-length arguments
<dl>
<ol>
<list>
<ul>
Infinite Loop
conditional loop
unlimited loop
Rules of polite behavior
Technical knowledge
Physical fitness
Intelligence level
Shift + F3
Ctrl + F2
Ctrl + F3
Alt + F3
x = 'abcd' for i in range(len(x)): print(x) x = 'a'
abcd abcd abcd abcd
a a a a
Volume
Velocity
Variety
Validity
a scheme to be used to interpret the value of the content attribute
a name for the metadata
the character encoding for the HTML document
GSM
CDMA
LTE
What will be the output of the following Arduino code?
#define X 10;void setup(){ X=0; Serial.begin(9600); Serial.print(X);}void loop(){ //Do nothing…}
0xAB
0xa
Alt+Home
Shift+Home
Ctrl+Home
Home
a={1:"A",2:"B",3:"C"}for i,j in a.items(): print(i,j,end=" ")
1 A 2 B 3 C
1 2 3
A B C
1:”A” 2:”B” 3:”C”
MAN
BAN
<sup>
<superscript>
<s>
<superscripteds>
document. write()
console.log()
window. alert()
innerHTML
.example
#example
element.example
example
SIM
GPS
Both A andB
Continuous Connectivity
Message Delivery for sleeping devices
Massage Communication path selection
w
rb
rt
r
Week Sensor Network
Wireless Sensor Network
Wired Sensor Network
Wi-Fi Sensor Network
readlines()
readline()
readlist()
readall()