IBM Cognos Report Studio & Algorithms Quiz
A quiz covering IBM Cognos Report Studio features, Framework Manager, and algorithm complexity analysis topics
Questions
How many multiplications do you need to perform if you use Repeated Squaring technique to calculate n^1000. (Ignore the problem of storing such a large number in variable assume you can store infinitly large number in basic data types)
- 99
- 119
- 6
- 14
What is the best possible running time of the code to sort a list of n numbers given the maximum number (k) of the list.
- O(n+k)
- O(lgk+n)
- O(klgn+n)
- O(nlgk+n)
Given a linked list, in what complexity can you reverse it.
- O(n2)
- O(nlgn)
- O(n)
- O(n3)
Cognos 8 architecture is a zero foot-print architecture.
- True
- False
The Insertable Objects pane contains these tabs
- Source Tab
- Data Item Tab
- Toolbox Tab
- Properties Tab
Explorer Bar contains these
- Page Explorer
- Query Explorer
- Condition Explorer
- Work Area Explorer
You create a drill-through report to link two reports containing related information. You can then access related or more detailed information in one report by selecting a value in the chart
- True
- False
You use _________ to create dimensional filters that reduce the data included in measure rollups
- slicer
- dicer
- suppression
- filter
Report Studio can create report output in the following formats:
- Excel
- Word
- XML
- HTML
A Page is made up of which of the following components
- Page Header
- Page sub-header
- Page Body
- Page Footer
Which of the following is not a type of report which can created in Report Studio?
- List
- Map
- View
- Repeater
Which of the following features are supported in Report Studio?
- Drill Up
- Drill Through
- Drill Back
- Drill Down
Retrieves data based on a value that you type. Use this control when users know exactly what value they want to enter, such as a name or account number
- Text Box Prompt
- Value Prompt
- Date Prompt
- Generate Prompt
The complexity to solve this puzzel and technique to solve is Given a structure as below where n(i) is a number. n1 n2 n3 n4 n5 n6 . . . . You have two types of moves either move directly to immediate below or below right i.e. from n3 either to n5 or to n6. Sum the numbers along the way and find a path with minimum sum starting from the top to the bottom. e.g. 5 1 6 9 4 7 3 5 2 4 ans=12 path=5,1,4,2.
- O(n^3) Brute Force
- O(2^n) Recursion
- O(n^2) DP
- O(n) Divide & Conquer
The complexity to solve this puzzel and technique to solve is Given a structure as below where n(i) is a number. n1 n2 n3 n4 n5 n6 . . . . You have two types of moves either move directly to immediate below or below right i.e. from n3 either to n5 or to n6. Sum the numbers along the way and find a path with minimum sum starting from the top to the bottom. e.g. 5 1 6 9 4 7 3 5 2 4 ans=12 path=5,1,4,2.
- O(2^n) Recursion
- O(n^3) Brute Force
- O(n) Divide & Conquer
- O(n^2) DP
Framework manager is a
- ETL tool
- Metadata Modelling tool
- Database
- Web portal
The insertable object pane in the report studio has
- Source tab
- Properties tab
- Tool box tab
- Data item tab
which of the following prompt is used to retrive data between any two dates
- Tree Prompt
- value Prompt
- Interval Prompt
- Date Prompt
Which of the following is not a type of report which can created in Report Studio
- List
- Map
- Repeater
- view
Which of the following features are supported in Report Studio?
- Drill Up
- Drill Through
- Drill Down
- Drill Back