

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.
151. |
Sir we study c++ language in our school so can you give notes of it. |
Answer» I help you You have to just refer to padmanand reddi or sumita arora they are good books for the c++programming and help you get the correct programs and all the importantant notes from sumita arora.Thank you too reading. | |
152. |
What is switch condition |
Answer» | |
153. |
Sumita arora functions chapter solved questions.... q12.. |
Answer» | |
154. |
Intersection sort programming in python asc and desc |
Answer» | |
155. |
Compare an if and a ?: operator |
Answer» | |
156. |
What do you mean by relation key |
Answer» in Microsoft access | |
157. |
Differentiate between Random and sequential data access. |
Answer» | |
158. |
In the boolean algebra , verify using truth table that X+XY=X for each X,Y in (0,1) |
Answer» X=0,0,0,0,1,1,1,1Y=0,0,1,1,0,0,1,1 Using this do XY u will get 0,0,0,0,0,0,1,1.and when u add it with 0 u will get back X itself | |
159. |
Write algorithm for finding the square of a number |
Answer» Pow(n,2);<br>Int n , sqr;Sqr=pow(n,n); | |
160. |
To display all records |
Answer» Select*from(name of ur table) in msql | |
161. |
Write a program to enter a string by the user and dispaly its length |
Answer» str = raw_input ("Enter the string: ")l = len(str)print "Length of the string is: ", l | |
162. |
How to write a program for any question |
Answer» Addition of two no. In python =num1 = input(\'Enter first number: \')num2 = input(\'Enter second number: \')sum = float(num1) + float(num2)print(\'The sum of {0} and {1} is {2}\'.format(num1, num2, sum)) | |
163. |
What does the keyword void represent |
Answer» Keyword void represent that function we are using is not returning any value this help compiler to understand that the user is not using any value and not returning any value | |
164. |
What is Matrix? |
Answer» a matrix is a set of numbers laid out in tabular form (in rows and columns). From this meaning, a less formal meaning is derived of a complex of lines intersecting at right angles. | |
165. |
What is the difference between run time erroe and compile time error? |
Answer» Compile time error is any type of error that prevent a java program compile like a syntax error, a class not found, a bad file name for the defined class, a possible loss of precision when you are mixing different java data types and so on. A runtime error means an error which happens, while the program is running.... | |
166. |
What is the use of import function in python |
Answer» If you quit from the Python interpreter and enter it again, the definitions you have made (functions and variables) are lost. Therefore, if you want to write a somewhat longer program.therefore Python has a way to put definitions in a file and use them in a script or in an interactive instance of the interpreter. Such a file is called a module; definitions from a module can be imported into other modules or into the main module (the collection of variables that you have access to in a script executed at the top level and in calculator mode) mainly in old version to form patterns u need to use import function in it. | |
167. |
What are the basic about tokens |
Answer» | |
168. |
What are numeric literals |
Answer» There are four types of numeric literals: plain integers, long integers, floating point numbers, and imaginary numbers. There are no complex literals (complex numbers can be formed by adding a real number and an imaginary numbe | |
169. |
take 20 integers input from user and print the number of positive numbers |
Answer» Take input using using an array then start a for loop and check each numbers | |
170. |
What is the difference between keywords and identifiers |
Answer» \tSR. NO.KEYWORDIDENTIFIER1Keywords are predefined word that gets reserved for working progs that have special meaning and cannot get used anywhere else.Identifiers are the values used to define different programming items such as variables, integers, structures, unions and others and mostly have an alphabetic character.2Specify the type/kind of entity.Identify the name of a particular entity.3It always starts with a lowercase letter.First character can be a uppercase, lowercase letter or underscore.4A keyword should be in lower case.An identifier can be in upper case or lower case.5A keyword contains only alphabetical characters.An identifier can consist of alphabetical characters, digits and underscores.6They help to identify a specific property that exists within a computer language.They help to locate the name of the entity that gets defined along with a keyword.7No special symbol, punctuation is used.No punctuation or special symbol except ‘underscore’ is used.8Examples of keywords are: int, char, if, while, do, class etc.Examples of identifiers are: Test, count1, high_speed, etc.\t | |
171. |
D/w relation file and tradition file |
Answer» | |
172. |
Difference between list and dictionary? |
Answer» List has also index numbers but dictionary have key instead of index<br>A list is a collection of data which contains all types of data such as numeric, letters etc.... But in case of dictionary, it contains a key and it\'s data......... | |
173. |
Write a programme to enter the multiple of a number in a arrat |
Answer» | |
174. |
What is the significance of input unit |
Answer» | |
175. |
Member function inside the class definition syntax |
Answer» | |
176. |
What do you you understand by an array? What is the significance of array ? |
Answer» If wrong then correct me<br>Array is a collection of data which only contains same type of data... ( if numeric then only numeric, and if letters then only letters....) | |
177. |
What\'s the meaning of end=" " python code |
Answer» end=" " means that anything which will print, it will print next to the printed symbol.. | |
178. |
What is the meaning of a(1:1)=9 |
Answer» | |
179. |
How to form variables in computer science? |
Answer» If u tell me that this is of which chapter, then I may help you....<br>I am asking this from Python.<br>You are asking this from Python ya C++ ??????? | |
180. |
Write a function to reverse a given number using call by reference method with function non return |
Answer» | |
181. |
write a c++ program to find the sum of the diagonal.. |
Answer» | |
182. |
Write a C++ function that interchange first row with last row. |
Answer» | |
183. |
How are your prepration going on |
Answer» Going on good | |
184. |
Please tell me ... That without taking COMPUTER subject in +1 &+2 can we do software engineering ?? |
Answer» ?kio nhi,.. u can do software engineering but it will be very difficult 4 u to do this... Becoz ur basic has not cleared.....<br>No i think so | |
185. |
Wrie a program that reads |
Answer» After reads ?? Incomplete question | |
186. |
Difference between 4th &5th generation programming language |
Answer» Fourth generation programming languages are designed to achieve a specific goal (such as to develop commercial business applications). 4GL preceded 3rd generation programming languages (which were already very user friendly).Fifth generation programming languages (which followed 4GL) are programming languages that allow programmers to solve problems by defining certain constraints as opposed to writing an algorithm. This means that 5GL can be used to solve problems without a programmer. | |
187. |
What are the two types in basic operator ? |
Answer» Logical operator and arithmetic operator<br>In string operator i need<br>Logical operator and relational operator.... If wrong then correct me | |
188. |
What does elif mean❓ |
Answer» All the best for cs exam<br>Today i am having my CS paper...need best wishes guys?<br>I think it shows both else and if property... Not sure | |
189. |
What would you do when your keyboard or mouse is not responding/ working properly? |
Answer» | |
190. |
(283)10=(?)16 |
Answer» | |
191. |
What is the difference bw c and c++ |
Answer» The major difference between C and C++ is that C is a procedural programming language and does not support classes and objects, while C++ is a combination of both procedural and object oriented programming language; therefore C++ can be called a hybrid language | |
192. |
What is adation |
Answer» | |
193. |
What is adaptiob |
Answer» | |
194. |
How are floating constants represent in Python ?give example to support your anser. ?? |
Answer» float (floating point real values) − Also called floats, they represent real numbers and are written with a decimal point dividing the integer and fractional parts. ... The real part of the number is a, and the imaginary part is b. | |
195. |
Gates |
Answer» | |
196. |
How to convert in digit |
Answer» | |
197. |
meaning of datatype |
Answer» | |
198. |
What is modular programming? |
Answer» Program which is broken into modulesYou know, step by step into parts... That one | |
199. |
What is function prototype |
Answer» | |
200. |
How will you represent binary of integers |
Answer» | |