Round 1 (Tech Utsav)

Quiz
•
Computers
•
University
•
Hard
SIDDHARTH 2363063
Used 1+ times
FREE Resource
15 questions
Show all answers
1.
MULTIPLE CHOICE QUESTION
5 sec • 1 pt
def rotLeft(a, d):
d %= len(a)
return a[d:] + a[:d]
The input is:
a = [1, 2, 3, 4, 5]
d = 2
[3, 4, 5, 1, 2]
[1, 2, 3, 4, 5]
[4, 5, 1, 2, 3]
[5, 1, 2, 3, 4]
2.
MULTIPLE CHOICE QUESTION
5 sec • 1 pt
The tolerance bands: gold; silver; brown, represent:
10%, 5%, 1%
5%, 10%, 2%
5%, 10%, 1%
10%, 5%, 2%
3.
MULTIPLE CHOICE QUESTION
5 sec • 1 pt
def calculate(n):
result = [ ]
for i in range(1, n + 1):
if i % 2 == 0:
result.append(i ** 2)
else:
result.append(i ** 3)
return result
n = 5
output = calculate(n)
print(output)
Input is :
n =5
[1, 4, 9, 16, 25]
[1, 2, 3, 4, 5]
[1, 4, 27, 16, 125]
[1, 8, 27, 64, 125]
4.
MULTIPLE CHOICE QUESTION
5 sec • 1 pt
Name the three leads of a common transistor
Collector Bias Omitter
Emitter Collector Bias
Base Collector Case
Collector Base Emitter
5.
MULTIPLE CHOICE QUESTION
5 sec • 1 pt
Which of the following is a type of error associated with digital-to-analog converters (DACs)?
nonmonotonic error
incorrect output codes
offset error
nonmonotonic and offset error
6.
MULTIPLE SELECT QUESTION
5 sec • 1 pt
def is_full_of_colors(seq):
red, green, yellow, blue = 0, 0, 0, 0
for i, c in enumerate(seq):
if c == 'R': red += 1
elif c == 'G': green += 1
elif c == 'Y': yellow += 1
elif c == 'B': blue += 1
if abs(red - green) > 1 or abs(yellow - blue) > 1: return False
return red == green and yellow == blue
T = int(input())
for _ in range(T):
print(is_full_of_colors(input().strip()))
The inputs are :
T = 3
Test Cases:
1. "RGRGRB"
2. "RGBY"
3. "RRGGBB"
True
True
False
False
True
True
True
False
False
True
False
True
7.
MULTIPLE CHOICE QUESTION
5 sec • 1 pt
Guess the next number
230 460 46 92 9.2 .......
18.4
18
18.2
20.4
Create a free account and access millions of resources
Similar Resources on Wayground
12 questions
Chapter 2-1: Array Part 1

Quiz
•
University
13 questions
Revision 2 MCA

Quiz
•
University
10 questions
IT Quiz Round 3

Quiz
•
University
18 questions
JavaScript Variables, Data Types, and Operators Quiz

Quiz
•
University
17 questions
Revision 2 C

Quiz
•
University
15 questions
Round 4 - Harvest

Quiz
•
University
16 questions
Linked List and Arrays in JAVA

Quiz
•
University
20 questions
TECHFEST QUALIFYING ROUND

Quiz
•
University
Popular Resources on Wayground
10 questions
Video Games

Quiz
•
6th - 12th Grade
10 questions
Lab Safety Procedures and Guidelines

Interactive video
•
6th - 10th Grade
25 questions
Multiplication Facts

Quiz
•
5th Grade
10 questions
UPDATED FOREST Kindness 9-22

Lesson
•
9th - 12th Grade
22 questions
Adding Integers

Quiz
•
6th Grade
15 questions
Subtracting Integers

Quiz
•
7th Grade
20 questions
US Constitution Quiz

Quiz
•
11th Grade
10 questions
Exploring Digital Citizenship Essentials

Interactive video
•
6th - 10th Grade
Discover more resources for Computers
10 questions
Would you rather...

Quiz
•
KG - University
20 questions
Definite and Indefinite Articles in Spanish (Avancemos)

Quiz
•
8th Grade - University
7 questions
Force and Motion

Interactive video
•
4th Grade - University
10 questions
The Constitution, the Articles, and Federalism Crash Course US History

Interactive video
•
11th Grade - University
7 questions
Figurative Language: Idioms, Similes, and Metaphors

Interactive video
•
4th Grade - University
20 questions
Levels of Measurements

Quiz
•
11th Grade - University
16 questions
Water Modeling Activity

Lesson
•
11th Grade - University
10 questions
ACT English prep

Quiz
•
9th Grade - University