40 solutions available
Question 1Name the device used to convert images, printed text or an object into digital image.
Question 2Give any two features of Python.
Question 3If the value of a = 10 and b = 15, then a *= b will assign ............... to the variable a.25150100225
Question 4Define Sequence data type in Python? Give two examples.
Question 5The software which is freely available for use but source code may not be available comes under —Open-SourceFirmware SoftwareFreeware...
Question 6Which of the following is a valid variable name?1namena*menamename one
Question 7Anu wants to change the width of a column Author in a Table Library from Varchar(20) to Varchar(30). Which command should she use?
Question 8The superimposition of computer-generated perceptual information over the existing physical surrounding is called ............... .
Question 9Seema is collecting data for her science project from science blogs, e-newspapers and various websites this process is known as...
Question 10What will be the correct output of the following code:a, b = '30', '5' c = a+b print(c)19305ValueErrorTypeError
Question 11If you add a new column in a table using the Alter Table command, which value is inserted in the new column for the existing rows?
Question 12If a < b and a < c thena is the greatest numbera is the smallest numberb is the greatest numberc is the greatest number
Question 13Mismatched redundant copies of data is known as Data ............... .DependenceRedundancyInconsistencyIsolation
Question 14............... is a subfield of linguistics, Computer Science and Artificial Intelligence concerned with the interaction between computer...
Question 15Convert 1 GB to 1 Kilobytes.
Question 16Shikha has written the following SQL statement:Select Name, Dept, Salary*12 as "Annual Salary" from EMP;What is "Annual Salary" in the...
Question 17Consider the following dictionaryBook = {1 : "Informatics Practices", 2 : "Computer Science ", 3 : "Information...
Question 18For a given listL = [1, 2, 3, 4, 5, 6]the index of element 4 will be:Assertion (A): The index of element 4 will be 3 or -3.Reasoning (R):...
Question 19Evaluate the following expression:(i) 12/3+4**2-6/3(ii) not True or False and True
Question 20What will be the output of the following code?for k in range(-10, 0, 2): print(k)
Question 21Differentiate between cloud computing and grid computing?
Question 22Write a Python program to calculate and display the square and cube of an inputted number.Solutionnum = int(input("Enter a number")) s =...
Question 23What will be the output of the following code?Country=["India", "Australia", "USA", "China", "Russia", "Ukraine" ] print(Country[2:5])...
Question 24Define Relation between IOT and WOT?
Question 25Create a list containing 10 marks the scored by the students—(i) Write a command to insert the marks of the student at index position...
Question 26(i)What is MySQL?
Question 26(ii)Match the followings:Column 1Column 2(a) Alternate Key(A) Number of tuples in a relation(b) Relation(B) Used to specify rules for the...
Question 27(i)Five friends plan to start a new business. However, they have a limited budget and limited computer infrastructure. Which benefits of...
Question 27(ii)What is a server?
Question 28Write the output for the following print statements in Python.Sub_Teacher = {"English":"Mr. Gill", "Maths": "Mr. R.N. Pandey", "IP":"Ms....
Question 29Rohit, a Librarian has created a Table Book with the following fields:Bookid, Bookname, Author and Price. He has entered 20 records in the...
Question 30The data type list is an ordered sequence which is mutable and made up of one or more elements. Unlike a string which consists of only...
Question 31(a)Write a program in Python to input elements in an empty list. Also delete an element from the list which a user will input.Solutionm =...
Question 31(b)Consider the following list.emp=["Aditya", 40000, "Deepak",50000, "Yashmit", 60000, "Bhavya", 80000] (i) To Insert the value "Ramit" at...
Question 32An organization wants to create a table EMPLOYEE, DEPENDENT to maintain the following details about its employees and their...
Question 33(i)Find out the errors in the following code snippet and rewrite the code by underlining the corrections made.30=y for i in range (2, 6)...
Question 33(ii)Consider the following dictionary and write the answers of the following:DAYS={"day1": "Sunday", "day2": "Monday", "day3":"Tuesday",...
Question 33(iii)Write a program to accept a number from the user and check whether it is a prime number or not.Solutionn = int(input("Enter a number:...
Question 34Consider the following table BANK. Write commands of SQL for (i) to (v):Table:...
Question 35Mr. Malhotra is working on a MySQL table named Stud with the following table...