18 solutions available
Question 9Predict the output of the following query :SELECT LCASE(MONTHNAME('2023-03-05'));MayMarchmaymarch
Question 10Which of the following command will show the last 3 rows from a Pandas Series named NP ?NP.Tail()NP.tail(3)NP.TAIL(3)All of the above
Question 11Which clause is used in the query to place the condition on group in MySQL?WHEREHAVINGGROUP BYBoth (i) and (ii)
Question 12Which of the following codes will display the total number of rows in the DataFrame stud?print (len(stud.axes[0]))print (stud.len(0)...
Question 13By restricting the server and encrypting the data, a software company's server is unethically accessed in order to obtain sensitive...
Question 14In SQL, the equivalent of UCASE() is :UPPERCASE()CAPITALCASE()UPPER()TITLE()
Question 15Collection of hyper linked documents available on the internet is known as ............... .WebsiteWebpageWeb ServerWeb Hosting
Question 16............... is a non-profit organization that aims to build a publicly accessible global platform where a range of creative and...
Question 17Assertion (A). MODEM stands for modulator-demodulator.Reasoning (R). It is a computer hardware device that converts data from a digital...
Question 18Assertion (A). To use the Pandas library in a Python program, one must import it.Reasoning (R). The only alias name that can be used with...
Question 24Give the output:import pandas as pd name = ['Rahul','Aman','Karan'] p=pd.Series (name, index= [0,1,2] ) p1 = p.reindex ([1,2,3]) print(p)...
Question 28(a)A relation Vehicles is given...
Question 29(b)Mention any three health hazards associated with inappropriate and excessive use of gadgets.
Question 30Consider the dataframe SHOP given below: Item Qty City Price 101 Biscuit 100 Delhi 10 102 Jam 110...
Question 32Ekam, a Data Analyst with a multinational brand has designed the DataFrame df that contains the four quarter’s sales data of different...
Question 33(a)Consider the following table named...
Question 35(a)The heights of 10 students of eighth grade are given below :Height_cms = [145, 141, 142, 142, 143, 144, 141, 140, 143, 144] Write...
Question 35(b)Write Python code to create a Line graph using the list of elements x and y. Set ylabel as "marks" and xlabel as "names". The title of...