If process is running currently executing, it is in running
Database system compiles query when it is
In PAL system weighting of R - Y and B - Y signals is done to
The magnitude of the induced e.m.f. in a conductor depends on the
What is the output of the code shown below?A = [[1, 2, 3], [4, 5, 6], [7, 8, 9]][A[i][len(A)-1-i] for i in range(len(A))]
What will be the output?values = [[3, 4, 5, 1], [33, 6, 1, 2]] v = values[0][0]for lst in values: for element in lst: if v > element: v = element print(v)
What is the output of the following?print([i.lower() for i in "HELLO"])
Which of the following operations cannot be performed on a lathe
What is the output of the code shown below?'The {} side {1} {2}'.format('bright', 'of', 'life')
What will be the output?names1 = ['Amir', 'Bala', 'Charlie']names2 = [name.lower() for name in names1] print(names2[2][0])
The interface ResultSet has a method, getMetaData(), that returns a/an
What is the output of the following piece of code?class A(): def disp(self): print("A disp()")class B(A): passobj = B()obj.disp()
What will be the output
d = {"john":40, "peter":45}["john"]
What is the output of the following?print("Hello {1} and {0}".format('bin', 'foo'))