

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.
301. |
The sequencial accessing of each of the elements in a string is called string ______________. |
Answer» | |
302. |
List |
Answer» | |
303. |
I want notes of chapter 8 lists in python |
Answer» Me also | |
304. |
A\'D+C\'D+AB\' |
Answer» | |
305. |
The NOR gate output will be high if the two inputs are |
Answer» If both the inputs are high | |
306. |
I=0While (I |
Answer» | |
307. |
Which gate produce output 1 when inputs are 1,0,1 |
Answer» Or gate<br>Not gate | |
308. |
Some basic python MCQs for term 1...And how we perform coding,which type of Mcqs are we faced... |
Answer» | |
309. |
Deleted portion |
Answer» Go through CBSE Link...It\'s very useful for uh.. | |
310. |
Input a string and determine whether it is a palindrome or not |
Answer» | |
311. |
Mam imp nhi h |
Answer» | |
312. |
Informative practices |
Answer» | |
313. |
Convert the following hexadecimal number (A6B8)16 into octal number system |
Answer» (123270)base8 | |
314. |
What role do play microphone in the computer system |
Answer» The function of a microphone in a computer is to pick up sound, just like a microphone used by a singer on stage, and convert the audio sound waves | |
315. |
What is the function of CPU in a computer system? What are its subunits? |
Answer» \tCPU is the mother board of the computer.\tIt\'s main function is memory storage, arithmetical and control.\tIt has mainly three parts CU MU ALU<br>CPU is the mother board of the computer.It\'s main function is memory storage, arithmetical and control.It has mainly three parts CU MU ALU | |
316. |
Computer science is easy or a tough.how many ch comes in term 1 |
Answer» | |
317. |
What is the programming of given output x -x²/2 + x³/3....x^n/n |
Answer» | |
318. |
Find a program to sum of a series s =1+x+(x×x)+(x×x×x)____(x)power n |
Answer» # python program to find the sum of series:\xa01 + x² + x³ + ... + xⁿn = int(input(\'Enter the value of n: \'))x = int(input(\'Enter the value of x: \'))sum_of_series = 0for i in range(n+1): sum_of_series += pow(x,i)print(\'Sum of the series is:\',\xa0sum_of_series) \tInput the value of x and n from user as integer type\tdefine a variable with value of zero to add up till the sum of series, this must be outside the loop, else each time the loop repeats value will set to zero defeating the purpose.\twe use for loop with range of i varying from 0 to n\xa0(remember this is not for infinite series) giving the power of x from 0 to n\tevey iteration we add x^i to the sum\tfinally print the\xa0sum of series<br>x = int(input("Enter a value of x"))y = int(input("Enter a value of y(for x**n)"))sum = 0for i in range(n+1): sum+ = x**iprint("The sum total of ",n,"Terms:-" sum) | |
319. |
Find sum of fubonacci series 0,1,1,2,3,5,8,15 ------ |
Answer» | |
320. |
Write a program to check if a given number is an Armstrong number or not |
Answer» num\xa0=\xa0int(input("Enter\xa0a\xa0number:\xa0")) sum\xa0=\xa00 temp\xa0=\xa0num while\xa0temp\xa0>\xa00: digit\xa0=\xa0temp\xa0%\xa010 sum\xa0+=\xa0digit\xa0**\xa03 temp\xa0//=\xa010 if\xa0num\xa0==\xa0sum: print(num,"is\xa0an\xa0Armstrong\xa0number") else: print(num,"is\xa0not\xa0an\xa0Armstrong\xa0number") | |
321. |
Write a program to check if a given number is a perfect number or not |
Answer» n = int(input("Enter any number: ")) sum1 = 0 for i in range(1, n): if(n % i == 0): sum1 = sum1 + i if (sum1 == n): print("The number is a Perfect number! ") else: print("The number is not a Perfect number! ") | |
322. |
What will be the output after the following statementsX=25Y=15X-=yPrint (x) |
Answer» 12<br>10<br>The output will be 10 as x-=y means that x=x-y which is x=25-15. So the answer is x=10. The print command will give this output ~ \'10\' | |
323. |
What are the fields where computers are used today |
Answer» Technology school college office jobs it | |
324. |
Deference between mutable and unmutable data |
Answer» It can be change it can not be change it is opposite to mutable<br>It can be changed ,it can not be change<br>Mutable data can be changed in space of word which we want to replace e.g list ,tuple etc and immutable is opposite to mutable data e.g string etc | |
325. |
Write a Program to find whether a number odd and even |
Answer» num=int(input("enter a number:"))if (num%2==0):\tprint(num,\'is a even number\')else: print(num,\'is a odd number\') | |
326. |
what is ASClI and why we need? |
Answer» | |
327. |
Accept length,breadth,height from a user. Find the volume of cuboid |
Answer» L=int(input("enter lenght")B=int(input("enter breath")H=int(input("enter height")Vol = l*b*hPrint("volume of cuboid:-",vol) | |
328. |
Accept length,bredth,height from auser . Find the volume of cuboid |
Answer» Let length 3 Breadth 4Height 6Area 2(l x b x h) 2(3 x 4 x6) 2x72 144 cm2 | |
329. |
Flash memory is a type of |
Answer» | |
330. |
Hg |
Answer» | |
331. |
how to count and display the number of vowels, consonants, uppercase, lowercase characters in string |
Answer» | |
332. |
What is its completeness? |
Answer» | |
333. |
What r the advantages of learning computer |
Answer» | |
334. |
Explain about Mobile system organisation with the help of a Diagram. |
Answer» | |
335. |
Write an algorithm to find the square of a number |
Answer» Start-> take a number from user -->multiply the number by itself-->End<br>a=int(input())Print( a**2) | |
336. |
Characteristics of computer |
Answer» Characteristic of a Computer Basic characteristics about computer are:characteristics of computer1. Speed: – As you know computer can work very fast. It takes only few seconds for calculations that we take hours to complete. You will be surprised to know that computer can perform millions (1,000,000) of instructions and even more per second.Therefore, we determine the speed of computer in terms of microsecond (10-6 part of a second) or nanosecond (10 to the power -9 part of a second). From this you can imagine how fast your computer performs work.2. Accuracy: – The degree of accuracy of computer is very high and every calculation is performed with the same accuracy. The accuracy level is 7. determined on the basis of design of computer. The errors in computer are due to human and inaccurate data.3. Diligence: – A computer is free from tiredness, lack of concentration, fatigue, etc. It can work for hours without creating any error. If millions of calculations are to be performed, a computer will perform every calculation with the same accuracy. Due to this capability it overpowers human being in routine type of work.4. Versatility: – It means the capacity to perform completely different type of work. You may use your computer to prepare payroll slips. Next moment you may use it for inventory management or to prepare electric bills.5. Power of Remembering: – Computer has the power of storing any amount of information or data. Any information can be stored and recalled as long as you require it, for any numbers of years. It depends entirely upon you how much data you want to store in a computer and when to lose or retrieve these data. 6. No IQ: – Computer is a dumb machine and it cannot do any work without instruction from the user. It performs the instructions at tremendous speed and with accuracy. It is you to decide what you want to do and in what sequence. So a computer cannot take its own decision as you can. 7. No Feeling: – It does not have feelings or emotion, taste, knowledge and experience. Thus it does not get tired even after long hours of work. It does not distinguish between users.8. Storage: – The Computer has an in-built memory where it can store a large amount of data. You can also store data in secondary storage devices such as floppies, which can be kept outside your computer and can be carried to other computers. | |
337. |
What subjects should I take in class 11 cbse if I am Only interested in computers? |
Answer» I recommend maths-computer science<br>My recommendation is to take Maths. I am also in 11th this year and i have taken maths.<br>According to me.... If u r only interested? in computer then u chose commerce becz in commerce u learn about ?computer so much... And also helping in computer.. | |
338. |
Define the role of comments and where can it placed? |
Answer» | |
339. |
Which of the following is not a anaconda distributions? |
Answer» | |
340. |
______ mode is useful for creating programs and then run the programs later and get complete output |
Answer» Script mode | |
341. |
What is synthesis phase |
Answer» S phase is the phase of the cell cycle in which DNA is replicated, occurring between G₁ phase and G₂ phase. Since accurate duplication of the genome is critical to successful cell division, the processes that occur during S-phase are tightly regulated and widely conserved. | |
342. |
No video ? |
Answer» | |
343. |
explain the versions of Windows operating system |
Answer» Windows is a series of operating systems developed by Microsoft. Each version of Windows includes a graphical user interface, with a desktop that allows users to view files and folders in windows. For the past two decades, Windows has been the most widely used operating system for personal computers PCs. | |
344. |
The posture of a typist should be |
Answer» | |
345. |
Role of utility software in the context of computer programm |
Answer» | |
346. |
Define each of the following byte kilobyte |
Answer» 1 Byte= 8 Bits 1 KB (Kilo Byte)= 1024 Bytes (210) | |
347. |
What are the basics units of a computer system |
Answer» Five Basic Units Of Computer System● Input Unit● Output Unit● Storage Unit● Control Unit● Central Processing Unit | |
348. |
Convert decimal number into binary numbers 52,44, 25.80, 62.325 |
Answer» | |
349. |
Draw a flowchart to print even numbers between 1 to N |
Answer» | |
350. |
Y=A’B’C’D+AB’C’D+ABC’D+ABCD’ solve it through truth table. |
Answer» | |