Knowledge check.
- Choose one best answer from given 4 choices for each questions.
- Review before submit as you wont get a chance to review after submit.
- Max Time for quiz is 30 mins and Exam is 90 mins.
- Login is not required for an exam or a quiz.
- By submitting you formally acknowledge and accept terms and conditions mentioned here.
Give the output of the following code snippet : Assume the input given in 0.0
try :
value = int(input("Enter value from 1 to 50:"))
exception:
print("Invalid")
else :
if(value > 0 ) and (value <= 50):
print(value)
else :
print(0)
Which of the following libraries helps create anti-aliased drawings?
Give the output of the following code snippet in the python shell window:
>>> define Test :
print("Hello")
>>>Test()
Give the output of the following code snippet : The contents of the file is a string 'Hello World'
file = open("Test.txt","a+")
file.write("Program")
file.seek(1,1)
string = file.read()
file.close()
print (string)
Give the output of the following code snippet:
var = 0
string = "Hello"
for Arg in string:
if(Arg == 'o'):
var +=2
else :
break
var -=1
print(var)
Which of the following commands is used to obtain the host name for a host address?
Give the output of the following code snippet : Assume the inputs given for value1 = 10 and value2 = 10.
try :
value1 = int(input("Enter first value:"))
value2 = int(input("Enter second value:"))
Result = value1/value2
except (ValueError):
print("Enter whole number")
except (KeyboardInterrupt):
print("Interrupt detected")
except (ArithmeticError):
print("Undefined Math error")
except (ZeroDivisionError):
print("Cannot divide by zero")
else :
print(Result)
Give the importance of the command line option -u in python :
Give the output of the following code snippet:
class MyClass:
def PrintList1(*args):
for count,Item in enumerate(args):
if(count == 0):
print((Item[0]))
def PrintList2(**kwargs):
for count,Item in kwargs.items():
if(count == 'D'):
print(Item[1]+Item[1])
MyClass.PrintList1("Red")
MyClass.PrintList2(A="Green",D="Yellow")
Give the output of the following code snippet:
class MyClass:
Sum = 0
def Calc(self,Val1 = 10, Val2=20):
Sum = Val1 * Val2/10
print(Sum)
MyExp = MyClass()
MyExp.Calc(30,40)
Which of the following statements are true about PyInstaller?
Which of the following command line option in python if used to optimize the generated byte code?
Which attribute is used to output the loader information for this module?
Give the output of the following code snippet:
List = [1,2,4,5.5]
Result = 0
List.insert(5,1)
for value in List:
Result += value
print(List[3])
Give the output of the following code snippet:
class MyClass:
def __init__(self,Age):
self.Age = Age
def GetAge(self):
return self.Age
def SetAge(self,Age):
if(Age > 30):
self.Age = Age + self.Age
else:
self.Age = 20
def __str__(self):
return "{0} is aged {1}.".format(self.Name,self.Age)
JohnRecord = MyClass(50)
JohnRecord.SetAge(20)
AnnaRecord = MyClass(44)
print(JohnRecord.GetAge())
Give the output of the following code snippet:
from collections import Counter
List = [1,2,4,5] + [11,10]
Result = 0
List2 = List.copy()
List2.reverse()
List3 = List+ List2
ListCount= Counter(List3)
print((ListCount.get(1))+(ListCount.get("Hello")))
What are the following topics provided by W3Schools in order to study and understand XML?
Give the output of the following code snippet:
List = [1,2,4,5.5]
Result = 0
List.delete(5)
for value in List:
Result += value
print(Result)
Give the output of the following code snippet:
class MyClass:
def __init__(self,Name = "",Age=0):
self.Name = Name
self.Age = Age
def GetName(self):
return self.Name
def SetName(self, Name):
self.Name = Name
def GetAge(self):
return self.Age
def SetAge(self,Age):
if(Age > 30):
self.Age = Age + self.Age
else:
self.Age = 20
def __str__(self):
return "{0} is aged {1}.".format(self.Name,self.Age)
class Anna(class MyClass):
def __init__(self, Age=0):
self.Name = "Anna"
self.Age = Age
self.Id = 1001
def GetID(self):
return self.Id
JohnRecord = MyClass()
AnnaRecord = Anna()
print(AnnaRecord)
Give the output of the following code snippet:
var = 0
string = "Hello"
for Arg in string:
if(Arg == 'o'):
var += 2
break:
elif (var != 1):
var -=1
print(var)
Which method can be used to get information about both host address and port information?
Give the output of the following code snippet:
List = [1,2,3,4] + [11,10,9,8]
Result = 0
List2 = List.copy()
List2.append("!")
List.sort()
print(List)
|
|
|
|
Which of the following conditional statements is not available in Python?
Give the output of the following code snippet:
List = [1,2,'Three',4,5.5]
Result = 0
for value in List:
Result += int(List[value])
print(Result)
Give the output of the following code snippet:
string = "This is a test program that is to test string functions"
Result = string.index("prog",10,30)
print(Result)
Which demonstrates a special kind of list that never contains duplicate entries?
Give the output of the following code snippet:
string = "This is a test program that is to test string functions"
Result = string.endswith("Functions")
if(Result == False)
print(Result)
Give the output of the following code snippet:
class MyClass:
def __init__(self, *args):
self.Input = args
def __add__(self, Other):
Output = MyClass(self)
Output.Input = self.Input + Other.Input
return Output
def __str__(self):
Output = ""
for Item in self.Input:
Output += Item
return Output
Value1 = MyClass("Red", "Green")
Value2 = MyClass("Blue", "Purple")
Value3 = MyClass("Black", "White")
Value4 = MyClass("Yellow", "Brown")
Value = Value1 + Value2
print("{0} + {1} = {2}".format(Value1, Value2, Value3))
Which of the following statements is true regarding the from…import statement?
Give the output of the following code snippet:
## LibTest.py
def SayHello():
print("Hello")
PrintAge(10)
return
def PrintAge(Age):
print(Age + 10)
return
>>> from LibTest import SayHello and SayAge
>>> SayHello()
Which of the following is a valid method to provide default arguments to functions in Python?
To obtain a list of attributes associated with the error argument object, which function can be used?
Give the output of the following code snippet : Assume the input given in 5.
try :
value =float(input("Enter value from 1 to 50:"))
except:
print("Invalid")
else :
if(value > 0.0 ) and (value <= 50.5):
print(value)
else :
print(0)
Give the output of the following code snippet:
var = 0
string = "Hello World"
for Arg in string:
if(Arg == ''):
var +=2
else :
var -=1
else :
var += 1
print(var)
Give the output of the following code snippet : Assume the input given in 55.
try :
value = int(input("Enter value from 1 to 50:"))
except:
print("Invalid")
else :
if(value > 0 ) and (value <= 50):
print(value)
else :
print(0)
Give the output of the following code snippet:
var = 1
for Arg in "Hello":
var += 1
print(Arg)
Give the output of the following code snippet:
string = "Hello World"
Result = len(string)
print(Result)
Give the output of the following code snippet:
List = [1,2,4,5.5]
Result = 0
List.remove(4)
for value in List:
Result += value
print(Result)
Give the output of the following code snippet:
string = "This is a test program that is to test string functions"
Result = string.endswith("Functions")
if(Result == False):
print(Result)
Give the output of the following code snippet:
var = 0
string = "Hello"
for Arg in string:
if(Arg == 'l'):
var +=2
continue
print(string)
else:
var -=1
print(var)
Which of the following are true with regards to modules in Python?
Give the output of the following code snippet:
class MyClass:
def PrintList2(*args):
for count,Item in enumerate(args):
while(count == 'A'):
print("{0}".format(Item[0]))
break
else :
print("{0}".format(Item[0]+Item[0]))
continue
MyClass.PrintList2(A="Red")
MyClass.PrintList2(A="Green",D="Yellow")
Give the output of the following code snippet:
print("Hello")
print('World')
print("""Multiple line text.
This is an example""")
Give the output of the following code snippet in the python shell window:
>>> def Test(Arg = int("Hello")):
print(Arg)
>>> Test()
Which of the following statements is true about the multiline code?
Give the output of the following code snippet :
value = 5
if(value == (10/3)):
if(value > 0):
value -= 1
print(value)
elif (value == 10-5):
print(value + 1)
elif (value == 10/2):
print(value - 2)
Give the output of the following code snippet : Assume the file is not present
import sys
try :
File = open('Test.txt')
except IOError as e:
print("Error opening file " + "Error number : {0} ".format(e.errno) +
"Error text :{0}".format(e.strerror))
else:
print("File opened")
File.close()
Give the output of the following code snippet:
#!/usr/bin/python
MyTuple = ("Red","Blue")
MyTuple = MyTuple.add((20,10))
print(MyTuple)
Give the output of the following code snippet :
>>> myInt = float("56.05") + float("24.05")
>>> type(myInt)
What does the color Green in the Python IDLE indicate?
Give the output of the command given in the shell window if the file Test.py contains the following line of code :
print("Hello World")
>>> exec(open ("c:/Test.py").read())
Give the output of the following code snippet :
>>> myvar = 0o16
>>> bin(myvar)
Give the output of the following code snippet:
var = 0
for Arg in range(1,5):
var += 5
else:
pass
var //= 2
print(var)
Give the output of the following code snippet:
List = [1,2,4,5.5]
Result = 0
List.pop(5)
for value in List:
Result += value
print(Result)
Give the output of the following code snippet:
string = "12345678A"
Result = string.isnumeric()
print(Result)
Give the output of the following code snippet:
class MyClass:
def __init__(self,Name="John",Age):
self.Name = Name
self.Age = Age
def GetName(self):
return self.Name
def SetName(self, Name):
self.Name = Name
def GetAge(self):
return self.Age
def SetAge(self):
self.Age = 10
def __str__(self):
return "{0} is aged {1}.".format(self.Name,self.Age)
JohnRecord = MyClass(50)
JohnRecord.SetAge()
AnnaRecord = MyClass("Amy", 44)
print(JohnRecord.GetAge())
Give the output of the following code snippet:
class MyTest
var = 0
NewInst = MyTest()
print(NewInst.var + 1)
Which of the following statements are true for a single line comment in the edit window?
Which symbol is used to concatenating multiple lines of text in a python code?
Give the output of the following code snippet : The contents of the file 'Test.txt' is a string 'Red Blue' , 'Test2.txt' contains the string ' Green Yellow' and 'Test3.txt' contains the string ' Black White'.
file = open("Test.txt","r+")
file3 = open("Test3.txt","a+")
string = file.read()
file3.write(string)
file3.seek(0,0)
string1 = file3.read()
file.close()
file3.close()
print (string1)
Give the output of the following code snippet:
var = 1
for Arg in range(1,3):
if(Arg == 3):
continue
var += 5
print(var)
Give the output of the following code snippet in the python shell window:
>>> def Fun(Arg = "No value"):
print(Arg)
>>> Fun()
Which command is used to convert a numeric value to binary in Python?
Which of the following statements are true about the PyQtGraph?
Give the output of the following code snippet:
string = " Hello World "
Result = string.lstrip()
print(Result)
Give the output of the following code snippet :
>>> myvar = B101
>>> myvar
Which of the following statements are true with regards to environment variables in python?
Python does not use case sensitive options for command line arguments. State true or false :
Which method is used to delete files by supplying the name of the file to be deleted as the argument?
Which exception is generated by the OS when the application tries to open a file that doesn’t exist?
Give the output of the following code snippet : The contents of the file 'Test.txt' is a string 'Red Blue' , 'Test2.txt' contains the string ' Green Yellow' and 'Test3.txt' contains the string ' Black White'.
file = open("Test.txt","a+")
file2 = open("Test2.txt","r+")
file3 = open("Test3.txt","w+")
string = file.read()
file3.seek(0,2)
file3.write(string)
string = file2.read()
file3.seek(0,2)
file3.write(string)
val = file3.tell()
file.close()
file2.close()
file3.close()
print (val)
Give the output of the following code snippet in the python shell window:
>>> def Test(Arg = 6):
Arg **=2
Arg /=2
print(Arg)
>>> Test(int("Hello"))
Give the output of the following code snippet:
var = 1
for Arg in range(1,10):
var += 2
else:
var **= 2
print(var)
Give the output of the following code snippet:
string = "Hello World"
Result = string.zfill(15)
Result1 = Result.rjust(20,"*")
print(Result1)
Which of the following list functions adds an entry to a specific position in the list?
Give the output of the following code snippet:
string = "Hello\nWorld\nProgram\n"
Result = string.splitlines()
print(Result)
Which is a utility that creates an executable program from your Python script?
Give the importance of the -h command line option in python :
Give the output of the following lines of code executed in the python shell window :
>>> var = 5
>>>myvar = 0
>>>myvar = var
>>>myvar
What are the kinds of documentations that are associated with applications?
Give the output of the following code snippet :
>>> myvar = 0b101
>>> myvar
Which of the following statements are true regarding the Python IDLE?
Give the output of the following code snippet in the python shell window:
>>> def Test(Arg = str(23)):
print(Arg + str(45))
>>> Test(10)
Give the output of the following code snippet:
class MyTest:
var = 0
NewInst = MyTest()
NewInst2 = MyTest()
NewInst.var = 2
NewInst.var = 3
print((NewInst2.var + NewInst.var))
Consider the following snippet. Identify any errors that may have occurred in it.
print("This is an example code")
Give the output of the following code snippet:
var = 1
for Arg in range(1,3):
if(Arg <= 3):
pass
var += 5
print(var)
Give the output of the following code snippet : Assume the name of the host machine is 'Main'.
import socket
print(socket.gethostbyaddr("127.0.0.1"))
Which of the following libraries makes it easy to add an appealing tabular presentation to your command-line application?
Which of the following statements are true about the PyQtGraph?
Give the output of the following code snippet :
value = 10
if(value == (10//5)):
print(value)
else:
print(value - 1)
Give the output of the following code snippet in the python shell window:
>>> def TestFun(Arg):
print("Hello")
>>> TestFun(1)
Give the output of the following code snippet:
List = ["Hello","World"]*2 + ["!"]*2
Result = 0
for value in List:
Result += 2
if(value == '!'):
Result -= 2
else :
List.clear()
Result += 2
print(Result)
Which of the following statements are true for a single line comment in the edit window?
Give the output of the following code snippet:
class MyClass:
def Calc(self,Val1 = 10):
Sum = Val1 /10
print(Sum)
MyExp = MyClass()
MyExp.Calc(20)
Which of the following statements is true regarding compile time errors?
Give the output of the following code snippet:
var = 0
string = "Hello"
for Arg in string:
if(Arg == 'o'):
var += 2
break
elif (var != 1):
var -=1
print(var)
Give the output of the following code snippet:
class MyTest:
var = 0
def SayHello():
print("Hello")
NewInst = MyTest()
NewInst.SayHello()
Give the output of the following code snippet in the python shell window:
>>> def Test(Arg = 25):
Arg **=2
Arg //=3
print(Arg+1)
>>> Test()
Give the output of the following code snippet :
print("Red " +
# "Yellow" +
# "Blue")
Give the output of the following code snippet:
string = "This is a test program that is to test string functions"
Result = string.find("is")
print(Result)
Give the output of the following code snippet:
## LibTest.py
def SayHello():
print("Hello")
PrintAge(10)
return
def PrintAge():
Age = 10
print(Age + 10)
SayHello()
return
>>> import LibTest
>>>SayHello()
What are the components of an email address?
Which of the following is an cryptographic library that can be used for data encryption?
Give the output of the following code snippet:
class MyClass:
def __init__(self, args):
self.Input = args
def __add__(self, Other):
Output = MyClass()
Output.Input = self.Input + Other.Input
return Output
def __str__(self):
Output = ""
for Item in self.Input:
Output += Item
Output += " "
return Output
Value1 = MyClass("Red", "Green")
Value2 = MyClass("Blue", "Purple")
Value3 = Value1 + Value2
print("{0} + {1} = {2}".format(Value1, Value2, Value3))
Give the output of the following code snippet in the python shell window:
>>> var = 100
>>> if (1000 // 10) == var :
print(var // 10)
Which of the following statements are true about XML?
Give the output of the following code snippet : The contents of the file is a string 'Hello World'
file = open("Test.txt","a")
file.write("Program")
file.close()
file = open("Test.txt","r")
string = file.read()
print (string)
Give the output of the following code snippet : The contents of the file 'Test.txt' is a string 'Hello World' and 'Test2.txt' does not exist.
file = open("Test.txt","r")
file2 = open("Test2.txt","w+")
file.seek(5,0)
string = file.read()
file2.write(string)
string = file2.tell()
file.close()
file2.close()
print (string)
Which of the following is an interface for Windows that makes it possible to create
better console applications?
Give the output of the following code snippet in the python shell window:
>>> var = ~2
>>> var
Give the output of the following code snippet :
>>> myComp1 = 3 + 5j
>>> myComp2 = 4 + j
>>> myComp3 = myComp1 + myComp2
>>> type(myComp3)
Which product serves to interact with both the RDBMS and the SQL?
Give the output of the following code snippet:
class MyClass:
def PrintList2(*args):
for count,Item in enumerate(args):
if(count != 0):
print((Item[0]))
else :
print(Item[1]+Item[1])
MyClass.PrintList2("Red")
MyClass.PrintList2("Green", "Yellow")
Give the output of the following code snippet in the python shell window:
>>> def TestFun(Arg = 10):
return(Arg+1,Arg+2)
>>> TestFun( 1 != 0)
Give the output of the following code snippet:
var = 1
for Arg = 0
var += 1
print(var)
What is IDLE?
Give the output of the following code snippet:
#!/usr/bin/python
DList = {"B": 10, "B": 20,"C1" : 30}
DList2 = {"A": 5,"B" : 40}
DList3 = {"C": 50, "C": 60}
Dlist.update({"C1" : 50})
print(DList["B"]+ DList["C1"])
Give the output of the following code snippet : Assume the input given in 40.
try :
value = int(input("Enter value from 1 to 50:"))
except (ValueError, KeyboardInterrupt):
print("Invalid")
else :
if(value > 0 ) and (value <= 50):
print(value)
else :
print(0)
Give the output of the following code snippet:
var = 0
for Arg in range(1,5):
var += 5
else:
var //= 2
print(var)
Give the output of the following code snippet:
class MyClass:
def __init__(self,Name = "",Age=0):
self.Name = Name
self.Age = Age
def GetAge(self):
return self.Age
def SetAge(self,Age):
self.Age = Age
def __str__(self):
return "{0} is aged {1}.".format(self.Name,self.Age)
class Anna(MyClass):
def __init__(self, Age=0):
self.Name = "Anna"
self.Age = Age
self.Id = 1001
def SetName(self,Name):
print("Name cannot be changed")
def GetID(self):
return self.Id
JohnRecord = Anna()
JohnRecord.SetName("John")
Give the output of the following code snippet:
var = 0
string = "Hello World"
for Arg in string:
if(Arg == 'o' or Arg != 'l'):
var += 2
else :
var -=1
print(var)
Give the output of the following code snippet : The contents of the file 'Test.txt' is a string 'Red Blue' , 'Test2.txt' contains the string ' Green Yellow' and 'Test3.txt' contains the string ' Black White'.
file = open("Test2.txt","a+")
file2 = open("Test3.txt","a+")
string = file.read()
file2.write(string)
file2.seek(5,0)
string1 = file2.read()
file.close()
file2.close()
print (string1)
Give the output of the following code snippet:
var = 1
while (var == 10):
var += 2
elif : ( var < 10)
pass
var -= 2
print(var)
Based on how they are made, most programming language breaks the types of errors that occur into which of the following types?
Which option in the File menu is used to close the current window and its associated windows?
Give the output of the following code snippet : The contents of the file 'Test.txt' is a string 'Red Blue' , 'Test2.txt' contains the string ' Green Yellow' and 'Test3.txt' contains the string ' Black White'.
file = open("Test.txt","r+")
file2 = open("Test2.txt","a+")
file3 = open("Test3.txt","w+")
string = file.read()
file3.seek(0,0)
file3.write(string)
string = file2.read()
file3.seek(0,1)
file3.write(string)
file3.seek(10,0)
val = file3.read(5)
file.close()
file2.close()
file3.close()
print (val)
Give the output of the following code snippet:
string = "Hello World"
Result = string.ljust(10,"*")
print(Result)
Give the output of the following code snippet : Assume the file is present and contains the text 'Hello World'.
import sys
try :
File = open('Test.txt')
except IOError as e:
print("Error opening file " + "Error number : {0} ".format(e.errno) +
"Error text :{0}".format(e.strerror))
else:
print("File opened")
File.close()
Give the importance of the command line option -u in python :
Give the output of the following code snippet :
print("Red " +
# "Yellow" +
"Blue")
Which method is used to change the current file position?
Give the output of the following code snippet : The contents of the file 'Test.txt' is a string 'Red Blue' and 'Test2.txt' contains the string ' Green Yellow'.
file = open("Test.txt","a+")
file2 = open("Test2.txt","r")
file.seek(5,0)
string = file.read()
file2.write(string)
string = file2.tell()
file.close()
file2.close()
print (string)
Which method of the os module can be used to create directories in the current directory?
Which of the following applications requires the use of the google maps?
Which of the following are built in Python exception categories that the user regularly works with?
Which of the following statements is true about the add-on celementtree?
Give the output of the following code snippet:
var = 1
while (var <= 10):
if( var != 2):
pass
var += 2
else:
break
var -= 1
print(var)
Give the output of the following code snippet in the python shell window:
>>> var = ~2 + (-4) - ~1
>>> var
Which of the following options is used to add a warning when the application runs certain python features?
Which of the following commands is used to exit python?
Give the output of the following code snippet :
""
print("Red " +
"Yellow" +
"Blue")
""
Which of the following commands is used to obtain the time in the python shell window?
Which of the following statements are true about lists in Python?
What is the act of storing each version of an application in a separate place so that changes can be undone or redone as needed?
Give the output of the following code snippet:
var = 1
while (var != (10%4))
var += 1
print(var)
Give the output of the following code snippet:
## LibTest.py
def SayHello():
print("Hello")
PrintAge()
return
def PrintAge():
Age = 10
print(Age + 10)
SayHello()
return
>>> from LibTest import PrintAge()
>>>PrintAge()
Which of the following statements is true about the utility squeeze in Python?
What are the two components of an email?
Give the output of the following code snippet:
List = ["Hello","World"]*2 + ["!"]*2
Result = 0
List2 = List.copy()
List2.append("!")
for value in List[2]:
Result += 1
if(value == 'H'):
Result -= 2
else :
Result += 2
print(len(List))
Which is the default file access mode?
Give the output of the following code snippet :
value = 10
if(value == (10//5)):
value //= 4
print(value)
else :
print (value+1)
Give the output of the following code snippet:
#!/usr/bin/python
MyTuple = ("Red","Blue")
MyTuple2 = ((1,2),3,("Pink","Brown"))
MyTuple = MyTuple.__add__(("Green",10))
MyTuple = MyTuple.__add__(("Yello",20.5))
print(MyTuple2[0]+MyTuple2[2])
Which of the following statements is true about the PyAudio library?
Give the output of the following code snippet:
string = "SourceLens"
Result = string.join("!#~")
print(Result)
Which of the following functions are true regarding the split() string function in Python?
While defining a custom exception class, which function can be used to create a new instance for the class?
Give the output of the following code snippet :
import socket
print(socket.getserverbyport(25))
Give the output of the following code snippet:
class MyClass:
def PrintList2(*args):
for count,Item in enumerate(args):
while(count >= 0):
print((Item[0]))
break
else :
print(Item[1]+Item[1])
MyClass.PrintList2("Red")
MyClass.PrintList2("Green", "Yellow")
Give the output of the following code snippet:
List = ["Hello","World"]*2 + ["World"]* 2
Result = 0
List.remove("Hello")
for value in List[3]:
Result += 2
if(value == 'o'):
Result -= 3
print(Result)
Give the output of the following code snippet:
List = ["Hello","World"]*2 + ["World"]* 2
Result = 0
List.remove("Hello")
for value in List:
Result += 1
print(len(List[0]))
Give the output of the following code snippet:
string = "1234 World"
Result = string.islower()
print(Result)
Give the output of the following code snippet in the python shell window:
>>> def TestFun(Arg):
return(Arg+1,Arg+2)
>>> TestFun()
Give the output of the following code snippet in the python shell window:
>>> if var == 0
print("Hello World")
Give the output of the following code snippet:
string = "This is a test program that is to test string functions"
Result = string.replace("test","new",1)
print(Result)
Which of the following commands are used to exit the python command prompt if the session is not ended properly?
Give the output of the following code snippet:
## LibTest.py
def SayHello():
print("Hello")
PrintAge(10)
return
def PrintAge(Age):
print(Age + 10)
return
>>> from LibTest import SayHello,SayAge
>>> SayHello()
Which of the following acts as a specific entryway for a server location?
Which of the following is a library that helps you interact with XML data more efficiently than standard Python allows?
Which of the following statements are true about function overloading?
Give the output of the following code snippet :
>>> myvar = 0o100
>>> myvar += 100
>>>myvar
Which of the following statements are true regarding Tuples in Python?
Give the output of the following code snippet in the python shell window:
>>> def Test(Arg = 6):
Arg **=2
Arg /=2
print(Arg)
>>> Test()
What are the features of the python debugger?
Give the output of the following code snippet :
>>> myvar = 0b100
>>> myvar == 4
Give the output of the following code snippet:
List = ["Hello","World"] *2+ ["World"]
Result = 0
List.insert(1,"Hello")
for value in List:
Result += 1
List.clear()
print(Result)
Give the output of the following code snippet in the python shell window:
>>> def TestFun(Arg):
return(Arg+1)
>>> TestFun(1)
Python has a built in data type to support complex numbers. State true or false.
Give the output of the following code snippet:
#!/usr/bin/python
DList = {"B": 10, "B": 20,"C1" : 30}
DList2 = {"A": 5,"B" : 40}
DList3 = {"C": 50, "C": 60}
DList.update({"C1" : "50"})
print(DList["B"]+ DList["C1"])
Give the output of the following code snippet :
print(socket.gethostbyname("localhost"))
Which of the following commands can be used to convert a string to a number?
Give the output of the following code snippet : The contents of the file 'Test.txt' is a string 'Red Blue' , 'Test2.txt' contains the string ' Green Yellow' and 'Test3.txt' contains the string ' Black White'.
file = open("Test2.txt","a+")
file2 = open("Test3.txt","a+")
string = file.read()
file2.write(string)
file2.seek(5,0)
string1 = file2.read()
string = file2.tell()
file.close()
file2.close()
print (string)
Give the output of the following code snippet:
var = 0
string = "Hello"
for Arg in string:
if(Arg == 'h'):
var +=2
elif (var == 1):
var -=1
break
print(var)
Give the output of the following code snippet:
var = 1
while (var != 10):
var += 1
break
else :
var += 2
print(var)
Which of the following statements is true about the Header part of the email?
Give the output of the following code snippet:
var = 0
for Arg in range(1,5):
var += 5
else:
continue
var //= 2
print(var)
Give the output of the following code snippet:
string = "Hello World"
print(string(0 - 3))
Give the output of the following code snippet:
class MyClass:
def __init__(self,Name = "",Age=0):
self.Name = Name
self.Age = Age
def GetName(self):
return self.Name
def SetName(self, Name):
self.Name = Name
def GetAge(self):
return self.Age
def SetAge(self,Age):
if(Age > 30):
self.Age = Age + self.Age
else:
self.Age = 20
def __str__(self):
return "{0} is aged {1}.".format(self.Name,self.Age)
class Anna(MyClass):
def __init__(self,Name = "X", Age=0):
self.Name = Name
self.Age = Age
self.Id = 1001
def GetID(self):
return self.Id
JohnRecord = MyClass()
AnnaRecord = Anna("Anna",35)
print(AnnaRecord)
Give the output of the following code snippet : Assume the input given in 40.
try :
value = int(input("Enter value from 1 to 50:"))
exception:
print("Invalid")
else :
if(value > 0 ) and (value <= 50):
print(value)
else :
print(0)
Give the output of the following code snippet :
>>> myvar = 0o100
>>> myvar == 64
Which of the following clauses provides an alternate processing technique when conditions are not met in the loop?
Give the output of the following code snippet : The contents of the file 'Test.txt' is a string 'Red Blue' , 'Test2.txt' contains the string ' Green Yellow' and 'Test3.txt' contains the string ' Black White'.
file = open("Test.txt","r+")
file3 = open("Test2.txt","w+")
string = file.read()
file3.write(string)
file3.seek(0,0)
string1 = file3.read(5)
file.close()
file3.close()
print (string1)
Which of the following statements are true about the class variables?
Give the output of the following code snippet:
class MyClass:
age = 10
def __init__(self,age = 10.5):
self.age = age + 20
def PrintAge(self):
print(self.age)
MyClass.age = 20
print(MyClass.age)
Consider the following snippet. Identify any errors that may have occurred in it.
print(This is an example code)
Give the output of the following code snippet:
List = ["Hello","World"] + ["World"]
Result = 0
List.pop(1)
for value in List[1]:
Result += 2
if(value == 'o'):
Result -= 2
else :
Result += 2
print(Result)
Give the output of the following code snippet:
List = {1,2,'Three',4.5}
print(List[0])
Give the output of the following code snippet : The contents of the file is a string 'Hello World'
file = open("Test.txt","w+")
file.write("Program")
file.seek(1,0)
string = file.read()
file.close()
print (string)
What does the color Blue in the Python IDLE indicate?
To uncomment multiple lines of code at one, highlight those lines and select :
Which of the following commands is used to exit python?
Give the output of the following code snippet:
string = "Hello World"
Result = max(string)
print(Result)
Give the output of the following code snippet:
class MyClass:
def __init__(self, *args):
self.Input = args
def __add__(self, Other):
Output = MyClass()
Output.Input = self.Input + self.Input
return Output
def __str__(self):
Output = ""
for Item in self.Input:
Output += Item
return Output
Value1 = MyClass("Red", "Green")
Value2 = MyClass("Blue", "Purple")
Value3 = MyClass("Black", "White")
Value = Value1 + Value2 + Value3
print("{0} + {1} = {2}".format(Value1, Value2, Value))
Which of the following commands is used to obtain the host address for a hostname?
Give the output of the following code snippet : The contents of the file 'Test.txt' is a string 'Red Blue' , 'Test2.txt' contains the string ' Green Yellow' and 'Test3.txt' contains the string ' Black White'.
file = open("Test2.txt","r+")
file2 = open("Test.txt","w")
string = file.read()
file2.write(string)
file2.seek(10,0)
string1 = file2.read(1)
file.close()
file2.close()
print (string1)
Give the output of the following code snippet:
var = 0
string = "Hello World"
for Arg in string:
if(Arg == 'o'):
var += 2
else :
var -=1
print(var)
Give the output of the following code snippet:
var = 1
for Arg in range(1,10):
var += 2
else:
var **= 2
print(Arg)
Give the output of the following code snippet:
class MyClass:
def __init__(self, *args):
self.Input = args[0]
def __add__(self, Other):
Output = MyClass(self)
Output.Input = self.Input + Other.Input
return Output
def __str__(self):
Output = ""
for Item in self.Input:
Output += Item
break
return Output
Value1 = MyClass("Red", "Green")
Value2 = MyClass("Blue", "Purple")
Value3 = Value1 + Value2
print("{0} + {1} = {2}".format(Value1, Value2, Value3))
Give the output of the following code snippet :
>>> myvar = 0x10
>>> bin(myvar)
Give the output of the command given in the shell window if the file Test.py contains the following line of code :
print("Hello World")
>>> execute(open ("c:\\Test.py").read())
Which of the following statements is true regarding the import statement?
Give the output of the following code snippet : Assume the inputs given for value1 = 'Hello' and value2 = 'World'.
try :
value1 = (input("Enter first value:"))
value2 = (input("Enter second value:"))
Result = value1 + value2
except (ValueError):
print("Enter whole number")
except (KeyboardInterrupt):
print("Interrupt detected")
except (ArithmeticError):
print("Undefined Math error")
else :
print(Result)
What is the use of the PYTHONPATH environment variable in python?
Which of the following membership operators is used to check if the value of the left operand is missing in the sequence found in the right operand?
Give the output of the following code snippet:
class MyClass:
def __init__(self, *args):
self.Input = args[0]
def __add__(self, Other):
Output = MyClass(self)
Output.Input = self.Input + Other.Input
return Output
def __str__(self):
Output = ""
for Item in self.Input:
Output += Item
return Output
Value1 = MyClass("Red", "Green")
Value2 = MyClass("Blue", "Purple")
Value3 = Value1 + Value2
print("{0} + {1} = {2}".format(Value1, Value2, Value3))
Which of the following statements is true regarding compile time errors?
Give the output of the following code snippet:
string = "Hello\nWorld Program\n"
Result = string.splitlines()
print(Result)
When commenting out a single line of code using Format -> CommentOut Region, which of the following is used?
Give the output of the following code snippet:
var = 0
string = "Hello World"
for Arg in string:
if(Arg == ''):
var +=2
if( Arg == ''):
var -= 5
else :
var += 5
print(var)
Give the output of the following code snippet:
## LibTest.py
def SayHello():
print("Hello")
PrintAge(10)
return
def PrintAge(Age):
print(Age + 10)
return
>>> import LibTest
>>> PrintAge()
Give the output of the following code snippet : The contents of the file 'Test.txt' is a string 'Red Blue' and 'Test2.txt' contains the string ' Green Yellow'.
file = open("Test.txt","r")
file2 = open("Test2.txt","r+")
file.seek(5,0)
string = file.read()
file2.write(string)
string = file2.tell()
file.close()
file2.close()
print (string)
Which of the following are some of the forms of MIME which are used when creating a message for an email?
The IOError exception provides access to which of the following arguments?
Which is an add-on to the elementtree library that helps you create nicer-looking and more functional XML tree displays?
Give the output of the following code snippet : Assume the input given in 5.
try :
value = int(input("Enter number from 1 to 10:"))
except ValueError :
print("Invalid number")
else:
if(value > 0 ) and (value <= 10):
print(value)
else :
print("Invalid value")
To view the data type of a variable, which function is used in the python shell window?
Give the output of the following code snippet:
List = [1,2,4,5.5,7,8.25]
Result = 0
List.remove(5.5)
for value in List:
Result += value
List.append(3)
break
print(Result)
Give the output of the following code snippet :
>>> myComplex = 3 + 2j
>>> yComplex.real + myComplex.imag
Give the output of the following code snippet:
## LibTest.py
def SayHello(Name):
print("Hello",Name)
return
def SayAge(Age):
print("Age : ", Age + 10)
return
>>> from LibTest import SayAge
>>> LibTest.SayHello("Anne")
Give the output of the following code snippet:
var = 0
string = "Hello"
for Arg in string:
if(Arg == 1)
var += 1
print(var)
Give the output of the following code snippet:
## LibTest.py
def SayHello(Name):
print("Hello",Name)
return
>>> import LibTest
>>> Hello = 100
>>> LibTest.SayHello(Hello)
Give the output of the following code snippet:
List = ["Hello","World"]*2 + ["!"]*2
Result = 0
for value in List:
Result += 1
if(value == '!'):
Result -= 2
else :
Result += 2
List2 = copy(List) + ["Program"]
print(len(List2))
Give the output of the following code snippet:
var = 0
string = "Hello"
for Arg in string:
if(Arg == 'o'):
var +=2
else :
pass
var -=1
print(var)
Give the output of the following code snippet:
## LibTest.py
def SayHello(Name):
print("Hello",Name)
return
def SayAge(Age):
print("Age : ", Age + 10)
return
>>> from LibTest import SayHello
>>> SayAge(10)
Give the output of the following code snippet:
string = "Hello World"
Result = string.index("w")
print(Result)
Give the output of the following code snippet : Assume the input given in 100.
try :
value =(input("Enter a string : "))
except:
print("Invalid")
else :
if(value == "Hello"):
print(value)
else :
print(0)
Which testing stage is associated with checking the application for errors?
Which of the following clauses ends the processing of the current element after completing the statements in the if block?
Give the output of the following code snippet in the python shell window:
>>> def Fun(Arg = "No value"):
print(Arg)
>>> Fun(Hello World)
Which of the following commands can be used to execute an application from python shell window?
Give the output of the following code snippet : The contents of the file is a string 'Hello World'
file = open("Test.txt","w+")
file.write("Program")
string = file.read()
print (string)
Which is a widget-building library for Python that includes a number of sub products?
Give the importance of the -c cmd command line option :
Which python module provides methods that help you perform file-processing operations?
Give the output of the following code snippet:
string = "12345678"
Result = string.isnumeric()
print(Result)
Which is the single argument accepted by all instance methods?
Give the output of the following code snippet : Assume the input given in 5.
try :
value = int(input("Enter value:"))
except ValueError:
print("Invalid")
else :
if(value %2 == 0 ):
print(value)
Give the output of the following code snippet in the python shell window:
>>> def Test()
print("Hello")
>>>Test()
Give the output of the following code snippet:
var = 0
string = "Hello World"
for Arg in string:
if(Arg == ''):
var +=2
if( Arg == ''):
var -= 5
break
else :
var += 5
print(var)
Give the output of the following code snippet :
>>> myvar = 10
>>> myvar += 0x10
>>> myvar += 0o10
>>> myvar
Give the output of the following code snippet :
>>> myvar = 0o16
>>> hex(myvar)
Give the output of the following code snippet:
class MyTest:
var = 0
def SayHello(self):
print("Hello")
NewInst = MyTest()
NewInst.SayHello()
Based on how they are made, most programming language breaks the types of errors that occur into which of the following types?
What are the components of an email address?
Give the output of the following code snippet:
var = 1
while (var != (10%4)):
var += 1
else :
var += 2
print(var)
Which is the following is the correct way to run a python program using command line?