NEW
Font size
WorksheetsCOMP_Technical Quiz_Round 2
Total questions: 20
Worksheet time: 10mins
If a='cpp', b='buzz' then which of the following operation would show 'cppbuzz' as output?
a+b
a+''+b
a+""+b
All of the above
How to find the last element of list in Python? Assume `bikes` is the name of list.
bikes[0]
bikes[-1]
bikes[lpos]
bikes[:-1]
What will be the output?
1 2 3
Syntax error
1 2
none of the mentioned
What will be the output of the following Python code snippet if x=1?
4
2
1
8
What will be the output of the following Python code snippet?
4 3 2 1
error
1 2 3 4
none of the mentioned
What will be the output of the following C code?
Compile time error
Hello World! 34
Hello World! 1000
Hello World! followed by a junk value
In C language, FILE is of which data type?
int
char *
struct
None of the mentioned
In operating system, each process has its own __________
open files
pending alarms, signals, and signal handlers
address space and global variables
all of the mentioned
HTML stands for __________
HyperText Markup Language
HyperText Machine Language
HyperText Marking Language
HighText Marking Language
What is the correct syntax of doctype in HTML5?
</doctype html>
<doctype html>
<doctype html!>
<!doctype html>
Which component is used to compile, debug and execute the java programs?
JRE
JIT
JDK
JVM
What will be the output of the following Java code?
32
33
24
25
What do you mean by one to many relationships?
What do you mean by one to many relationships?
One teacher can have many classes
Many classes may have many teachers
Many teachers may have many classes
A huge collection of the information or data accumulated form several different sources is known as ________:
Data Management
Data Mining
Data Warehouse
Both B and C
Which one of the following refers to the "data about data"?
Directory
Sub Data
Warehouse
Meta Data
Which is not an Internet protocol?
HTTP
FTP
STP
IP
What do we call a collection of two or more computers that are located within a limited distance of each other and that are connected to each other directly or indirectly?
Internet
Intranet
Local Area Network
Wide Area Network
In which process, a local variable has the same name as one of the instance variables?
Serialization
Variable Shadowing
Abstraction
Multi-threading
What will be the output of the following Python code?
Abc. def
abc. def
Abc. Def
ABC. DEF
Which feature of OOP indicates code reusability?
Abstraction
Polymorphism
Encapsulation
Inheritance
