Computer Science and Excel Fundamentals
A quiz covering computer science algorithms, networking, operating systems, and Microsoft Excel functions and operations.
Questions
How do you change column width to fit the contents?
- Single-click the boundary to the left of the column heading.
- Double-click the boundary to the right of the column heading.
- Press ALT and single-click anywhere in the column.
- None of the above.
What does the SUMIF function do?
- Adds all the numbers in a range of cells.
- Adds up cell values based on a condition.
- Returns a subtotal in a list or database.
- None of the above.
You can use a function to combine text from two cells into one cell. But you can use an operator to do the same thing. Which operator is that?
- & (ampersand)
- = (equal sign)
- (space)
- $ (Dollar sign)
Which function calculates depreciation at the same amount each year over an asset's useful life?
- DB (fixed-declining balance)
- DDB (double-declining)
- SLN (straight-line depreciation)
- None of the above.
What does the VLOOKUP function do?
- Looks up text that contains "v".
- Checks whether text is the same in one cell as in the next.
- Finds related records.
- None of the above.
Which function calculates your monthly mortgage payment?
- PMT
- NPER
- NV
- PV
The LEN function does what?
- Compares the content in two cells.
- Counts the numbers of characters in a cell.
- Deletes extra spaces in text.
- None of the above.
Which function will calculate the number of workdays between 6/9/2004 and 8/21/2004?
- WORKDAY
- WEEKDAY
- DATE
- NETWORKDAYS
You can use a function to combine text from two cells into one cell. But you can use an operator to do the same thing. Which operator is that?
- & (ampersand)
- (space)
- = (equal sign)
- $ (Dollar sign)
If I am given an infinite memory space, which algorithm will I use to sort a set of natural numbers with best time complexity?
- Merge sort
- Heap sort
- Counting sort
- Bubble sort
What is the best time complexity for Merge sort?
- n^2
- n
- logn
- nlogn
I have two 'bin's containing natural numbers (both equal size 'n'), and I am told to take out two numbers, one from each 'bin'. Each time I select the numbers, I find their summation. This process continues till the 'bin's are exhausted. I have to find out whether all such summations can be equal. With what best time complexity can I check whether this is possible or not?
- n^n
- nlogn
- n^2logn
- n^2
Which of the below media types hold the most information?
- Blu-ray
- CD
- DVD
- Floppy diskette
If I am given a list of numbers, what will be the best time complexity to find out the maximum number from the list?
- logn
- n
- n^2
- nlogn
Which of the below utilities allow you to view a drives partition information?
- Chkdsk
- Disk Management
- Device Manager
- Scandisk
What is the minimum memory requirements for Microsoft Windows XP?
- 32MB
- 64MB
- 128MB
- 256MB
If I have a linked list and a array, find the ratio of time complexity to find the index value in the array to the linked list (i.e. complexity to find index value in array / complexity to find index value in linked list)
- n:1
- n:logn
- 1:n
- 1:logn
What was the original Apple computers logo?
- Rainbow apple
- Rainbow apple with a bite
- Red apple
- Sir Isaac Newton under an apple tree
Which below IP address would be used for a local network?
- 74.125.127.100
- 69.72.169.241
- 192.168.1.100
- 209.131.36.100
What is the full form of NP?
- Non polynomial
- Number periodicity
- Non periodic
- Nondeterministic polynomial