πŸ“š

CBSE Question Paper Analyzer

πŸ“‹ Topic Selection
Menu
Filters

Browse & Select Questions

537 questions
Selected Questions 0
Your cart is empty β€” click any question to add it
Showing 1-10 of 537
Short Answer 2M Easy Stack – Data Structure πŸ“œ 2022 #905 βž• 06-05-2026

"Stack is a linear data structure which follows a particular order in which the operations are performed."

What is the order in which the operations are performed in a Stack ?

Name the List method/function available in Python which is used to remove the last element from a list implemented stack.

Also write an example using Python statements for removing the last element of the list.

Short Answer 2M Easy Network Protocols πŸ“œ 2022 #906 βž• 06-05-2026

(i) Expand the following :

VoIP, PPP

(ii) Riya wants to transfer pictures from her mobile phone to her laptop. She uses Bluetooth technology to connect two devices. Which type of network (PAN/LAN/MAN/WAN) will be formed in this case ?

Short Answer 2M Easy Relational Data Model πŸ“œ 2022 #907 βž• 06-05-2026

Differentiate between the terms Attribute and Domain in the context of Relational Data Model.

Output Prediction 2M Easy Python-MySQL Connectivity πŸ“œ 2022 #908 βž• 06-05-2026

Consider the following SQL table MEMBER in a SQL Database CLUB :

Table : MEMBER
M_IDNAMEACTIVITY
M1001AminaGYM
M1002PratikGYM
M1003SimonSWIMMING
M1004RakeshGYM
M1005AvneetSWIMMING

Assume that the required library for establishing the connection between Python and MYSQL is already imported in the given Python code. Also assume that DB is the name of the database connection for table MEMBER stored in the database CLUB.

Predict the output of the following code :

MYCUR = DB.cursor()

MYCUR.execute ("USE CLUB")

...
Output Prediction 2M Easy SQL – Aggregate Functions and Grouping πŸ“œ 2022 #909 βž• 06-05-2026
a) to (
d) based on the table VACCINATION_DATA given below :
TABLE : VACCINATION_DATA
VIDNameAgeDose1Dose2City
101Jenny272021-12-252022-01-31Delhi
102Harjot552021-07-142021-10-14Mumbai
103Srikanth432021-04-182021-07-20Delhi
104Gazala752021-07-31NULLKolkata
105Shiksha322022-01-01NULLMumbai

(a) SELECT Name, Age FROM VACCINATION_DATA WHERE Dose2 IS NOT NULL AND Age > 40;

(b) SELECT City, COUNT(*) FROM VACCIN

...
Output Prediction 2M Easy SQL – Joins πŸ“œ 2022 #910 βž• 06-05-2026
a) and (
b) based on the following two tables DOCTOR and PATIENT belonging to the same database :
Table : DOCTOR
DNODNAMEFEES
D1AMITABH1500
D2ANIKET1000
D3NIKHIL1500
D4ANJANA1500
Table : PATIENT
PNOPNAMEADMDATEDNO
P1NOOR2021-12-25D1
P2ANNIE2021-11-20D2
P3PRAKASH2020-12-10NULL
P4HARMEET2019-12-20D1

(a) SELECT DNAME, PNAME FROM DOCTOR NATURAL JOIN PATIENT;

(b) SELECT PNAME, ADMDATE, FEES FROM P

...
Short Answer 2M Easy Relational Data Model πŸ“œ 2022 #911 βž• 06-05-2026

Differentiate between Candidate Key and Primary Key in the context of Relational Database Model.

OR

Consider the following table PLAYER :

Table : PLAYER
PNONAMESCORE
P1RISHABH52
P2HUSSAIN45
P3ARNOLD23
P4ARNAV18
P5GURSHARAN42

(a) Identify and write the name of the most appropriate column from the given table PLAYER that can be used as a Primary key.

(b) Define the term Degree in relational data model. What is the Degree of the given table PLAYER ?

Programming 3M Medium Stack – Data Structure πŸ“œ 2022 #912 βž• 06-05-2026

Write the definition of a user defined function PushNv(N) which accepts a list of strings in the parameter N and pushes all strings which have no vowels present in it, into a list named NoVowel.

Write a program in Python to input 5 words and push them one by one into a list named All.

The program should then use the function PushNV() to create a stack of words in the list NoVowel so that it stores only those words which do not have any vowel present in it, from the list All.

Thereafter, pop each word from the list NoVowel and display the popped word. When the stack is empty display the message

...
SQL Query 3M Medium SQL – DDL Commands πŸ“œ 2022 #913 βž• 06-05-2026

(i) A SQL table ITEMS contains the following columns :

INO, INAME, QUANTITY, PRICE, DISCOUNT

Write the SQL command to remove the column DISCOUNT from the table.

(ii) Categorize the following SQL commands into DDL and DML:

CREATE, UPDATE, INSERT, DROP

Short Answer 3M Medium SQL – DDL Commands πŸ“œ 2022 #914 βž• 06-05-2026

Rohan is learning to work upon Relational Database Management System (RDBMS) application. Help him to perform following tasks :

(a) To open the database named "LIBRARY".

(b) To display the names of all the tables stored in the opened database.

(c) To display the structure of the table "BOOKS" existing in the already opened database "LIBRARY".

Showing 1-10 of 537