

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.
451. |
Pata to catch in python how many types of tokens are allowed in python explain with examples |
Answer» | |
452. |
What is Boyle\'s law ??????✌????? |
Answer» Boyle’s Law\tBoyle’s law was stated by Robert Boyle.\tIt states that at constanttemperature, the pressure of a fixednumber of moles nof gasvaries inversely with its volume.k1\xa0= Proportionality constant.\tIt depends upon the amount and temperature of gas. It also depends upon the units in which p as well v are expressed.\tLet volume V1\xa0is occupied at pressure P1\xa0and temperature T1.\tAgain volume V2\xa0is occupied at pressure P2\xa0and temperature T2. Mathematically, as per Boyle’s law:P1\xa0V1= P2\xa0V2\xa0= ConstantP1/P2\xa0\xa0= V2/V1\xa0 | |
453. |
Meri fan following ????kya bol re ho... |
Answer» Acha jii<br>Competition usse lgta hoga maybe....but mujhe yhape kisise competition krne me koi Interest ni....???<br>ek min pehle mai hsslu????????? tum kya bolre ho sahil....Deepak fan following me thodi hai...!!<br>Aap dono k Bich n competition chalta ha na??????<br>Vo hi deepak Singh | |
454. |
T.P.✌ |
Answer» Aap k fan following ?????<br>kon sab??<br>Or sab... ?<br>hmm?<br>Hmm..... | |
455. |
or kya chl rha hai ??? btw aaj koi bahar gya tha Dusshera pe....?? |
Answer» Kya kar rahi ho miss.....<br>???<br>acha sahi hai...mai konsa bahar gyi thi...??<br>Nobody....?<br>Nhi yrr | |
456. |
Yo?✌... How are u all? |
Answer» okay achi baat h.. ✌?<br>Perfect yrr<br>Fine<br>Me2 fine✌ | |
457. |
Is python case sensitive when dealing with identifiers |
Answer» yes, python is a case-sensitive language.e.g: a=10and A=10 both are different in python<br>Yes | |
458. |
what\'s up? |
Answer» NEWS* pe* aane wle the<br>acha vse ajj 6 bje to pm modi JIII aane wle the....?tumne dekha<br>aadya?!!! ....okay royal bye✌️ | |
459. |
??! ....KOI HAI JO 1ST NOV SE JYEGA SCHOOL????? |
Answer» bss bdia...ap btao?? ....pta nii kaha gye ....aadya baat krte krte kaha kho gyi....!!!!!!!<br>Sahi h? | |
460. |
Yrr tumlog sbb kbse school jaoge ....mera to jana 1st Nov. se confirm hai btw ??? |
Answer» Aap sbhii ek hi school se ho kya??<br>toh tum kis Khushi me kal jarhi ho????<br>klse?...aadya ek bar ye bhi confirm krlena vse ki koi tumhara classmate jaa bhi rha hai...??bcuz mujhe nii lgta kl koi student jyega | |
461. |
GOOD EVE.✌?? EVERYONE..... |
Answer» hii aadu ?<br>No legendary u r wrong... it\'s not what you\'re thinking.... I\'m not hiding my name from anyone here...I named SS just to make easy while typing...as u already know it\'s too long....!! And at last mujhe koi problem nii aggr koi mera name mention krke bhi baat kre to :)<br>Hlo miss1234 (SS(Shr***** sharma)l I know all your mames but I am not making it public because there may be some reason you tell only to some people<br>good evening | |
462. |
Python code to print alternative characters of the string . |
Answer» | |
463. |
Python programme to check whether the string is symmetrical or palindrome. |
Answer» | |
464. |
okay bye yrr...Kl baat krte hai.....Good night...✌? |
Answer» assignment krna hai? bbye isliye | |
465. |
hnn mujhe yad hai ? truth nd dare kitna khelte hai humlog yha pe?????? |
Answer» vdia..or tum?✌<br>hnn ? ✌ mahino baad bolo... | |
466. |
No.... Now there\'s no need to hide my name.... it\'s Shraddha Sharma okk...!!! |
Answer» @Deepak Singh....Why don\'t u mind ur own business..hnn?? | |
467. |
What is operation system |
Answer» \tAn operating system is a program that controls the execution of application programs and acts as an interface between the user of a computer and the computer hardware.\tA more common definition is that the operating system is the one program running at all times on the computer (usually called the kernel), with all else being application programs.\tAn operating system is concerned with the allocation of resources and services, such as memory, processors, devices, and information. The operating system correspondingly includes programs to manage these resources, such as a traffic controller, a scheduler, memory management module, I/O programs, and a file system. | |
468. |
???glti pta hai kiski hai....jaha hum baat krhe hai iss jgh ki????peeto abb [email\xa0protected] |
Answer» nii peetna tha...toh peetne ki baat kyu ki?btw choro vhi chlte hai✌<br>mai violence nii chahti na??tum meri jgh peet skti ho prr | |
469. |
Hey ✌? |
Answer» proof???dekho mene tumhe jbb ok bola insta pe tbhi agyi thi?<br>nii*?<br>hnn ? mai pehle ki ayi thi ..vo msg hi send nij hora tha...msg ki glti hai??? | |
470. |
Pythons examples |
Answer» Print (A+B) output is 42<br>A=30B=12 | |
471. |
Run a programme for salary in pyroid 3 |
Answer» | |
472. |
Yo! Good Evening Everyone!! ?? |
Answer» I\'m also fine?<br>hehe??hnn vo actually meri id block ho gyi thi...or mere pas dusri id nii thi... toh ye id mujhe aadya ne dii✌✌?<br>Hii Royal...how r u?✌ | |
473. |
Differentiate between // and /. Give examples. |
Answer» And what is cause of your laughing face.?<br>What you mean by roll no. 63 | |
474. |
What is loop and its types.daigram of each type and syntax |
Answer» A\xa0Loop\xa0executes the sequence of statements many times until the stated condition becomes false. A loop consists of two parts, a body of a loop and a control statement. The control statement is a combination of some conditions that direct the body of the loop to execute until the specified condition becomes false. The purpose of the loop is to repeat the same code a number of times.\t\tA while loop is the most straightforward looping structure. Syntax of while loop in C programming language is as follows:\t<pre>while (condition) { statements;}</pre>\t\t\tA do...while loop in C is similar to the while loop except that the condition is always executed after the body of a loop. It is also called an exit-controlled loop.\tSyntax of do...while loop in C programming language is as follows:\t<pre> do { statements} while (expression);</pre>\t\t\tA for loop is a more efficient loop structure in \'C\' programming. The general structure of for loop syntax in C is as follows:\t<pre>for (initial value; condition; incrementation or decrementation ) { statements;}</pre>\t | |
475. |
EXPLAIN IPO PROCESS? |
Answer» The most basic functions of a computer are to take input through the input input, process it using the\xa0CPU\xa0and produce an output through the output units. This process can be represented with the help of the\xa0Input – Process – Output\xa0cycle (IPO cycle). Every task hendled by the computer follows this cycle. The working of this cycle can be stated as follows:i. Input is supplied through the input peripheralsii. The supplied input is read and is then processed by the\xa0CPUiii. The processed data is then output through the output devices | |
476. |
I think my answer isn\'t right....sry sryy.... |
Answer» or vo niche jo mene quotient rule use kia hai uspe sign + nahi - hai typing mistake ...... so the formula which I used is (u/v)=(vu-uv)/v².... | |
477. |
hey... what are assets ?!? |
Answer» <div style="left: 0; width: 100%; height: 0; position: relative; padding-bottom: 56.25%;"><iframe src="https://www.youtube.com/embed/OyrenGNLmMA?rel=0" style="border: 0; top: 0; left: 0; width: 100%; height: 100%; position: absolute;" allowfullscreen scrolling="no" allow="encrypted-media; accelerometer; gyroscope; picture-in-picture"></iframe></div><br><div style="left: 0; width: 100%; height: 0; position: relative; padding-bottom: 56.25%;"><iframe src="https://www.youtube.com/embed/b1c6i0VT7ak?rel=0" style="border: 0; top: 0; left: 0; width: 100%; height: 100%; position: absolute;" allowfullscreen scrolling="no" allow="encrypted-media; accelerometer; gyroscope; picture-in-picture"></iframe></div><br>yO ??? | |
478. |
Introduction to c++ |
Answer» | |
479. |
Convert 11110101 binary to octal |
Answer» 365<br>(11110101)2\xa0= (365)8Step by step solutionStep 1: Write down the binary number(011110101)2Group all the digits in sets of three starting from the LSB (far right). Add zeros to the left of the last digit if there aren\'t enough digits to make a set of three.011 110 101Step 2: Use the table below to convert each set of three into an octal digit. In this case,011=3, 110=6, 101=5.So, the number 365 is the octal equivalent to 11110101 in binary.To convert from binary to octal use the following table:\tBin:000001010011100101110111Octal:01234567\t<br>8 | |
480. |
C++ Language |
Answer» | |
481. |
Input, output and memory device |
Answer» input devices micro phone, keyboard,mouse,scanner,touch pad etcoutput device monitor,printer, speakers etc.memory devices harddisk, pendrive etc.<br>The devices that are used to display the information of the results are known as output devices. While the devices whose main function is to give instructions and data to the computer are called input devices.The various examples of input data are a mouse, keyboard, light pen, etc. | |
482. |
When the data is processed it will converted into ........ |
Answer» When raw\xa0data\xa0are\xa0processed\xa0and\xa0converted into\xa0meaningful form then it is referred\xa0to\xa0as Information.\xa0A\xa0data processing unit\xa0(DPU) is a programmable electronic component that processes streams of\xa0data. The\xa0data\xa0is transmitted to and from the component as multiplexed packets of information.\xa0To be effectively used in making decisions,\xa0data\xa0must go through a\xa0transformation process\xa0that involves six basic steps: 1)\xa0data\xa0collection, 2)\xa0data\xa0organization, 3)\xa0data\xa0processing, 4)\xa0data\xa0integration, 5)\xa0data\xa0reporting and finally, 6)\xa0data\xa0utilization. | |
483. |
Solution of Ch 2 data representations |
Answer» | |
484. |
How python works?? |
Answer» python works with the help of python interpreter.<br>PythonPython is a high-level general purpose programming language that is used in a wide variety of application domains. Python has the right combination of performance and features that demystify program writing. Some of the features of Python are listed below:\tIt is a simple and easy to learn.\tPython implementation is under an open source license that makes it freely usable and distributable, even for commercial use.\tIt works on many platforms such as Windows, Linux, etc.\tIt is an interpreted language.\tIt is an object-oriented language.\tEmbeddable within applications as a scripting interface.\tPython has a comprehensive set of packages to accomplish various tasks.Python is an interpreted language, as opposed to a compiled one, though the dis | |
485. |
What do u know about the system penetration? |
Answer» | |
486. |
Write a program to input radius(r) of a sphere and calculate it\'s volume(v) where V-4/3πr3 |
Answer» <kbd>r= int(input ("write the value of radius of sphere")v= 4*3.14*r**3print ("The volume of the sphere is : ",v/3)<br><kbd>r= int(input ("write the value of radius of sphere")v= 4*3.14*r**3print ("The volume of the sphere is :",v/3)<br><kbd>r= int(input ("write the value of radius of spherev= 4*3.14*r**3print ("The volume of the sphere is : ",v/3)<br>python 3.8<br>r=int(input("Enter the radius of circle")) print (4/3*3.14*r*r*r) | |
487. |
Write a program to generate 6 random numbers and then print their mean, median and mode. |
Answer» you can use randam module | |
488. |
Write a program to generate 6 digital randomsecure OTP between 100000 and 999999. |
Answer» | |
489. |
What are datatypes? What are pyton\'built-in core data types? |
Answer» python data typesBuilt-in Data TypesIn programming, data type is an important concept.Variables can store data of different types, and different types can do different things.Python has the following data types built-in by default, in these categories:Text Type:\tstrNumeric Types:\tint, float, complexSequence Types:\tlist, tuple, rangeMapping Type:\tdictSet Types:\tset, frozensetBoolean Type:\tboolBinary Types:\tbytes, bytearray, memoryview | |
490. |
Can you please suggest me a good YouTube channel for learning CS. I don\'t have tution for it. |
Answer» this is also a channel but this is not permanent"DevSingh Computer Classes"<br>you can learn python from channel code with Harry | |
491. |
How to show your program on a mobile phone |
Answer» for using python online just search for "online python interpreter " click on any link and enjoy your programming<br>my id name is tec om with black apple<br>if you are using telegram send me a message I will send you a video for this<br>do you want to run your program on phone | |
492. |
What is protocols?? |
Answer» A\xa0protocol\xa0is the special set of rules that end points in a telecommunication connection use when they communicate.\xa0Protocols\xa0also specify the interactions between the communicating entities.\xa0Protocols\xa0exist at several levels in a telecommunication connection.<br>protocols are predefined rules which is used by devices for communication. | |
493. |
Find the output a=23,b=25 ,print (a is b) |
Answer» a=23,b=25 ,print (a is b){ this code give you "false" as output because b is not = a} | |
494. |
What is python ? |
Answer» Python is an interpreted high-level general-purpose programming language. Python\'s design philosophy emphasizes code readability with its notable use of significant indentation. | |
495. |
x=3,y=2,z=x//y,print(z) |
Answer» | |
496. |
What is fullform of EERM |
Answer» Environmental Engineering and Resource Management. | |
497. |
X=5 ,y=3 print (x) |
Answer» 5 | |
498. |
Python or Java which is better ?¿¿? |
Answer» Sacchi broo.. Mene to physical education le li hai ?<br>PytHon is ? | |
499. |
Where can I find mysql |
Answer» | |
500. |
Name any four data type of python |
Answer» NumericA numeric value is any representation of data which has a numeric value. Python identifies three types of numbers:\tInteger:\xa0Positive or negative whole numbers (without a fractional part)\tFloat:\xa0Any real number with a floating point representation in which a fractional component is denoted by a decimal symbol or scientific notation\t\tComplex number:\xa0A number with a real and imaginary component represented as x+yj. x and y are floats and j is -1(square root of -1 called an imaginary number)\tBooleanData with one of two built-in values\xa0<code>True</code>\xa0or\xa0<code>False</code>. Notice that \'T\' and \'F\' are capital.\xa0<code>true</code>\xa0and\xa0<code>false</code>\xa0are not valid booleans and Python will throw an error for them.Sequence TypeA sequence is an ordered collection of similar or different data types. Python has the following built-in sequence data types:\tString: A string value is a collection of one or more characters put in single, double or triple quotes.\tList\xa0: A list object is an ordered collection of one or more data items, not necessarily of the same type, put in square brackets.\tTuple: A Tuple object is an ordered collection of one or more data items, not necessarily of the same type, put in parentheses.DictionaryA dictionary object is an unordered collection of data in a key:value pair form. A collection of such pairs is enclosed in curly brackets. For example:\xa0<code>{1:"Steve", 2:"Bill", 3:"Ram", 4: "Farha"}</code> | |