40 solutions available
Question 1A ............... is a device that connects the organization's network with the outside world of the Internet.HubModemGatewayRepeater
Question 2When e-waste such as electronic circuit boards are burnt for disposal, the elements contained in them create a harmful chemical called...
Question 3Copyright, Patent and Trademark comes under :Intellectual Property RightIndividual Property RightIndustrial Property RightNone of the above
Question 4Predict the output of the following query :SELECT MOD(9, 0);0NULLNaN9
Question 5Which of the following SQL functions does not belong to the Math functions category ?POWER()ROUND()LENGTH()MOD()
Question 6............... is not a FOSS tool.Libre OfficeMozilla FirefoxGoogle ChromePython
Question 7CSV stands for :Column Separated ValueClass Separated ValueComma Separated ValueNone of the above
Question 8Raj, a Database Administrator, needs to display the average pay of workers from those departments which have more than five employees. He...
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 11With reference to SQL, identify the invalid data type.DateIntegerYearMonth
Question 12In Python Pandas, while performing mathematical operations on series, index matching is implemented and all missing values are filled in...
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 19(a)Briefly explain the basic concepts of a web server and web hosting.
Question 19(b)Rati is doing a course in networking. She is unable to understand the concept of URL. Help her by explaining it with the help of...
Question 20The python code written below has syntactical errors. Rewrite the correct code and underline the corrections made.Import pandas as pd df =...
Question 21Consider the given SQL string :"12#All the Best!"Write suitable SQL queries for the following :(i) Returns the position of the first...
Question 22Predict the output of the given Python code :import pandas as pd list1 = [-10, -20, -30] ser = pd.Series(list1 * 2) print(ser)
Question 23Differentiate between the active digital footprint and passive digital footprints.
Question 24Complete the given Python code to get the required output as: Rajasthanimport ............... as pd di = { 'Corbett' : 'Uttarakhand',...
Question 25What are aggregate functions in SQL? Name any two.
Question 26(a)Based on the SQL table CAR_SALES, write suitable queries for the following :NUMBERSEGMENTFUELQT1QT21Compact...
Question 26(b)Predict the output of the following queries based on the table CAR_SALES given below :NUMBERSEGMENTFUELQT1QT21Compact...
Question 27Create a DataFrame in Python from the given list :[['Divya', 'HR', 95000], ['Mamta', 'Marketing' ,97000], ['Payal', 'IT', 98000],...
Question 28Write MySQL statements for the following :(i) To create a database named FOOD.(ii) To create a table named Nutrients based on the...
Question 29(a)Richa, recently started using her social media account. Within a few days, she befriends many people she knows and some that she does...
Question 29(b)Mention any three health hazards associated with inappropriate and excessive use of gadgets.
Question 30Consider the given DataFrame ‘Genre’ : typecode0FictionF1Non-fictionNF2DramaD3PoetryPWrite suitable Python statements for the following...
Question 31Preeti manages database in a blockchain start-up. For business purposes, she created a table named BLOCKCHAIN. Assist her by writing the...
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)Write suitable SQL queries for the following :(i) To calculate the exponent for 3 raised to the power of 4.(ii) To display current date...
Question 33(b)Kabir has created following table named exam :RegNoNameSubjectMarks1SanyaComputer...
Question 34XYZ Media house campus is in Delhi and has 4 blocks named Z1, Z2, Z3 and Z4. The tables given below show the distance between different...
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 suitable Python code to create 'Favourite Hobby' Bar Chart as shown below :Also give suitable python statement to save this chart.