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.

601.

Please give me some easy difference between impact and non impact printer:::

Answer» \tImpact PrinterNon Impact PrinterProduces characters and graphics on a piece of paper by striking it is called impact printer.A type of printer that produces characters and graphics on a piece of paper without striking.It prints by hammering a set of metal pin or character set.Printing is done by depositing ink in any form.Electromechanical devices are usedNo electromechanical device is used.Faster speeds around 250 words per second.Slower speeds around 1 page per 30 seconds.Have banging noise of needle on paperWorks silentlyDot-matrix printer, Daisy wheel printers, line printer are examples.inkjet printers, photo printers, laser printers are examples.\t
602.

Give me the detailed information for primary key.

Answer»
603.

What is the advantages and disadvantages of compiler in python?

Answer»
604.

In a table , a row contains field names then it would be counted as a row to find cartesian product

Answer»
605.

Any IP student is here

Answer» yes I am
606.

am vishal am new friend

Answer» Iam your friend
607.

Difference between text field and label?

Answer» In terms of Visual Studio Windows Form Applications, A Label is a control which is used to display some text onto the form whereas, A TextBox control is used to input data from the user.
608.

Name 4 Input devices.

Answer»
609.

What are the difference between selection and iteration statement

Answer» Selection determines which path a program takes when it is running. Iteration is the repeated execution of a section of code when a program is running. All programs use one or more of these constructs. The longer and more complex the program, the more these constructs will be used repeatedly.
610.

Write a program to print first n natural number and their sum

Answer»
611.

Write a program to compute simple interest

Answer»
612.

Write a program that accepts radius of a circle and prints its area

Answer»
613.

What is pda

Answer»
614.

What are different types of computer ?

Answer»
615.

How to write Java coding and how to make program

Answer»
616.

Write a program that reverses an array of integers(in place )

Answer»
617.

What do you mean by computer security ? Explain the possible solution to spam .

Answer»
618.

What will happen if we don\'t specify the size of a character field.(Simple queries in SQL)

Answer»
619.

When we will get the study material of ip class 11th...

Answer» Recently
620.

Swing control explain

Answer»
621.

Is a string containing a single character same as a char

Answer» Yes<br>no string is collection of characters
622.

What do you mean by security of a computer system

Answer»
623.

Program to print multiplication table in for loop or while loop method

Answer»
624.

Is data_rec is identifier

Answer»
625.

Ch 3 Getting Started with programming using IDE

Answer» What u want to ask from this chapter
626.

What is LAMP?

Answer» Linux Apache MySQL Python<br>LAMP is an open source Web development platform that uses Linux as the operating system, Apache as the Web server, MySQL as the relational database management system and PHP as the object-oriented scripting language.
627.

Write a sql query to showToday, the date is .

Answer» Select curdate( ) ;<br>Write a sql query to show Today, the date is (currentdate)
628.

Why is dictionary termed as an unordered collection of objects?

Answer»
629.

Is CBSE syllabus will Change from Next Year

Answer»
630.

I am Unable to Install My SQL in My Tablet Why

Answer» I Don\'t have answer Please try to give me answer
631.

Plz send class 11 ip practicals

Answer» There are all over 75 or 80 question i have done
632.

Difference between primary key and candidate key

Answer» <th>Primary Key</th> <th>Candidate Key</th> <th>Primary key is a minimal super key. So there is one and only one primary key in a relation.</th> <th>While in a relation there can be more than one candidate key.</th> <th>Any attribute of Primary key can not contain NULL value.</th> <th>While in Candidate key any attribute can contain NULL value.</th> <th>Primary key can be optional to specify any relation.</th> <th>But without candidate key there can’t be specified any relation.</th> <th>Primary key specifies the important attribute for the relation.</th> <th>Candidate specifies the key which can qualify for primary key.</th> <th>Its confirmed that a primary key is a candidate key.</th> <th>But Its not confirmed that a candidate key can be a primary key.</th> \tS.NO1.2.3.4.5.\t
633.

Net beans ide codings

Answer»
634.

Difference between MySQL & Database.

Answer» SQL stands for Structured Query Language. It\'s a standard language for accessing and manipulating databases. MySQL is a database management system, like SQL Server, Oracle, Informix, Postgres, etc. MySQL is an RDMS (Relational Database Management System).
635.

IPO cycle

Answer» IPO means input output process
636.

Types of variable

Answer»
637.

Select Mod(Age,5) from club where ***=f

Answer»
638.

Types of errors

Answer» 1-Compiler time error- syntax error, sumantic error2-Run Time error3-logical error
639.

My sql

Answer» Mysql is an relational database management system ( RDBMS ) based on structured querry language.<br>Yeah! How can i help u in my sql?
640.

Ip(information practices) ke main chapters konse h

Answer» 1 -2 aur programming and sql
641.

Write 2 pnts of diffrence between jCheckbox and jRadiobutton

Answer»
642.

What is column alias ?

Answer» By using AS we can change the name of the column known as column alias
643.

Difference between dbms or rdmas

Answer» \tDBMSRDBMSDBMS stores data as file.RDBMS stores data in tabular form.Data elements need to access individually.Multiple data elements can be accessed at the same time.No relationship between data.Data is stored in the form of tables which are related to each other.Normalization is not present.Normalization is present.DBMS does not support distributed database.RDBMS supports distributed database.It stores data in either a navigational or hierarchical form.It uses a tabular structure where the headers are the column names, and the rows contain corresponding values.It deals with small quantity of data.It deals with large amount of data.Data redundancy is common in this model.Keys and indexes do not allow Data redundancy.It is used for small organization and deal with small data.It is used to handle large amount of data.It supports single user.It supports multiple users.Data fetching is slower for the large amount of data.Data fetching is fast because of relational approach.The data in a DBMS is subject to low security levels with regards to data manipulation.There exists multiple levels of data security in a RDBMS.Low software and hardware necessities.Higher software and hardware necessities.Examples: XML, Microsoft Access, etc.Examples: MySQL, PostgreSQL, SQL Server, Oracle, etc.\t
644.

Why MyCBSE Guide don\'t provide Sample Paper of I.P. classs 11

Answer» Nd also no provide new topics
645.

Differentiate between break and continue statement

Answer» <th>Basis for Comparison</th> <th>break</th> <th>continue</th> \t\t\tTaskIt terminates the execution of remaining iteration of the loop.It terminates only the current iteration of the loop.Control after break/continue\'break\' resumes the control of the program to the end of loop enclosing that \'break\'.\'continue\' resumes the control of the program to the next iteration of that loop enclosing \'continue\'.CausesIt causes early termination of loop.It causes early execution of the next iteration.Continuation\'break\' stops the continuation of loop.\'continue\' do not stops the continuation of loop, it only stops the current iteration.Other uses\'break\' can be used with \'switch\', \'label\'.\'continue\' can not be executed with \'switch\' and \'labels\'.\t
646.

Any 1 tell me about informatics practices new syllabus

Answer»
647.

This all chapters are not matching with new syllabus please update 2019-2020

Answer»
648.

What is blu ray disk

Answer» Blu-ray or Blu-ray Disc (BD) is a digital optical disc data storage format. It was designed to supersede the DVD format, and is capable of storing several hours of video in high-definition (HDTV 720p and 1080p) and ultra high-definition resolution (2160p). The main application of Blu-ray is as a medium for video material such as feature films and for the physical distribution of video games for the PlayStation 3, PlayStation 4, and Xbox One. The name "Blu-ray" refers to the blue laser (actually a violet laser) used to read the disc, which allows information to be stored at a greater density than is possible with the longer-wavelength red laser used for DVDs.
649.

Who was the first Attorney General of India

Answer» \tAttorney General of India (Name) Tenure\xa01.\xa0M.C. Setalvad (longest term)\t
650.

What is the significance of System Bus

Answer»