

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.
1101. |
Which is more better , python or c++ |
Answer» For class 11 cbse it is changed to phython . So it is better and best<br>Python | |
1102. |
How are digital analogue and hybrid computer different from one another |
Answer» | |
1103. |
Book of python |
Answer» | |
1104. |
What is data representation |
Answer» It refers to the internal method used to represent various types of data stored on a computer. Computers use different types of numeric codes to represent various forms of data, such as text, number, graphics and sound.To know data representation in computer we must know following number systemDecimal number system (Base=10):- 0,1,2,3,4,5,6,7,8,9.Binary number system (Base=2):- 0,1.Octal number System (Base=8):- 0,1,2,3,4,5,6,7.Hexa Decimal System(Base =16):- 0,1,2,3,4,5,6,7,8,9,A(10),B(11),C(12),D(13),E(14),F(15). | |
1105. |
What are variables |
Answer» Variable is a name assigned to a memory location to store the data. The data that a variable can store depends on data type for example x=20,y=20.5 , z=\'hello\'. Here x y and z are name of three variables all of them are holding different data depending of their type e.g x is holding integer type data y is holding float type and z is holding string data. Basically all this data is stored in the memory and it is accessed by its name called variables. We can also say variable is a refrence to a memory location where the data js stored and we can easily access the data from memory using these variables. | |
1106. |
Best channel for c++ of class 11 need best youtube channel |
Answer» | |
1107. |
Where is question paper |
Answer» | |
1108. |
Cisc |
Answer» | |
1109. |
It not match to our information technology book |
Answer» | |
1110. |
Its match to our book information technology |
Answer» | |
1111. |
Difference between lcd and crt |
Answer» \tBASIS FOR COMPARISONCRTLCDStands ForCRT stands for “Cathode Ray Tube“LCD stands for “Liquid Crystal Display“.Major componentsVacuum glass tube, phosphor screen, electron gun, deflection plates.Glass plates, nematic liquid crystal, internal light source.SizeCRT is weighted, bulky, and large in size.LCD is light, compact, and thin in size.WeightHeavierLighterPower ConsumptionIt consumes High power.It consumes low power.Power ConsumptionIt consumes High power.It consumes low power.Image FlickeringImage Flickering is there in CRT.No Image Flickering is there on LCD.ColorCRT is like Black.LCD is like White.Image RetentionImage Retention is not there in CRT.Image Retention is there on LCD.CostIt is less expensive.It is more expensive.Image FormingElectron Gun is used to form images.Liquid crystals are used to form images.ResponseCRT having a good response.LCD has a slow response.BenefitsPanels weigh less than plasma; use less energy; light; thinner; emits less electromagnetic radiation; no bleeding or smearingEasy to move as cannot be wall-mounted; good picture quality; cheaper; wide viewing quality; sharper image quality; multiple resolutionsLimitationsPicture slightly less natural and “filmlike” than plasmas; slower refresh rate; limited viewing angle; blacks are brighter; susceptible to burn-out and image persistence; dead or stuck pixels may appearHeavier, small screens; old technology (obsolete); susceptible to burn-insWhere UsedCRT is used in Televisions and was used in old computer monitors.LCD is used in flat screens.\t | |
1112. |
Chapter 6 main topics |
Answer» | |
1113. |
Explain tokens |
Answer» | |
1114. |
Wh is easy way to learn c++ progamming |
Answer» | |
1115. |
How to convert hexi into binary |
Answer» | |
1116. |
what are the advantages/disadvantages of working in script mode in Python? |
Answer» | |
1117. |
what are advantages/disadvantages of working in Interactive mode in python? |
Answer» | |
1118. |
Is it true that for 12th std instead of c++python programming is included? |
Answer» But we would be learning c++ because we started it i class 11<br>Yes but from next year | |
1119. |
Convert binary to decimal 10011 |
Answer» | |
1120. |
Hogg |
Answer» | |
1121. |
What is basic difference between compiler and interpreter |
Answer» \tInterpreterCompilerInterpreter translates just one statement of the program at a time into machine code.Compiler scans the entire program and translates the whole of it into machine code at once.An interpreter takes very less time to analyze the source code. However, the overall time to execute the process is much slower.A compiler takes a lot of time to analyze the source code. However, the overall time taken to execute the process is much faster.An interpreter does not generate an intermediary code. Hence, an interpreter is highly efficient in terms of its memory.A compiler always generates an intermediary object code. It will need further linking. Hence more memory is needed.Keeps translating the program continuously till the first error is confronted. If any error is spotted, it stops working and hence debugging becomes easy.A compiler generates the error message only after it scans the complete program and hence debugging is relatively harder while working with a compiler.Interpreters are used by programming languages like Ruby and Python for example.Compliers are used by programming languages like C and C++ for example.\t | |
1122. |
what do you meant by switch case and also write a program to print week days |
Answer» | |
1123. |
What is "string" |
Answer» A string literal is a sequence of zero to more character surrounded by double inverted comma . For eg. String name = " siya " ; | |
1124. |
Where can we get python textbook exercise solutions ? |
Answer» Python is the language which is introduced 4 the first time so... I think there will be no answer kit for this... If anyone know then tell me also.. | |
1125. |
Evaluate the following expressions(i)(( x-yx)) ¦¦ (x-z |
Answer» | |
1126. |
What is ALU???????? |
Answer» Arithmetic logic unit | |
1127. |
What is mother board and describe it |
Answer» | |
1128. |
What is infite loop |
Answer» A loop taht never become false and run continously | |
1129. |
Find errors of c++Main(){Int a, b;Cin >>"enter two number" ;(a>b) C=a;else c=b;Cout>>c;} |
Answer» | |
1130. |
How can i download quick revision notes in my cbse guide |
Answer» | |
1131. |
what are functions and it\'s uses |
Answer» | |
1132. |
How to use functions of math.h |
Answer» Include math.h as a header file and u can use the functions it contains. These include sqrs( ),pow( ) , etc. | |
1133. |
What is bool? |
Answer» It\'s a data type which is use to execute true and false in a code.<br>Do you mean boolean | |
1134. |
What is None literal ? |
Answer» | |
1135. |
Hi anyone i can tock |
Answer» | |
1136. |
Differenciate between TTL and comos logic families |
Answer» | |
1137. |
Write a c++ program to print the number which is divisible by only 5 not other using 1D array |
Answer» | |
1138. |
What is the purpose of else in for and while loop? |
Answer» Else is used to show the otherwise part of the condition given in a loop... 4 ex:- if 4 is even then print (even) ...... Else print (odd)<br>In making programmes | |
1139. |
Explain three key attributes associated with each variable of python. |
Answer» | |
1140. |
WAP to print the following pattern using while loop in python977555333311111 |
Answer» | |
1141. |
Which is the timing is of default setting for end time ? |
Answer» | |
1142. |
What do you mean by computer security ? Explain possible solutions to spam ? |
Answer» | |
1143. |
Write the corresponding c++ expressions for the following (1)√a2+b2 (2)2-ye2y +4y (3)a45 |
Answer» | |
1144. |
What is the output when following code is excuted? str1=\'hello\' str2=\',\'str3=\'world\'str1[-1:] |
Answer» Sorry it is only o will be ans<br>For [-1] =Olleh | |
1145. |
What do you mean by binary searching in an array |
Answer» A binary search, also known as a half-interval search, is an algorithm used in computer science to locate a specified value (key) within an array. For the search to be binary, the array must be sorted in either ascending or descending order. | |
1146. |
Anyone who is using python?? |
Answer» Yes I use python...<br>Yes i use python | |
1147. |
Write a program to reverse a number and to check whether the number is palindrome or not |
Answer» #include <stdio.h> void main(){ int num, temp, remainder, reverse = 0; printf("Enter an integer \\n"); scanf("%d", &num); /* original number is stored at temp */ temp = num; while (num > 0) { remainder = num % 10; reverse = reverse * 10 + remainder; num /= 10; } printf("Given number is = %d\\n", temp); printf("Its reverse is = %d\\n", reverse); if (temp == reverse) printf("Number is a palindrome \\n"); else printf("Number is not a palindrome \\n");getch();} | |
1148. |
What is the work of void |
Answer» In larger context, that holds nothing. It indicates a function does not return a value. | |
1149. |
Pls give some example on rstrip() function ch 5 string manupilation |
Answer» Can you be a girl friend for me<br>Pls answer i have exam day after tommorrow | |
1150. |
What is the data tupe error |
Answer» | |