

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.
1. |
what is logic gates |
Answer» A logic gate is an idealized or physical device implementing a Boolean function; that is, it performs a logical operation on one or more binary inputs and produces a single binary output. | |
2. |
How to learn cs |
Answer» | |
3. |
Find fade(16) |
Answer» | |
4. |
What is Assembler ,Compiler &Interpreter |
Answer» Shzbcrixntidnjtuxf<br>Yogita mam app kon se School me padate ho<br>Thanks Yogita Mam?<br>Compiler –The language processor that reads the complete source program written in high level language as a whole in one go and translates it into an equivalent program in machine language is called as a Compiler.Example:\xa0C, C++, C#, JavaIn a compiler, the source code is translated to object code successfully if it is free of errors. The compiler specifies the errors at the end of compilation with line numbers when there are any errors in the source code. The errors must be removed before the compiler can successfully recompile the source code again.Assembler –The Assembler is used to translate the program written in Assembly language into machine code. The source program is a input of assembler that contains assembly language instructions. The output generated by assembler is the object code or machine code understandable by the computer.Interpreter –The translation of single statement of source program into machine code is done by language processor and executes it immediately before moving on to the next line is called an interpreter. If there is an error in the statement, the interpreter terminates its translating process at that statement and displays an error message. The interpreter moves on to the next line for execution only after removal of the error. An Interpreter directly executes instructions written in a programming or scripting language without previously converting them to an object code or machine code.Example: Perl, Python and Matlab. | |
5. |
Unsolved question answer for datahandling |
Answer» | |
6. |
Minimize the followingA+{A.{B.C}} |
Answer» How 1will come and A.(1+b).(1+c) part i dont undrstand<br>A+{A.(B.C)}= A+{ABC}= A+ABC=A.{1+BC}=A.{(1+B).(1+C)}=A.{(1).(1)}=A.{1}=A | |
7. |
What is binary |
Answer» Computer language written in 0 and 1<br>A number which are written in the form of 0 and 1<br>Binary is an 2<br>Binary are the numbers like 0& 1 | |
8. |
From where I can download the pdf of the python book class 11 Sumita arora ? |
Answer» Even me too<br>I also want to know about it ??? | |
9. |
I need last year question paper for periodic exams |
Answer» Last year paper here : https://mycbseguide.com/cbse-question-papers.html | |
10. |
What is chapter 5 based on? |
Answer» I think it based on loops and other advanced programming<br>I think Advanced Programming | |
11. |
Write any four basic numeric data type used in pythan |
Answer» Gal galotElizabeth olsenScarlett JohanssonMegan ? | |
12. |
What are the functions of the following :1.Assembler2.Compiler3.Interpreter |
Answer» | |
13. |
How to write codes in C++ Programming |
Answer» | |
14. |
Which is the basic electronic component of 1st generation of computer |
Answer» | |
15. |
What is Boolean logic |
Answer» Boolean Logic is a form of algebra which is centered around three simple words known as Boolean Operators: “Or,” “And,” and “Not”. At the heart of Boolean Logic is the idea that all values are either true or false. Within the Lotame platform, the use of Boolean Logic allows for the creation of more complex audience definitions, allowing for audiences to be built to a very specific set of definitions. This article explores the uses of the individual Boolean operators and how they relate to building audiences. | |
16. |
Define register |
Answer» Register are small data holding placeCpu use it temporarily to hold important processing information during the time processing is taking placeCpu may store some data or some memory address in it | |
17. |
What is the use of sql in mysql? |
Answer» | |
18. |
What is python and what use of this |
Answer» Python is a general purpose and high level programming language. You can use Python for developing desktop GUI applications, websites and web applications. Also, Python, as a high level programming language, allows you to focus on core functionality of the application by taking care of common programming tasks. | |
19. |
What y\'all think about ur ambition |
Answer» | |
20. |
What are the advantages of Python programming language? |
Answer» Some of its advantages are-\tExtensive Support Libraries: It provides large standard libraries that include the areas like string operations, Internet, web service tools, operating system interfaces and protocols. Most of the highly used programming tasks are already scripted into it that limits the length of the codes to be written in Python.\tIntegration Feature: Python integrates the Enterprise Application Integration that makes it easy to develop Web services by invoking COM or COBRA components. It has powerful control capabilities as it calls directly through C, C++ or Java via Jython. Python also processes XML and other markup languages as it can run on all modern operating systems through same byte code.\tImproved Programmer’s Productivity: The language has extensive support libraries and clean object-oriented designs that increase two to ten fold of programmer’s productivity while using the languages like Java, VB, Perl, C, C++ and C#.\tProductivity: With its strong process integration features, unit testing framework and enhanced control capabilities contribute towards the increased speed for most applications and productivity of applications. It is a great option for building scalable multi-protocol network applications. | |
21. |
Disadvantage of working in script mode in on python |
Answer» | |
22. |
What is the role of indentation in Python |
Answer» Indentation is required for indicating what block of code a statement belongs to.<br>It refers to indicate that what block of code a statement belongs to | |
23. |
Write a program to find sum of given series 1**x+3**x+5**x+......n terms |
Answer» | |
24. |
What is pythan |
Answer» Python is an interpreted, high-level, general-purpose programming language. Created by Guido van Rossum and first released in 1991, Python\'s design philosophy emphasizes code readability with its notable use of significant whitespace. | |
25. |
Express 943 of base 10 in terms of octal configuration |
Answer» 943 divide its from 8 and you get answe<br>(1657) in octal | |
26. |
Express 942 of base 10 in terms of octal configuration.. |
Answer» (1656) with base 8<br>Firstly divide 942by 8and you get some numbers which is in octal | |
27. |
First chapter of comper organisation an os.....notes |
Answer» | |
28. |
What is list and id function ? |
Answer» | |
29. |
Data repersentaion |
Answer» | |
30. |
I want to purchase computer science textbook of class 11 of cbse/ncert |
Answer» Olx?<br>Where i bought online | |
31. |
Write a program to to find the prime number of a series. |
Answer» \tnum\xa0=\xa0int(input("Enter\xa0a\xa0number:\xa0")) \t\tif\xa0num\xa0>\xa01: \t for\xa0i\xa0in\xa0range(2,num): \t if\xa0(num\xa0%\xa0i)\xa0==\xa00: \t print(num,"is\xa0not\xa0a\xa0prime\xa0number") \t print(i,"times",num//i,"is",num) \t break \t else: \t print(num,"is\xa0a\xa0prime\xa0number") \t\telse: \t print(num,"is\xa0not\xa0a\xa0prime\xa0number") | |
32. |
Pridict the outputa=bool(o)b=bool(l)Print(a==false)Print(b==true) |
Answer» | |
33. |
Predict the outputn="HariT"Print(n)n(2)=\'R\'Print(n) |
Answer» | |
34. |
What is dpms |
Answer» Display Power Management Signaling | |
35. |
If (a==0 |
Answer» | |
36. |
Where is the python language???? |
Answer» | |
37. |
Write a code that prints your full name and your birthday as separate strings |
Answer» print("enter your name.")output: your nameprint("enter your date of birth") | |
38. |
Briefly explain the basic architecture of computer |
Answer» A computer is a combination of\xa0hardware and software\xa0resources which integrate together and provide\xa0various functionalities to the user. Hardware are the physical components of a computer like the processor, memory devices, monitor, keyboard etc. while software is the set of programs or instructions that are required by the hardware resources to function properly.\xa0There are a few basic components that aids the working-cycle of a computer i.e. the Input- Process- Output Cycle and these are called as the functional components of a computer. It needs certain input, processes that input and produces the desired output. The input unit takes the input, the central processing unit does the processing of data and the output unit produces the output. The memory unit holds the data and instructions during the processing. | |
39. |
What is IDLE ? |
Answer» IDLE (short for integrated development environment or integrated development and learning environment) is an integrated development environment for Python, which has been bundled with the default implementation of the language since 1.5.2b1. | |
40. |
Name at least four early calculating devices |
Answer» | |
41. |
What python returns of the equation a=8%3 |
Answer» Answer is 2 (a=2)<br>Then answer will be a=2<br>There should be a=8%%3 | |
42. |
About computer memory |
Answer» Computer memory is any physical device capable of storing information temporarily like RAM (random access memory), or permanently, like ROM (read-only memory). Memory devices utilize integrated circuits and are used by operating systems, software, and hardware.<br>Sir more about memory in from the starting of memory to end | |
43. |
Computer system overview notes |
Answer» | |
44. |
What is the common property of decimal, octal, binary and hexadecimal number systems? |
Answer» | |
45. |
Which electronic device invention brought revolution in earlier computers |
Answer» From 1969 to 1971, Intel developed the Intel 4004, an early microprocessor that laid the foundations for the microcomputer revolution that began in the 1970s.\xa0 | |
46. |
8-6+(6*sum)/7- rootvar write python expression |
Answer» X=8-6Y=6*sumZ=(x+y)/7print(z) | |
47. |
How many type of strings are supported in python |
Answer» Single coated e.g \'a\'Double coated e.g "a"Triple coated e.g \'\'\'x\'\'\'<br>Answer is correct sure | |
48. |
How is a data type created in python |
Answer» | |
49. |
Assign a string "cbse school " into a variable STR |
Answer» STR=str(input("cbse school"))<br>str = "cbse school" | |
50. |
What do you mean by bios and cmos |
Answer» The BIOS is a small program that controls the computer from the time it powers on until the time the operating system takes over. The BIOS is firmware, and thus cannot store variable data. CMOS is a type of memory technology, but most people use the term to refer to the chip that stores variable data for startup. | |