Home

Designed for school students & undergraduate entrance aspirants preparing for board exams, NEET, JEE and more.

JEE (Mains & Adv)NEET (UG)CBSE BoardISC BoardUP BoardCUET

Built for graduates & professionals targeting competitive exams — UPSC, CAT, GMAT, GRE, IELTS, banking & more.

GREGMATCATUPSCIBPSIELTSTOEFLSATACT

Core school & undergraduate subjects aligned with CBSE, ISC, UP Board, NEET and JEE syllabi.

PracticeMock TestsResources

School & Entrance Prep

Board Exams, NEET, and JEE Question Bank • 817 questions

Advanced Filters

Class XIICBSE 2025
Single
informatics-practicesSocietal Impacts1 Mark

______ is the attempt to acquire sensitive information such as usernames, passwords and credit card details by concealed as a trustworthy entity in an electronic communication.

Prof. Sarita Gupta

Options:

Pharming

Phishing

Class XIICBSE 2025
Single
informatics-practicesSocietal Impacts2 Marks

Give two examples of e-waste.

Prof. Sarita Gupta

Class XIICBSE 2025
Single
informatics-practicesDatabase Query Using Sql1 Mark

Which of the following query will remove a column from a table?

Prof. Sarita Gupta

Options:

DELETE COLUMN column_name;

DROP COLUMN column_name;

Class XIICBSE 2025
Single
informatics-practicesSocietal Impacts1 Mark

Legal term to describe the rights of a creator of original creative or artistic work is:

Prof. Sarita Gupta

Options:

Copyright

Copyleft

Class XIICBSE 2025
Single
informatics-practicesDatabase Query Using Sql2 Marks

Predict the output: SELECT POW(5, 3);

Prof. Sarita Gupta

Class XIICBSE 2025
Single
informatics-practicesDatabase Query Using Sql2 Marks

Give the difference between drop and delete command.

Prof. Sarita Gupta

Class XIICBSE 2025
Single
informatics-practicesDatabase Query Using Sql1 Mark

In SQL, which of the following types of table constraints will prevent the entry of duplicate rows?

Prof. Sarita Gupta

Options:

Unique

Distinct

Class XIICBSE 2025
Single
informatics-practicesDatabase Query Using Sql1 Mark

Which operator can take wild card characters for query condition?

Prof. Sarita Gupta

Options:

BETWEEN

LIKE

Class XIICBSE 2025
Single
informatics-practicesData Handling And Visualization1 Mark

Which of the following attribute returns index, column labels of dataframe?

Prof. Sarita Gupta

Options:

labels

axis

Class XIICBSE 2025
Single
informatics-practicesDatabase Query Using Sql1 Mark

Identify the most appropiate INSERT query from the following:

Prof. Sarita Gupta

Options:

INSERT INTO Persons('xxx1', 'yyy1');

INSERT INTO Persons (LastName, FirstName) Values ('xxx', 'yyy');

Class XIICBSE 2025
Single
informatics-practicesSocietal Impacts2 Marks

Explain copyright infringement.

Prof. Sarita Gupta

Class XIICBSE 2025
Single
informatics-practicesDatabase Query Using Sql2 Marks

Write the SQL query to display the month from the date '2024-10-23'.

Prof. Sarita Gupta

Class XIICBSE 2025
Single
informatics-practicesIntroduction To Computer Networks2 Marks

Define MAC address.

Prof. Sarita Gupta

Class XIICBSE 2025
Single
informatics-practicesData Handling And Visualization2 Marks

A dataframe is created using dictionary as given below. Write the code to create the same. d={'Name':['Ram','Shyam','Sita'],'Marks':[90,80,70]}

Prof. Sarita Gupta

Class XIICBSE 2025
Single
informatics-practicesSocietal Impacts1 Mark

Which of the following is not a type of cyber crime?

Prof. Sarita Gupta

Options:

Data theft

Installing antivirus for protection

Class XIICBSE 2025
Single
informatics-practicesSocietal Impacts1 Mark

An organization purchases new computers every year and dumps the old ones into the local dumping yard. Write the name of the most appropriate category of waste that the organization is creating every year, out of the following options:

Prof. Sarita Gupta

Options:

Solid Waste

Commercial Waste

Class XIICBSE 2025
Single
informatics-practicesDatabase Query Using Sql1 Mark

Consider the table with structure as: Student(ID, name, dept_name, tot_cred). In the above table, which attribute will form the primary key?

Prof. Sarita Gupta

Options:

name

dept_name

Class XIICBSE 2025
Single
informatics-practicesSocietal Impacts1 Mark

A software that can be freely accessed and modified is called

Prof. Sarita Gupta

Options:

Package Software

Open Source Software

Class XIICBSE 2025
Single
informatics-practicesDatabase Query Using Sql1 Mark

Logical operator used in SQL are:

Prof. Sarita Gupta

Options:

AND, OR, NOT

in, not in

Class XIICBSE 2025
Single
informatics-practicesData Handling And Visualization1 Mark

What is the purpose of using ndim attribute in Series?

Prof. Sarita Gupta

Options:

It returns the number of elements in the given data structure.

It returns the Series object in the form of an ndarray.

Class XIICBSE 2025
Single
informatics-practicesData Handling And Visualization1 Mark

To display the 3rd, 4th and 5th columns from the 6th to 9th rows of a dataframe DF, you can write-

Prof. Sarita Gupta

Options:

DF.loc[6:9,3:5]

DF.loc[6:10,3:6]

Class XIICBSE 2025
Single
informatics-practicesIntroduction To Computer Networks1 Mark

Which amongst the following is not an example of a browser?

Prof. Sarita Gupta

Options:

Chrome

Firefox

Class XIICBSE 2025
Single
informatics-practicesData Handling And Visualization1 Mark

Assertion (A): The rename() requires copy argument to make changes in the original dataframe. Reason (R): To access values using positional index we can use DF.iloc

Prof. Sarita Gupta

Options:

Both A and R are true and R is the correct explanation for A

Both A and R are true and R is not the correct explanation for A

Class XIICBSE 2025
Single
informatics-practicesIntroduction To Computer Networks1 Mark

Assertion (A): Star topology is a network topology in which each network component is physically connected to a central device such as a router, hub or switch. Reason (R): Failure of one node will affect whole network in star topology.

Prof. Sarita Gupta

Options:

Both A and R are true and R is the correct explanation for A

Both A and R are true and R is not the correct explanation for A

Class XIICBSE 2026
Single
informatics-practicesData Handling And Visualization1 Mark

Which of the following is not a correct method to create a DataFrame?

Prof. Sarita Gupta

Options:

pd.DataFrame({'Name': ['A','B']})

pd.DataFrame([('A', 10), ('B',20)], columns=['Name','Marks'])

Class XIICBSE 2026
Single
informatics-practicesIntroduction To Computer Networks1 Mark

Google Chrome, Mozilla Firefox, and Microsoft Edge are examples of which type of software?

Prof. Sarita Gupta

Options:

Web Browser

Search Engine

Class XIICBSE 2026
Single
informatics-practicesDatabase Query Using Sql1 Mark

What will be the result of the following SQL query? SELECT ROUND(418678.6010, -2);

Prof. Sarita Gupta

Options:

418678.60418678.60

418700418700

Class XIICBSE 2026
Single
informatics-practicesIntroduction To Computer Networks1 Mark

A ______ is a networking device that connects two or more networks and forwards data packets between them, based on their IP addresses.

Prof. Sarita Gupta

Options:

Gateway

Router

Class XIICBSE 2026
Single
informatics-practicesSocietal Impacts1 Mark

While applying for a job, Sohan's employer searches his name online and finds old posts with offensive language. He is rejected. This shows the impact of:

Prof. Sarita Gupta

Options:

Cyber Crime

Digital Footprint

Class XIICBSE 2026
Single
informatics-practicesSocietal Impacts1 Mark

Expand the following: (i) FOSS (ii) URL

Prof. Sarita Gupta

We Value Your Privacy

Edvaya uses cookies to enhance your learning experience, analyze platform usage, and provide personalized content. You can customize your preferences or accept all cookies to continue.

By continuing, you agree to our Cookie Policy and Privacy Policy