Explore topic-wise InterviewSolutions in Class 11.

This section includes InterviewSolutions, each offering curated multiple-choice questions to sharpen your Class 11 knowledge and support exam preparation. Choose a topic below to get started.

1201.

Draw a flowchart to obtain age of a person and check weather that person is eligible to vote or note

Answer» Step :1 start Step : 2 take age from user Step :3 check if age greater than 18 then print "eligible for vote "and go to step 4 otherwise print "not eligible for vote " .Step :4 end .<br>Step : 1 start
1202.

Which book is best Sumita Arora or Together With ???

Answer» Sumita arora ie best ?<br>Sir, Add curent python language<br>Sumita arora is best<br>Sumita arora<br>Sumita arora is best
1203.

a) Name at least four early calculating devices?

Answer»
1204.

What is difference between python command line and IDLE?

Answer» They are both the same thing but, IDLE is made to write python code so its better if you can to write on IDLE. You can also try Notepad++ its a pretty good program to write code on.
1205.

Design a logic circuit to realize the boolean function

Answer»
1206.

Compare data and information

Answer» Data are simply facts or figures — bits of information, but not information itself. When data are processed, interpreted, organized, structured or presented so as to make them meaningful or useful, they are called information. Information provides context for data.
1207.

Functions of operating system

Answer» \tBooting.\tMemory Management.\tLoading and Execution.\tData Security.\tDisk Management.\tProcess Management.\tDevice Controlling.\tPrinting Controlling.
1208.

Write a program to input three no and print the smallest among the three no?

Answer»
1209.

Parallel computing

Answer»
1210.

What is GPU how is it useful

Answer»
1211.

What is the role of power management unit in a mobile system

Answer»
1212.

25 to binary change it

Answer» (11001)-- binary form of 25
1213.

write a python program that accepts marks in 5 subjects and outputs average marks

Answer»
1214.

What are the basic postulates of boolean algebra

Answer» I don\'t know<br>I don\'t know<br>I dont know
1215.

Discuss about the functions of CPU

Answer» The CPU processes instructions it receives in the process of decoding data. In processing this data, the CPU performs four basic steps:\tFetch\tDecode\tExecute\tStore
1216.

what do you mean by A.P.U and G.P.U

Answer»
1217.

5 solved problems

Answer» Of what.....?
1218.

what is numerical python

Answer» Numeric python you can say NumPy which mean its help to solve the numeric values in python
1219.

In the boolean algebra verify using truth table that (x+y)\' = X\'Y\'

Answer»
1220.

Briefly rcplain the basic architecture of a computer

Answer»
1221.

explain operating system.

Answer» Operating system is a type of system software<br>the low-level software that supports a computer\'s basic functions, such as scheduling tasks and controlling peripherals.
1222.

Guys who took math and comp group whats ur ambition/aim

Answer»
1223.

write a program to input a number and print it\'s factor (pyton)

Answer»
1224.

What is the error in following code X,Y=7?

Answer»
1225.

What is string

Answer»
1226.

What do you mean by adobe photoshop and loop

Answer» ▪︎ITERATION/ LOOPING Usually in our day to day life, we repeat a task. This kind of repetition is also called iteration. Repetition of a set of statements in a program is also made possible using looping constructs. Looping constructs provide the facility to execute a set of statements in a program repetitively, based on a condition. The statements in a loop are executed again and again as long as particular logical condition remains true. This condition is checked through a variable called control variable. When a condition becomes false, the loop terminates. It is the responsibility of the programmer to ensure that this condition eventually does not become false, i.e., there is an exit condition and the loop does not continue endlessly. Python programming language provides following types of loops to handle looping requirements.1. for loop2. while loop\'while\' loops are also call \'indefinite loop\' statements are executed until logical condition remains true. \'for\' loops are called \'definite loops\' because statements are executed for definite number of times. As I don\'t have much knowledge about Adobe photoshop I won\'t list it here.
1227.

Enter a no. From user until the user press "0" in python

Answer» What bro call me 7310093968
1228.

Differentiate between displaying and printing method in Python

Answer» Python is recommended due to its benefits, like easy language and readability. Python is employed over other styles because it is very easy to understand.The print function is applied to represent any kind of information like string or estimated value.print (\'\' Happy learning!\'\')The displaying function is a built-in feature of the Python language and utilized to understand a line of a text provided by the user.str = input (\'\'Hello Everyone\'\')print (\'\'Received input is:\'\',str)
1229.

Sql query for increase the price

Answer»
1230.

What do you understand by data model

Answer»
1231.

Write a python program to print largest among three numbers

Answer» Firstly write program and use max(\'name the string where you store the numbers)Likemax(a)<br>The best code is here::#source code is created by Abhijit Mandal.#coding starts!!!a=[ ]n=int(input("ENTER THE TOTAL NUMBER OF ELEMENTS HERE:- "))for i in range(1,n+1):\tb=int(input("ENTER THE ELEMENT HERE:- "))\ta.append(b)a.sort()print("THE LARGEST NUMBER IS:- ",a[-1])
1232.

How to print the pattern112123123412345

Answer» for i in range(1,7): for j in range(1,i,1): print(j,end = " ") print() It is the code for your Q...☺
1233.

How comments are specified in python give example

Answer» Single line comments are specified by ash tags (#) and they are automatically terminated by the end of the line.Comments that span multiple lines-used to explain things in more detail are specified by adding a delimiter (" \'\'\'\')
1234.

Session ending exam sample paper 2019

Answer»
1235.

what is for loop and while loop

Answer» The for loop do have all its declaration (initialization, condition, iteration) at the top of the body of the loop whereas in while loop only initialization and condition is at the top of the body of loop and iteration may be written anywhere in the body of the loop.
1236.

How to solve a number with 1s compliment

Answer»
1237.

What are data types ? How are they important?

Answer» A data type is a classification of the type of data that a variable or objectcan hold in computer programming. Data types are an important factor in virtually all computer programming languages, including C#, C++, JavaScript, and Visual Basic.
1238.

Write a program to check whether the given number in Armstrong\'s or not.

Answer»
1239.

What is system bus

Answer» It connect different parts of computer to one another
1240.

How is left join different from a natural join?Give example.

Answer»
1241.

Explain Demorgan theorem?

Answer» X\'+y\'=x\'y\'---1x\'y\'=x’+y\'---2\' means bar or not
1242.

Write a python program code ,input a string and count number of vowels?

Answer» string=input("Enter a string :")a=[]for i in string: if i=="a" or i=="e" or i=="i" or i=="o" or i=="u" or i=="A" or i=="E" or i=="I" or i=="O" or i=="U": a.append(i)print("There are",len(a),"vowels in",string)<br>n = str(input("Enter a string :")).lower()count =0for i in range(len(str)): if (n[i]=\'a\' or n[i]=\'e\' or n[i]==\'i\' or n[i]==\'o\' or n[i] == \'u\'): count+=1print(count)
1243.

Basic concepts of program

Answer»
1244.

An index out of bounds given with a list name causes error, but not with list slices. Why?

Answer» Bcoz there is no element having index greater than or equal to length of list..hence it gives an error while using such index values but in slicing it automatically slices the list upto the very last element even if index is out of range.
1245.

Does the slice operator always produce a new list?

Answer» too bad answer<br>where is the answer<br>Yes, slice operator produces list slices.
1246.

What do you understand by mutability? What does "in place" memory updation mean?

Answer» Mutability means to modify in place where \'in place\' means the modification is done at the original memory address and no other memory location is referred(as in the case of strings if we give new value to a existing variable, it refers to a new memory location)
1247.

Difference between mysql and SQL.

Answer» Both r same<br>My sql has my whereas sql doesnt have
1248.

Commerce means is there any subject like maths

Answer»
1249.

What is mean by coding

Answer»
1250.

Difference between bubble and insertion sort

Answer»