1 - 5TYBCOM CSA1 RegATKT QBank Exam 6040 SeptOct24
1 - 5TYBCOM CSA1 RegATKT QBank Exam 6040 SeptOct24
MCQs
A byte consists of ………. bits.
a) 2
b) 4
c) 8
d) 16
The transmission medium that carries the message is referred to as the ………….
a) Protocol
b) Gateway
c) Communication channel
d) Receiver
1
Which of these domains is restricted to qualified organisations?
a) .com
b) .org
c) .net
d) .edu
The format for an absolute cell reference would look like ………
a) #A#1
b) $A$1
c) &A&1
2
d) @A@1
3
The SUBTOTAL option button is available in ……….
a) Data Menu
b) Insert Menu
c) Home Menu
d) View Menu
4
b) YEAR
c) DATE
d) NOW
Which toolbar will you use for quick, convenient, one-click access to frequently used
Excel commands?
a) Title bar
b) Status bar
5
c) Quick access toolbar
d) Mini toolbar
6
A record in MongoDB is a ………...
a) Document
b) Table
c) Application
d) Database
7
What is the use of the $limit operator in MongoDB?
a) To sort the documents in a collection
b) To group documents in a collection based on a specified condition
c) To limit the number of documents returned by a query
d) None of the above
True or False :
When data is sorted, some rows may be hidden.
Web pages are created by using HTML. T
To calculate the monthly payment to be made to pay off a loan, we use PMT( )
function.
The term ‘Data Communication System’ refers to electronic systems that transmit data
over distances.
8
The page numbers can be assigned using Header/Footer option.
The Internet evolved from the ARPANET.
The domain name abbreviation .com stands for a non-profit organization.
The default cell reference is an absolute cell reference.
The base value of hexadecimal number system is 16.
The base of the decimal number system is 10.
The acronym UTP stands for Unshielded Twisted Pair.
TCP/IP protocol has 7 layers.
Red hat is a type of hackers.
Quick access toolbar is used for quick, convenient, one-click access to frequently used
Excel commands.
OSI model has 7 layers.
Network topology refers to the arrangement of computers.
More than one file can be attached with an email.
Instant messaging is an application of computer network.
HTTP is a protocol at the application layer.
Fiber optic cables are cheaper than coaxial cables.
Facebook is search engine.
Bus topology is suitable for a local area network.
Binary number system is a positional number system.
AutoCorrect and AutoComplete features are the same.
Application layer contains protocols that allow the users to access the networks.
An e-mails can be sent with attachments.
An absolute cell reference uses two $ signs.
A workbook cannot contain maximum three worksheets.
A workbook can contain worksheets and chart sheets.
A network can be used to share hardware and software.
A LAN is larger than a MAN.
A group of 4 bits is called a byte.
A function must have at least one argument in MS-Excel.
A formula may start with any symbol.
A formula can contain references to other cells.
A browser is word-processing software.
A browser is not a word processing software.
=SQRT(-9) will generate an error.
=ROUND(21.5,-1) will return 20
Indexes support the efficient resolution of queries
9
In sorting document 1 is used for descending order while -1 is used for ascending
order.
In MongoDB a document is a set of key-value pairs.
findOne() method, that returns only one document.
drop() method used to delete database.
Documents have dynamic schema.
A document is a set of key-value pairs.
$lt stands for less than in MongoDB.
$gt stands for greater than equal.
10
Write short notes on (any three) :
Star Topology
Search engines
Ring Topology
Peer-to-Peer Network.
Internet
Hacking
Email
DSL
Cybercrime
Coaxial Cable
Cable Internet
Bus Topology
Blogs
doctor_Details
_id patient_name address disease gender
doctor_name age
1 Rajesh Teena 25 Kalyan Maleria true
2 Mangesh Ratan 10 Thane Dengu true
3 Teena Meena 27 Kalyan Maleria false
Explain the following (any three) built-in methods with purpose and syntax or purpose
and example in MongoDB:
update( )
sort( )
limit( )
11
insertOne( )
insertMany()
insert( )
find( )
dropDatabase( )
drop( )
deleteOne( )
deleteMany( )
createCollection( )
createIndex( )
There exists a collection called PRESENT containing the columns student name
(SNAME, string), class (CLASS, string),division (DIV, string) and number of lectures
attended (TLEC, Integer).
There exists a table SALES containing columns Salesman Number (SNO, integer),
Salesman’s Name (SNAME, string), Gender (MALE, boolean) and Sales Amount
(SAMT, decimal).
12
1) To create index for GENDER field.
2) To display list of documents where SAMT is above 235000.00
3) To update SAMT of Female employees to 98000.00
authors
_id title price publisher
author_name male dob
1 C++ Reena false 1984-10-10 250.00 Vipul
2 Java Manish true 1985-10-10 200.00 Manan
3 Python Pankaj true 1986-10-10 320.00 Sheth
There exists a collection called COLLEGE having the following columns Roll Number
(RNO, integer), Students Name (SNAME, string), Fees Paid (FEES, decimal) and Date
of Admission (DA, date).
13
(sname: Nitin, fees : 300.00, da : 2021-08-08),
(sname: Rajesh, fees : 400.00, da : 2021-12-25)
3) For roll number 75, change the name of the student to ‘Rajesh’.
There exists a collection STORE having the columns Warehouse Name (WNAME,
character), Item Number (INO, integer, primary key), Item Name (INAME, character),
Unit Price (UPRICE, integer), Quantity (QUAN, integer).
Write query to create following three embedded documents with fields in collection
RAILWAY
1. _id - integer
2. passenger_name – string
3. train_details :
a. train_name – string
14
b. res_status –Boolean
c. dor (date of reservation) – date)
d. ticket_price - decimal
4. age - int
train_details
_id passenger_name age
train_name res_status dor ticket_price
1 Rajesh Deccan True 2023-10-09 150.00 25
2 Mangesh Rajdhani False 2023-10-09 100.00 10
3 Teena Deccan True 2023-10-10 120.00 27
There exists a table SALES containing columns Salesman Number (SNO, integer),
Salesman’s Name (SNAME, string), Male (MALE, Boolean) and Sales Amount (SAMT,
decimal).
Write MongoDB queries for the following:
1) Display documents with SNAME and SAMT fields only of the first five salesmen
from the SALES table.
2) Display documents with SNAME and SAMT fields only of the next five salesmen
excluding first three documents from the SALES table.
3) Display documents where SNAME are ‘AJAY’, ‘NITIN’, ‘RAJESH’, ‘PANKAJ’
from the SALES table.
15
2) To display all documents from HOSPITAL with an ascending order of HNAME
3) To display all documents from HOSPITAL with descending order of HNAME
4) To display first 3 documents from HOSPITAL
5) To display next 4 by ignoring first 3 documents from HOSPITAL
To delete all documents where HNAME is WADIA from HOSPITAL
16
i) Arrange data in the alphabetic order of AREA and further in the ascending
order of AMT.
ii) Arrange the data in the alphabetic order of Name and further in the descending
order of AMT.
A B C D E F
1 NAME SALES COMMISSION DISCOUNT NET TAX
2 ASIF 45000
3 REHANA 60000
4 SALMAN 25000
5 ANWAR 70000
6 AAMIR 20000
17
i) Commission as 6% of the Sales or 5000 whichever is more in column C.
ii) Discount as 12% of the Sales or 4000 whichever is less in column D.
iii) Net as Sales- Commission – Discount in column E.
iv) Tax as 10% of Net in column F.
In the following worksheet the cost of machinery is entered in cell B2, number of years
is entered in B3 and rate of depreciation is entered in cell B4
A B C D E F
1 YEARS DEP WDV
2 COST 600000 1
3 YEARS 5 2
4 RATE 10% 3
5 4
6 5
Write the steps to obtain the year wise depreciation DEP and written down value WDV
in columns E and F where depreciation is computed using reducing balance method.
For the following spreadsheet obtain the Subtotals of the Salary Designation wise.
A B C D E
1 NAME DEPARTMENT AGE DESIGNATION SALARY
2 SALIM HR 30 MANAGER 45000
3 ANANT ACCOUNTS 23 CLERK 20000
4 RAHUL HR 21 CLERK 25000
5 AANA ACCOUNTS 29 MANAGER 50000
6 RAJNI ACCOUNTS 24 CLERK 20000
7 ASHA IT 30 MANAGER 35000
For the following spreadsheet obtain the Pivot table showing total profit & maximum
profit city wise in column E.
A B C
1 NAME CITY PROFIT
2 RAHIL BANGALORE 55000
3 JAI MUMBAI 70000
4 RUSHIT NASIK 59000
5 FARHAN BANGALORE 64000
6 VAIBHAV NASIK 55000
7 ALI MUMBAI 74000
8 HUSSAIN BANGALORE 85000
18
For the following spreadsheet write steps to obtain the Subtotals of the fees paid class
wise
A B C D
1 ROLL NO NAME CLASS FEES PAID
For the following spreadsheet obtain the Subtotals of the Salary Department wise.
A B D E
1 Name Designation Department Salary
2 Asha Manager IT 55000
3 Rajni Clerk Accounts 9000
4 Aana Manager Accounts 45000
5 Rahul Clerk HR 8000
6 Anant Clerk Accounts 7500
7 Salim Manager HR 25000
19
a) Bonus of worker as 35% of the basic salary,
b) Tax paid as 9.30% of the basic salary and
c) Net Salary of the worker.
For the following spreadsheet obtain the Pivot table to find out department wise how
many peoples are working.
For the following spreadsheet obtain the Pivot table showing total sales and minimum
sales Region wise in column G.
A B C
1 Name Region Sales
2 Anamika North 4500
3 Fedro West 6000
4 Hanifa South 8000
5 Jay East 7000
6 Tushar West 9000
7 Salma South 5500
8 Vishal East 8000
20
Write steps to do the following in MS-Excel:
iii) Arrange the data in the alphabetic order of Name and further in the descending
order of amount.
iv) Arrange data in the alphabetic order of location and further in the ascending
order of amount.
A B C D E F
1 Years DEP WDV
2 Value 75000 1
3 Years 5 2
4 Rate 10% 3
5 4
6 5
Write the steps to obtain the year wise depreciation (DEP) and written down value
(WDV) in columns E and F where depreciation is computed using Reducing Balance
Method.
For the following spreadsheet write steps to obtain the Subtotals of the fees paid by
students course wise.
21
A B C D
1 Roll No Name Course Fees Paid
2 1 Asha BCOM 12500
3 2 Rajni BAF 22500
4 3 Aana MCOM 14000
5 4 Rahul BCOM 12500
6 5 Anant MCOM 14000
7 6 Durgesh BAF 22500
8 7 Parvati BBI 21500
SQRT()
ROUNDUP()
ROUND()
RATE( )
PV()
PMT()
NPER()
MAX( )
IPMT( )
22
MIN()
INT( )
FLOOR()
CEILING( )
AVERAGE( )
ABS()
Best of Luck
23