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.

1.

Input n and print n^2,n^3,n^4

Answer» Num=int(input("enter the numbers:")a=num*numb=num*num*numc=num*num*num*numprint(a,"is square of",num)Print(b,"is cube of",num)Print(c,"is 4times multiply of",num)
2.

What are String literals?

Answer» A string literal is a type of literal in programming for the representation of a string value within the source code of a computer program.
3.

About halfyearly

Answer» All are going well
4.

What are implicit type conversion

Answer»
5.

Find out the error in folowing1. Temperature = 90 print temperature

Answer» Temperature =90print("Temperature")This is correct answer
6.

Advantages of python

Answer»
7.

Storage of i kb means the following number of bytes1) 1000 , 2) 1024 , 3) 964

Answer» 1024<br>1024 bytes
8.

WAP to print prime numbers between two given numbers.

Answer» #include <stdio.h>int main(){ int low, high, i, flag;printf("Enter two numbers(intervals): ");scanf("%d %d", &low, &high);printf("Prime numbers between %d and %d are: ", low, high);while (low < high){ flag = 0;for(i = 2; i <= low/2; ++i){ if(low % i == 0){ flag = 1;break; } }if (flag == 0)printf("%d ", low);++low; }return 0; }
9.

List the name of two components of cpu

Answer» ALU(Arithmetic logic unit) andCU(Control unit)<br>Arithmetic logic unit and memory unit<br>RAM and ROM are two parts of cpu
10.

What is the task of presentation software?

Answer»
11.

Write a program to find the power of a number if the base and power is given by the user

Answer»
12.

Some mysql sql elements

Answer»
13.

What will be the result given by the followingtype(6+3)type(6/3)type(6//3)type(6%3)

Answer»
14.

What is the use of encoding schemes?

Answer»
15.

What do you mean by external memory?

Answer»
16.

How to write print function

Answer»
17.

What is dynamic typing?

Answer»
18.

Given strl ="hello ", what will be the value of strl(0 ),STRl(1) Strl (-5),strl(-4), strl( 5)

Answer»
19.

what is data type?why it is important?

Answer» A data type is a classification of the type of data that are variable objection hold in computer programming data types are important factor in Virtually all computer programming languages including C plus plus JavaScript and Visual Basic
20.

my book is information practices by sumita arora python

Answer» Ohkk.. I have also same book.. ?
21.

One megabyte is equivalent to

Answer» A megabyte is 1,048,576 bytes or 1,024 kilobytes.
22.

Chapter 12 simple queries in sql

Answer»
23.

Write down the basic parts of computer

Answer»
24.

What are the two ways of multiple assigu

Answer»
25.

Pythan programming prime no.

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")
26.

How to give coding for emi???

Answer»
27.

Explain types of error

Answer»
28.

Explain different output devices

Answer» Output devices are those devices which display the required result in simple words to the users. The output device provides the output of data or information. The purpose of the output devices is to translate data and information from electrical impulses to a human-readable format. There are two principal kinds of output. They are described below:Soft copy output: It refers to data that is shown on a display screen or sound produced by a speaker. It is present in a digital form on a computer. This kind of output is untouchable. It is temporary in nature. For example, content displayed on a screen.Hardcopy output It refers to printed output printed on the paper or some material that can be touched and carried for being shown to others. It is permanent in nature and can keep in paper files or can be looked later when a person is not using the computer. For example, outputs produced on paper by printer or plotter in the form of text or graphics, etc.
29.

Memory bites ??

Answer» \t1 bit (binary digit) = the value of 0 or 1.\t8 bits = 1 byte.\t1024 bytes = 1 kilobyte.\t1024 kilobytes = 1 megabyte.\t1024 megabytes = 1 gigabyte.\t1024 gigabytes = 1 terabyte.\t1024 terabytes = 1 petabyte.
30.

What is the basic building block of any computer

Answer» Identifiers
31.

Koi banda ya bandi online h kya????

Answer» Hlw nidhi<br>Haan Banda bol rha h<br>Yes
32.

Distinguish between internal and external memory ?

Answer» Internal memory, also called "main or primary memory" refers to memory that stores small amounts of data that can be accessed quickly while the computer is running.External memory, also called "secondary memory" refers to a storage device that can retain or store data persistently. They could be embedded or removable storage devices. Examples include hard disk or solid state drives, USB flash drives, and compact discs.
33.

What is the importance of an os ?

Answer»
34.

Disringuish between CPU and ALU ?

Answer» cpu or Central processing unit is the main control unit. But in alu perform all the four arithmetic and logical operators
35.

What is the role of CPU in mobile system?

Answer»
36.

What is hardware and what are their types

Answer»
37.

1s and 2s

Answer»
38.

What is the main function of main memory

Answer» Main memory is the storage that is directly available to the CPU of a computer and is made up of RAM and ROM. RAM\'s (Random Access Memory) purpose is to hold the data and instructions temporarily which the CPU will process.
39.

What is CU

Answer» CU is control unit that control & guides the manipulation of all data & information
40.

15 phyton programs...with codes and output

Answer»
41.

difference between static and dynamic

Answer» In computer terminology, dynamic usually means capable of action and/or change, while static means fixed.
42.

Why ascii codes are used in the computer

Answer» Most computers use ASCII codes to represent text, which makes it possible to transfer data from one computer to another.
43.

What is a programming language?do we have an algorith for python like Qbasic

Answer» A programming language is a formal language, which comprises a set of instructions that produce various kinds of output. Programming languages are used in computer programming to implement algorithms.
44.

How to transition from a calculater to a computer

Answer»
45.

Basic concepts of data representation

Answer»
46.

How many parts cpu divide and what is mu

Answer»
47.

Name method is used to extract value of index while using list box in java

Answer»
48.

Switch conversion

Answer»
49.

Write the. Program 3 numbers from the user and print their sum?

Answer»
50.

What is sql and it functions

Answer»