- SAP HANA Tutorial
- SAP HANA - Home
- SAP HANA Introduction
- SAP HANA - Overview
- In-Memory Computing Engine
- SAP HANA - Studio
- Studio Administration View
- SAP HANA - System Monitor
- SAP HANA - Information Modeler
- SAP HANA - Core Architecture
- SAP HANA Modeling
- SAP HANA - Modeling
- SAP HANA - Data Warehouse
- SAP HANA - Tables
- SAP HANA - Packages
- SAP HANA - Attribute View
- SAP HANA - Analytic View
- SAP HANA - Calculation View
- SAP HANA - Analytic Privileges
- SAP HANA - Information Composer
- SAP HANA - Export and Import
- SAP HANA Reporting
- SAP HANA - Reporting View
- Bi 4.0 Connectivity to HANA Views
- SAP HANA - Crystal Reports
- SAP HANA - Excel Integration
- SAP HANA Security
- SAP HANA - Security Overview
- User Administration & Management
- SAP HANA - Authentications
- SAP HANA - Authorization methods
- SAP HANA - License Management
- SAP HANA - Auditing
- SAP HANA Data Replication
- SAP HANA - Data Replication Overview
- SAP HANA - ETL Based Replication
- SAP HANA - Log Based Replication
- SAP HANA - DXC Method
- SAP HANA - CTL Method
- SAP HANA - MDX Provider
- SAP HANA Monitoring
- SAP HANA - Monitoring and Alerting
- SAP HANA - Persistent Layer
- SAP HANA - Backup & Recovery
- SAP HANA - High Availability
- SAP HANA - Log Configuration
- SAP HANA SQL
- SAP HANA - SQL Overview
- SAP HANA - Data Types
- SAP HANA - SQL Operators
- SAP HANA - SQL Functions
- SAP HANA - SQL Expressions
- SAP HANA - SQL Stored Procedures
- SAP HANA - SQL Sequences
- SAP HANA - SQL Triggers
- SAP HANA - SQL Synonym
- SAP HANA - SQL Explain Plans
- SAP HANA - SQL Data Profiling
- SAP HANA - SQL Script
- SAP HANA Useful Resources
- SAP HANA - Questions and Answers
- SAP HANA - Quick Guide
- SAP HANA - Useful Resources
- SAP HANA - Discussion
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
SAP HANA Mock Test
This section presents you various set of Mock Tests related to SAP HANA. You can download these sample mock tests at your local machine and solve offline at your convenience. Every mock test is supplied with a mock test key to let you verify the final score and grade yourself.
SAP HANA Mock Test I
Q 1 - To perform complex calculations and aggregations, which of the table type is preferred?
Answer : B
Explanation
Column base tables are preferred to perform aggregations and calculations as similar data type comes together.
Q 2 - In SAP HANA Data replication, replicating data from a table in ECC system to HANA database, target table should have?
A - Equal number of columns in target table as of source system
B - Name of columns should be same in Target table
C - Target system data definition doesn't matter and it prints null for blank values
Answer : D
Explanation
Target table should have same columns and data types otherwise you can use a new template table option.
Q 3 - Consider different DW systems in place, which of the below DW system focus on predicting future outcomes using complex mathematical models?
Answer : A
Explanation
Predictive analysis is about finding and quantifying hidden patterns in the data using complex mathematical models that can be used to predict future outcomes.
Q 4 - Consider the differences between OLTP and OLAP system, which of the below statement is incorrect about an OLAP system?
A - It has more indexes as compared to an OLTP system
B - It process historical data
Answer : C
Explanation
Few Indexes, while in Data Warehouse many indexes for performance optimization.
Many Joins, Data is normalized. Data Warehouse less joins and denormalized.
Less Aggregation, while in Data Warehouse lots of aggregations are used.
Q 5 - Consider the Data Modeling concept in HANA, Which of the below statement is incorrect about Schema?
A - In Star Schema, you can have multiple fact tables and Dim tables
B - In Star Schema, Dim tables are not normalized
C - In Galaxy Schema, you have multiple fact tables and multiple Dim tables.
D - In Snowflakes schema, you have multiple Dim tables in normalized form.
Answer : A
Explanation
In Star schema, you have one fact table and multiple dim tables.
Q 6 - In a Query panel, Report developer wants to add multiple conditions in a Where clause statement. Which of the operator type should be used?
Answer : C
Explanation
SELECT empno, ename, sal FROM emp WHERE sal >= 1500 AND sal <= 3000; SELECT empno, ename, sal FROM emp WHERE deptno = 10 OR deptno = 20;
Q 7 - Which of the below statement is true about Union and Union All set operators?
A - Union prints all the rows from both the tables.
Answer : B
Explanation
UNION is used to combine the results of two or more Select statements. However it will eliminate duplicate rows
Union All
This operation is similar to Union. But it also shows the duplicate rows.
Q 8 - A SAP HANA developer wants to create HTML application and to host it on web server in HANA. Which of the below component in HANA architecture can be used by Web applications to access HANA database?
Answer : C
Explanation
XS Engine allows external applications to access the SAP HANA system via the XS Engine clients. It allows UI5 based applications to use SAP HANA via http/https or other protocols.
Q 9 - Which of the below statement is incorrect about HANA Studio?
C - Java JRE 1.6 or 1.7 must be installed to run the SAP HANA studio.
D - SAP HANA Studio provides an environment for Administration, Modeling and Data Provisioning.
Answer : B
Explanation
SAP HANA studio is an Eclipse-based development and administration tool for working with HANA.
It is a client tool, which can be used to access local or remote HANA system.
It provides an environment for Administration, Modeling and Data Provisioning.
There are several predefined User Interface addressing several applications types called Perspectives.
We can use the SAP HANA studio on the following platforms −
Microsoft Windows x32 and x64 versions of: Windows XP, Windows Vista, Windows 7.
Q 10 - SAP HANA Administrator is using instance 00 to connect to HANA Studio. Which port is used in HANA system for this instance?
Answer : A
Explanation
- Port 3615 should be open to connect to Database
- Port 31015 Instance No 10
- Port 30015 Instance No 00
- SSh port should also be opened.
Q 11 - In SAP HANA Modeling, Attributes views are used −
A) in Analytic and Calculation views.
B) represents master data.
C) are designed to perform Star schema queries
D) are used to filter size of dimension tables in Analytic and Calculation View
E) are defined either graphical using HANA Modeling feature or scripted in the SQL Choose the correct option.
Answer : B
Explanation
Attribute views are dimensions, BW characteristics or master data.
Attribute views are used to join to a dimension or attribute view.
In most cases used to model master data like entities (like Product, Employee, Business Partner)
Highly re-used and shared in Analytic- and Calculation Views
Q 12 - In SAP HANA Modeling, which of the view type provides Modeler with an inbuilt nodes-Projection, Join, Union and Rank?
Answer : C
Explanation
Graphical Calculation Views
Can consume other Analytical, Attribute, other Calculation Views & tables Built-in Union, Join, Projection & Aggregation nodes
Answer Sheet
Question Number | Answer Key |
---|---|
1 | B |
2 | D |
3 | A |
4 | C |
5 | A |
6 | C |
7 | B |
8 | C |
9 | B |
10 | A |
11 | B |
12 | C |