

InterviewSolution
Saved Bookmarks
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.
201. |
What is fuc* ? |
Answer» | |
202. |
Program on switch case |
Answer» | |
203. |
Programm ki hai? |
Answer» | |
204. |
Which are include in first examination |
Answer» | |
205. |
In next session 2019_20 c++ is replace with python it is compulsory for all the schools |
Answer» In many schools, this thing is done from this year onwards | |
206. |
Who is devloper of python |
Answer» The developer of python was Guido van Rossum | |
207. |
What is a software |
Answer» Applications of a computer that we cannot touch are known as softwares<br>Physical components of computer | |
208. |
Full form ram |
Answer» Random access memory<br>Random Access Memory<br>Random access memory | |
209. |
Full gorm of ram |
Answer» Random access memory | |
210. |
What is full form cpu |
Answer» Center processing unit<br>Central processing unit | |
211. |
Explain the comment. |
Answer» | |
212. |
What is accuracy |
Answer» Accuracy: It can be described as degree of closeness of a system to measure a given quantity to that of the quantity\'s actual value.Also, a system can be precise without being accurate and can be accurate without being precise, or it can be both. | |
213. |
Accuracy |
Answer» | |
214. |
Whar id difference between firmware and live ware |
Answer» Firmware: Firmware is software that runs on very small processors that makes a hardware device function correctly. Firmware is rarely or never replaced, and you generally interact with it through hardware controls (buttons, lights, switches) instead of computer controls (mouse, keyboard, screen). Firmware often is used to produce small useful behaviors for a much bigger piece of hardware - for example, your WiFi radio has firmware that allows it to provide radio signal information in a format that is useful for your computer’s main processor.Wristwatches, calculators, computer mouses and car key fobs all have firmware.Liveware:\xa0Liveware describes the people who make a computer system work behind the scenes, usually to perform a small complex task that a computer can’t do. You often won’t notice. For example, Google’s voice recognition engine is\xa0mostly\xa0automated, but there are hundreds of people who see sentences that the software didn’t understand to help the system understand the sentence better. | |
215. |
Mobile system organisation |
Answer» It is in Pyhton book on page no. 342 | |
216. |
Here i m in class 11 and study c++ is the syllabus change n python is imposes for new syllabus?? |
Answer» Thank you sooo much ☺<br>Yes the new syllabus is of Python and in 12th board exam we have to give the examination from Pyhton syllabus.The letter from CBSE has reached to fewer schools only. So kindly inform your School administration that the syllabus has been changed.Otherwise you\'ll have to cover up Pyhthon\'s class 11th & 12th course in class 12th ......... | |
217. |
Write a program to find the square of a number |
Answer» #mainprograms=input(int("Enter a Number: "))s**2print("Square of the given number is" , s )You can put float in the place of "int" depending on the number you want to obtain.And in place of "s" you can take any variable or word to store the data given by the user.For ex - you cn write "integer", "p", etc | |
218. |
What is operators? |
Answer» Operators are the symbols that perform arithmetical,logical and other types of operations on the operants to get the result of an expression | |
219. |
Can you provide computer science with c++ notes of class 11? |
Answer» | |
220. |
which two language contributed to python as a programming language |
Answer» First it is C++, and second I think C ya java | |
221. |
Programming for python |
Answer» | |
222. |
write a program in c++ to insert sound in it |
Answer» | |
223. |
What r variations in char type? How are the variations of char type different from one another? |
Answer» | |
224. |
Write a coding to check whether a year given is a leap year or not |
Answer» | |
225. |
How to solve bollen logic algebraic expressions as fast as possible? |
Answer» | |
226. |
What do you mean by RISC & CISC? |
Answer» | |
227. |
My sql practice questions |
Answer» | |
228. |
What is programing |
Answer» .........., | |
229. |
Is this year computer science book for class 11 is change |
Answer» Yes | |
230. |
Tally means what |
Answer» | |
231. |
Briefly explain the basic architecture of a computer |
Answer» Which school do you read<br>Basic architecture of computer is (input, proccesing, proccesing is connected to memory and processing or CPU is connected to output device | |
232. |
Any one studying computer science |
Answer» Yes I am<br>I am a computer science teacher. If I can be of any help to you. | |
233. |
Python me getch() ke jaisa konsa command hota he |
Answer» | |
234. |
How can i get Computer science book ncert to study ? |
Answer» If u have python in ur syllabus, then can go for the book called sumita Arora | |
235. |
How does Hollerith\'s machine worked |
Answer» | |
236. |
4444333221 Write a python programme for this pattern. |
Answer» #PythonProgramme<br>We write in python [ ∆∆¥€¢£π{°•°}^~✓✓✓©®]™The answer is in the form of4444 333 22 of the pattern[This is ?% working]*(* = #Terms and conditions apply)<br>For i in range(4,0,-1): For j in range(1,I+1): Print(i,end=" ") Print()<br>For i in range(1,5): For j in range(i,1,-1):Print()Print(i,end=" ") | |
237. |
Example in module |
Answer» | |
238. |
Write a program which reads a number from the keyboard and check whether it is less than 1000. |
Answer» a=int(input("enter a number"))if a<1000: print("the given number is less than 1000")else : print("the given number is equal to or greater than 1000") | |
239. |
Notes for all lesson |
Answer» | |
240. |
Write a program to get values in list and print all the values on even location in list. |
Answer» | |
241. |
What do mean by datatype |
Answer» Data type of an object refers to the value it has given and the allowable operations on those values. | |
242. |
Write a short note on cyber crimes |
Answer» Cybercrime is any criminal offence that is facilitated by, or involves the use of, electronic communications or information systems, including any electronic device, computer, or the internet. The term, cybercrime, is a general term that covers crimes like phishing, credit card frauds, illegal downloading, industrial espionage, child pornography, cyber bullying, cyber stalking, cyber terroism, creation and/or distribution of viruses, spam and so on. | |
243. |
Find the greatest number by using Loop, pls tell fast ? |
Answer» def maximum(l): myMax = l[0] for num in l: if myMax < num: myMax = num return myMax list=[]Number = int(input("Please enter the Total Number of List Elements : "))for i in range(1, Number + 1): value = float(input("Please enter the %d Element : " %i )) list.append(value)print ("maximum element is:", maximum (list))<br>def maximum(l): myMax = l[0] for num in l: if myMax < num: myMax = num return myMax list=[]Number = int(input("Please enter the Total Number of List Elements : "))for i in range(1, Number + 1): value = float(input("Please enter the %d Element : " %i )) list.append(value)print ("maximum element is:", maximum (list)) | |
244. |
Find the greatest number by using loop |
Answer» | |
245. |
What is mean by built-in? |
Answer» forming an integral part of a structure or object a camera with a built-in flash especially : constructed as or in a recess in a wall a built-in bookshelf. b : built into the ground a built-in swimming pool. | |
246. |
Find whether the given number is odd or even |
Answer» a=int(input"enter the number")If a%2==0: Print ("a,is even")Else: Print("a,is odd")<br>a=int(input"enter the number")If a%2==0: Print ("a,is even")Else: Print("a,is odd") | |
247. |
What is the difference between interactive mode and Script mode in python |
Answer» Script mode: It recovers intrepretor to execute the code.it gives slow response, difficult for learners.Interactive mode:It didn\'t recovers any intrepretor to execute the code. it gives quick response, easy for learners. | |
248. |
What will be the output of the following? bool(str (0.0)) |
Answer» True | |
249. |
What is the difference between computer and laptop |
Answer» Computer-computer is a set of distinct machines like monitor,keyboard, cpu, Mouse,etc that comes together to form it.It cannot be moved easily from one place to another. WHEREAS-Laptop-laptop is a device whose functions are like computer but is easily movable, less expensive, good to use in office, school, shops ,etc. | |
250. |
Write a program to find mode of the list in Python? |
Answer» print("calculating mode of N number") || n=int(input("how many no. are there")) || nums=[ ] for i in range(n) : || a=int(input(" Enter no. ")) || nums.append(a) || difnums={ } || for x in nums: || if x not in difnums: || difnums[x]=1 || else: || difnums[x] +=1 | print(" No. With their frequency are") || maxfreq=0 || mode=0 for d in difnums. || keys( ) : || print(d, "comes", difnums[d], " times") || if difnums[d] > maxfreq: || maxfreq=difnums[d] || mode =d print("mode is", mode) || (|| means next line)<br>print("calculating mode of N number") n=int(input("how many no. are there")) nums=[ ]for i in range(n) : a=int(input(" Enter no. ")) nums.append(a) difnums={ }for x in nums: if x not in difnums: difnums[x]=1 else: difnums[x] +=1print(" No. With their frequency are") maxfreq=0mode=0for d in difnums. keys( ) : print(d, "comes", difnums[d], " times") if difnums[d] > maxfreq: maxfreq=difnums[d] mode =dprint("mode is", mode) | |