

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. |
Anybody have questions |
Answer» Wt is hyper conjugation | |
152. |
java programs with gui simple |
Answer» | |
153. |
Exercise question answers of information security and soical networking |
Answer» Hi ananyaYou should find answers in ncert solution or in websites | |
154. |
create a database school with table student |
Answer» | |
155. |
Name the software required to make a computer functional. Write down its two primary functions. |
Answer» system softwere | |
156. |
ict1={1:11,2:12,3:13,4:14} (1M)dict2={5:15,6:16}dict2.update(dict1)print(d1) |
Answer» | |
157. |
SQL questions and solutions |
Answer» | |
158. |
To count how many address are not having null values in address column of student table |
Answer» | |
159. |
Coconsider list l=(15,25,35,40) write the statement to perform the following ? |
Answer» <pre>we can make list as:list=[15,25,35,40]</pre><br>where are your conditions<br>Answers please<br>I don\'t know | |
160. |
Write a python program to print all the even numbers from 1 to 1000 |
Answer» | |
161. |
Whai is cpu |
Answer» The full form of CPU is central processing unit. It is also called brain of the computer. It guides, directs, controls and governs the performance of a computer. Parts of Computer -1.ALU(Arithmetic Logic Unit)2. CU (Control Unit)3. Registers<br>Central Processing unit.. | |
162. |
For loop....? |
Answer» | |
163. |
What is loop ....? |
Answer» The purpose of loops is to repeat the same, or similar, code a number of times.<br>The block of code is executed based on a certain condition.\xa0Loops\xa0are the control structures of a program.\xa0The body of a\xa0loop\xa0comprises the block of code or the sequence of logical statements that are to be executed multiple times. | |
164. |
Why in keyboard alphabets are not in order...? |
Answer» The reason dates back to the time of manual typewriters. When first invented , they had keys arranged in an alphabetical order, but people typed so fast that the mechanical character arms got tangled up. So the keys were randomly positioned to actually slow down typing and prevent key jams. The QWERTY keyboards were made so one could type using keys from the top row of the keyboard. This random arrangement became standard. | |
165. |
Which of the following is not a Python IDE ?(a) IDLE (b) Spyder (c) jupyter Notes (d) Sublime text |
Answer» sublime is not an ide<br>IDLE\xa0is a Python IDEJupyter Notebook**\xa0is a Python web-based applicationSpyder\xa0is a Python IDESublime Text\xa0is a Text Editor | |
166. |
Write a program of nested for loop of output:24 68 10 12 14 16 18 |
Answer» <pre>for i in range (2,20,2): print (i)</pre><br>for i in range(2,20,2): print(i)it will five you your desired result in range function (start,stop,step)this is small explanation i hope it will help you | |
167. |
Seamatic error....???? |
Answer» Semantic errors are problems with a program that runs without producing error messages but doesn\'t do the right thing. Example: An expression may not be evaluated in the order you expect, yielding an incorrect result. | |
168. |
Name two common errors that occur during Python program execution. |
Answer» (1) : | |
169. |
What is the difference between DDL and DML |
Answer» DDL\t:-It stands for Data Definition Language.\tDML :- It stands for Data Manipulation Language.DDL:-It is used to create database schema and can be used to define some constraints as well.DML:-\tIt is used to add, retrieve or update the data.It basically defines the column (Attributes) of the table.DDL:-\tIt add or update the row of the table. These rows are called as tuple.DDL:-It doesn’t have any further classification.DML:-It is further classified into procedural and Non-Procedural DML.DDL:-Basic command present in DDL are CREATE, DROP, RENAME, ALTER etc.DML:-\tBASIC command present in DML are UPDATE, INSERT, MERGE etc. | |
170. |
Define a computer |
Answer» Computers are the machines that have revolutionalized the world around us. The way we used to live around 25 - 30 years ago is very different from how we live today . A modern age student cannot even imagine life without email , Internet, print outs, playing music on computers or smartphones, photos just a click away in the form of Smartphones and so on. In short, in every aspect of life around us we see computers play a role directly or indirectly . | |
171. |
What is the role of d b a |
Answer» | |
172. |
My project |
Answer» | |
173. |
What is meaning of python how we use it |
Answer» Python is a high level language. Your class Teacher will give more information about this because it is in the syllabus. | |
174. |
File structure of windows |
Answer» | |
175. |
Find the errors in the code given below and correct the code |
Answer» | |
176. |
Difference b/w traditional file system and dbms |
Answer» | |
177. |
Mysql 10 to 15 queries |
Answer» Show Databases;Use databse name;Show Databases;Create table table name(Id int(5),name varchar(20),Dob date);Insert into table(Id,name,Dob)values(1001,\'Akj\',1995-07-04);Desc table name; | |
178. |
Practical questions mysql |
Answer» | |
179. |
Display the details about cot in my sql practical |
Answer» | |
180. |
What is column aliasing |
Answer» | |
181. |
To increase marks by 5% for those students who roll number more than 20 |
Answer» Select*from studentsset marks=marks*1.05 where roll number <20; | |
182. |
What is data independency? |
Answer» And Data inconsistency is a situation where more than one database are Store and they are not agreed to each other.<br>I think it was not independancy..It was inconsistency.. | |
183. |
What is yoga |
Answer» | |
184. |
What is data isolation |
Answer» When a respective data is based on a specific format i.e known as data isolation.<br>Data are scattered various files and files may be indifferent format writing new application program is retrieve to appropriate data is difficult data maping is not supported in file system | |
185. |
Difference between candidate key and primary key ... |
Answer» | |
186. |
What is an alternate key |
Answer» | |
187. |
EOL means |
Answer» End of Line | |
188. |
How to print and program |
Answer» | |
189. |
To display the female candiate from table command ans |
Answer» Select Name where Gender="F"; | |
190. |
y=int(input("Enter x: "))+1 ,In response to the prompt the user enters 50 |
Answer» | |
191. |
Can you provide sample paper for term 1 |
Answer» No | |
192. |
Can you provide me sample paper related to term 1 |
Answer» | |
193. |
Create a dictionary to store name of state and their capital |
Answer» | |
194. |
Write a program and it\'s output to find the sum of three numbers |
Answer» num1=int(input("Enter a number : 1")num2=int(input("Enter a number : 2")num3=int(input("Enter a number : 3")Sum=num1+num2+num3print("Sum is",Sum) | |
195. |
Data capturing |
Answer» Data Capturing means to capture data | |
196. |
Write the program to print odd no upto may no and find their sum |
Answer» | |
197. |
Computers understand the language of 0s and 1s which is called ______ |
Answer» Binary Language...! :)<br>Hey ! Your answer is binary Language<br>Binary language<br>Binary language<br>Here is your answerIt is called binary language. | |
198. |
1st + 3 and 1st += [3] |
Answer» | |
199. |
Explain the basic architecture of a computer |
Answer» | |
200. |
what is the function of memory |
Answer» Memory is a system or process that stores what we learn for future use. Our memory has three basic functions: encoding, storing, and retrieving information. Encoding is the act of getting information into our memory system through automatic or effortful processing. | |