What is the output of the following Python code?
print(chr(ord(chr(100))))
What is the output of the following code?
print(0.1 + 0.2 == 0.3)
Which keyword is used to check if a particular phrase or character exists in a string?
What will be the output of the following Python code?
>>> -float('inf') + float('inf')
Which of the following can be used to create a symbolic link?
your_list = [5, 7, 3]
your_list.insert(2, 9)
your_list.pop()
print(your_list[::-1])
Which database cursor method is used to fetch all the remaining records in the form of a list of tuples?
Which Django admin command is used for creating new migrations based on the changes made in models?
Which of the following will throw an error if used after the following Python code?
tday=datetime.date.today()
bday=datetime.date(2017,9,18)
t_day=bday-tday
Find the output of the following code:
string1="Hello Welcome To Abekus"
string2=string1.capitalize()
print(string2)
print(string1)