What is the value of triples after the following assignment? triples = [ (x,y,z) for x in range(2,4) for y in range(2,5) for z in range(5,7) if 2*x*y > 3*z ]
SIKSHAPATH Latest Questions
Consider the following Python function. def mystery(l,v): if len(l) == 0: return (v) else: return (mystery(l[:-1],l[-1]+v)) What does mystery([22,14,19,65,82,55],1) return?
What does Azure App Service plans define? a. Region b. Scale count c. Instance size d. All of the above
In the C program ‘&’ is used in ‘scanf’ to indicate or, What is & indicate in scanf? a. AND operation b. Memory location c. Value of the variable d. Value at the memory location.
What is the purpose of the Hypervisor software? a. It is a secure software layer that is difficult to hack. b. It opens a terminal window through which commands can be given directly. c. It can create and run ...
What is the value of variable count at the end of execution? int count=0; for (int i=1; i<=5; i++) { for (int j=1; j<=5; j+=i) { for (int k=1; k<=5; k+=j) { count++; } } }