Showing posts with the label Data Handling

What is the difference between, a + 1 and a += 1 and a = a + 1?

Q. What is the difference between, a + 1 and a += 1 and a = a + 1? To find out,…

Practice the following expressions

Q. Practice the following expressions: a = ''(empty string) b = '&#…

Create two more variables r and s as r = 0 and s = 0.0

Q. Create two more variables r and s as r = 0 and s = 0.0 and practice the foll…

Logical Operators practice (Interactive mode)

Q. Logical Operators' practice (Interactive mode) x = 29.0, y = 13, z = 2, …

Identify Operators Practice (Interactive mode)

Q. Identify Operators Practice (Interactive mode) x = 29.0, y = 13, z = 2, p = …

Relational Operators practice: (Interactive mode)

Q. Relational Operators' practice: (Interactive mode) x = 29.0, y = 13, z =…

Arithmetic Operators practice: (Interactive mode)

Q. Arithmetic Operators' practice: (Interactive mode) x = 29.0 y = 13 z = 2…

Evaluate following expression on paper first. Then execute in Python shell. Compare your result with Pythons. State reasons; find out final output & its type.

Q. Evaluate the following expression (stepwise) on paper first. Then execute it…

Evaluate following expression on paper first. Then execute it in Python shell.

Q. Evaluate the following expression (stepwise) on paper first. Then execute it…

Type following statements and give output in space given below.

Q. Type the following statements and give the output in the space given below. …

For each of the following data value, find the type, id and value.

Q. For each of the following data value, find the type, id and value (the three…

In a Python Shell, (on Python prompt) assign following data to different variables namely

Q. In a Python Shell, (on the Python prompt) assign the following data to diffe…

Give at least two examples for each type of data. Check type of each of your example using type () function

Q. Using value 12, create data (that contains 12 in it) of following types. Giv…

True / False For Data Handling Class 11 CS, IP

True / False For Data Handling Class 11 Computer Science (CS), Informatics Prac…

Fill In the Blanks For Data Handling Class 11 CS, IP

Fill In the Blanks For Data Handling Class 11 Computer Science (CS), Informatic…

MCQ For Data Handling Class 11 CS, IP

Multiple Choice Question For Data Handling Class 11 Computer Science (CS), Info…

Write a program to calculate EMI as per formula: E=PR (1+ R)n / ((1+R)n - 1)

Q. Write a program to calculate EMI as per formula: E=PR (1+ R)n / ((1+R)n - 1)…

Write a program to calculate working capital for company A that has cash of about?

Q. Write a program to calculate working capital for company A that has cash of …

Write a program that takes sales for four quarters and then displays total sales and average sales made.

Q. Write a program that takes sales for four quarters and then displays total s…

Write a program to calculate net salary after inputting basic salary.

Q. Write a program to calculate net salary after inputting basic salary, hra%, …

Load More That is All