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.

1351.

How to access key individually in dictionary ....?

Answer»
1352.

How interpreter is different from compiler? Explain.

Answer»
1353.

Draw the block diagram of computer system, briefly write about the functionality of each component ?

Answer»
1354.

X=10X=X+10X=X-5Print (X)Y=X-2Print (X,Y?

Answer» print "sum of",x,"and",y,"is",x+yLet\'s learn about this line of code.Whatever we write in (" ") or (\' \') gets printed as it is and is not evaluated. So, \'Sum of\' gets printed and then the value of \'x\' gets printed (i.e. 10), then \'and\' is printed as it is. Then value of y (i.e. 5) and at last x+y is calculated and printed.
1355.

How to create random program for three letteres (A,B, T)

Answer» #include<stdio.h>#include<conio.h>void main(){ int a,b,c; clrscr(); printf("Enter numbers:"); scanf("%d %d %d",&a,&b,&c); if ((a>=b)&&(a>=c)) { if (b>=c) { printf("\\nDesc : %d %d %d",a,b,c); printf("\\nAsc : %d %d %d",c,b,a); } else { printf("\\nDesc : %d %d %d",a,c,b); printf("\\nAsc : %d %d %d",b,c,a); } } else if ((b>=a)&&(b>=c)) { if (a>=c) { printf("\\nDesc : %d %d %d",b,a,c); } } else { if (b>=a) { printf("\\nDesc : %d %d %d",c,b,a); printf("\\nAsc : %d %d %d",a,b,c); } else { printf("\\nDesc : %d %d %d",c,a,b); printf("\\nAsc : %d %d %d",b,a,c); } } getch();}
1356.

Computer system

Answer» Hiii
1357.

Given boolen function AD+CD+AB

Answer» Please ask question with complete information.
1358.

Write a simple python program to assign same value to multiple variables

Answer»
1359.

Defferentiate between VoIP and IRC

Answer» Some experts argue, however, that VoIP specifically refers to sending voice traffic over an IP network. In contrast, IP telephony is a broader umbrella term that refers to any telephone-type communication service carried over IP -- this could include faxing, text messaging and more.
1360.

Program of fabannaci series

Answer»
1361.

Program of Armstrong number

Answer» Which gate produce output 1 when inputs are 1,0,1
1362.

Flow chart for check whether a number is positive negative or zero.

Answer»
1363.

Write an algorithm to find square of a number

Answer»
1364.

Find the invalid identifier from the following a) true b) For c)_bonus d)first name

Answer» B<br>option b
1365.

Define byte

Answer» Byte is a unit of digital information that most commonly consists of eight bits .<br>Byte is an Unit of storage, which is equivalent to 8 bits
1366.

What is RAM and ROM? How are they alike?How are they different? What are EEPROM, PROM, AND EPROM?

Answer»
1367.

Obtain truth table f = w`xy +wx`y + wxy

Answer»
1368.

Statements in Python are executed _______ while working with a sequence construct

Answer» statements
1369.

Write a program to substance small number from large number and display the difference

Answer»
1370.

Lalit is a gaming programmee

Answer»
1371.

What\'s is gateway

Answer» The gateway converts information, data or other communications from one protocol or format to another. A gateway is a network node used in telecommunications that connects two networks with different transmission protocols together.
1372.

Write a c++ program for arranging number input by the usersin ascending order.

Answer»
1373.

What is Apk

Answer»
1374.

Write a program on swapping of two variables by call by value.

Answer»
1375.

Write a program to calculate the area of triangle as well as circle using if else

Answer»
1376.

WAP TO PRINT THE SECOND DINGLE OF MATRIX

Answer»
1377.

What is mean by index of an element

Answer» All properies of that element
1378.

How we degine a program

Answer»
1379.

Output questions of structure

Answer»
1380.

Limitations of functions in c++

Answer»
1381.

Program to calculate cube of a no. Using function

Answer»
1382.

Why do we use function?

Answer»
1383.

Any student from jammmu and kashmir

Answer»
1384.

Why cbse guide do not have ncert solution on our ncert book

Answer»
1385.

Write a program to print 5 star?

Answer» #include<Iostream>#include<conio.h>Void main(){ cout<<"to print 5 star"\\n; return0;}
1386.

What is oops

Answer»
1387.

What is the basic algorithm and program for number series c++ using functions

Answer»
1388.

Difference between "do while "and "while"operator

Answer» \tBASIS FOR COMPARISONWHILEDO-WHILEGeneral Formwhile ( condition) { statements; //body of loop }do{ . statements; // body of loop. . } while( Condition );Controlling ConditionIn \'while\' loop the controlling condition appears at the start of the loop.In \'do-while\' loop the controlling condition appears at the end of the loop.IterationsThe iterations do not occur if, the condition at the first iteration, appears false.The iteration occurs at least once even if the condition is false at the first iteration.Alternate nameEntry-controlled loopExit-controlled loopSemi-colonNot usedUsed at the end of the loop\t
1389.

Program of tic TAC toe

Answer»
1390.

Different between continue and break statement

Answer»
1391.

what is network? what are the type of networks?

Answer»
1392.

Write a program to enter a character and check whether it is alphabet,uppercase or a digit.

Answer»
1393.

Output of the program- to find the transpose of a matrix

Answer»
1394.

What is c++? Application

Answer»
1395.

Program to find largest number in array

Answer»
1396.

Please explian computer science gets function

Answer»