STUDENT

INFORMATICS PRACTICES
Total Q: 21
Time: 21 Mins

Q 1.

For web pages where the information is changed frequently, for example, stock prices, weather information which out of the following options would you advise ?

Q 2.

_______is the practice of taking someone else's work or ideas and passing them off as one's own:

Q 3.

CSV stands for:

Q 4.

With reference to SQL, identify the invalid data type.

Q 5.

State whether the following statement is True or False: The index of a Series must be unique.

Q 6.

In which topology each communicating device is connected with every other device in the network

Q 7.

Linux, MySQL and Mozilla Firefox software come under_______ category.

Q 8.

What is a relation in SQL?

Q 9.

You were not able to create the IP project, therefore you downloaded a project from the internet and submitted it to your teacher by your name. This wrong/unethical act is considered as __________

Q 10.

Which of the following is not a network topology :

Q 11.

Which of the following Python statements is used to change a column label in a DataFrame, df?

Q 12.

Expand the term DBMS.

Q 13.

What will be the output of the following program ?
import pandas as pd
x=6
S1=pd.Series(x,index=[1,2,4,6,8,9])
print(S1)

Q 14.

State whether the following statement is True or False:
The 'BETWEEN' operator in SQL is inclusive, meaning it includes the starting and ending values in the range.

Q 15.

State whether the following statement is True or False:
We can add a row in DataFrame using iloc.

Q 16.

What is a domain in SQL?

Q 17.

Fill in the Blank
Boolean indexing in Pandas DataFrame can be used for _______.

Q 18.

The ____________command can be used to makes changes in the rows of a table in SQL.

Q 19.

Assertion (A) : In order to be able to use Python's data visualization library, we need to import the pyplot module from matplot library.
Reason (R) : The pyplot module houses a variety of functions required to create and customize charts or graphs.

Q 20.

Which of the following command is used to display first ten rows of a DataFrame 'DF' ?

Q 21.

In Python Pandas, head(n) method returns the first n members of the series. What is the default value of n ?