Showing posts with the label Python Fundamentals

True / False For Python Fundamentals Class 11 CS, IP

True / False For Python Fundamentals Class 11 Computer Science (CS), Informatic…

Fill In the Blanks For Python Fundamentals Class 11 CS, IP

Fill In the Blanks For Python Fundamentals Class 11 Computer Science (CS), Info…

MCQ For Python Fundamentals Class 11 CS, IP

Multiple Choice Question For Python Fundamentals Class 11 Computer Science (CS)…

Write Python command to display your school name, class, and section, separated by -.

Q. Write Python command to display your school name, class, and section, separa…

Write Python command/instruction/statement to display your name.

Q. Write Python command/instruction/statement to display your name. Answer :- …

Find the output. a, b, c = 10, 20, 30 p, q, r = c - 5, a + 3, b - 4 print (a and b, :, p, q, r)

Q. Find the output. a, b, c = 10, 20, 30 p, q, r = c - 5, a + 3, b - 4 print (&…

What is the error in the following code? z, p = 6

Q. What is the error in the following code? z, p = 6 Answer :- There are two va…

What would the following code do? a = b = 70

Q. What would the following code do? a = b = 70 Answer :- Value of a and b is 7…

Write Python expressions to represent the following situations: (a) Add remainder of 8/3 to the product of 8 and 3.

Q. Write Python expressions to represent the following situations: (a) Add rema…

Write Python expressions equivalent to the following arithmetic/algebraic expressions: (a) a+b/ 2 (b) 32 +

Q. Write Python expressions equivalent to the following arithmetic/algebraic ex…

Find the output of the following code: (a) x = 3 y = x + 2 x += y print (x, y)

Q. Find the output of the following code: (a) x = 3 y = x + 2 x += y print (x, …

Identify invalid variable names from the following, giving reason for each: Group, if, int

Q. Identify invalid variable names from the following, giving reason for each: …

Evaluate the above expressions by using IDLE as a calculator and verify the results that you get manually.

Q. Evaluate the above expressions by using IDLE as a calculator and verify the …

Evaluate the following expressions manually: (i) (2+3) **3-6/2 (ii) (2 + 3)* 5 // 4 + (4 + 6) / 2

Q. Evaluate the following expressions manually: (i) (2+3) **3-6/2 (ii) (2 + 3)*…

print its 5 multiples x, 2x, 3x, 4x, and 5x

Following code intends to obtain a number in variable x and then print its 5 mu…

Why is the output of output statement 1 different from output statement 2 when we have added 1 to variable Number?

Q. Click File --> New File... and type the following code into it: myNumber…

Name what all components do you see in code, Number of Comments in the code

Q. In Spyder IDE, click --> File New File... and type the following code int…

Do write the reason behind the result returned by Python

Q. In front of the Python prompt In [ ]: in Python console, type the following …

Write a program that accepts cost of goods sold (cgos) revenue generated

Q. Write a program that accepts cost of goods sold (cgos) revenue generated, op…

Write a program to input a company's total assets and total equity

Q. Write a program to input a company's total assets and total equity and p…

Load More That is All