QlikView QSDA2024 Exam Practice Questions (P. 2)
- Full Access (50 questions)
- Six months of Premium Access
- Access to one million comments
- Seamless ChatGPT Integration
- Ability to download PDF files
- Anki Flashcard files for revision
- No Captcha & No AdSense
- Advanced Exam Configuration
Question #6
Refer to the exhibit.

The salesperson ID and the office to which the salesperson belongs is stored for each transaction. The data model also contains the current office for the salesperson. The current office of the salesperson and the office the salesperson was in when the transaction occurred must be visible. The current source table view of the model is shown. A data architect must resolve the synthetic key.
How should the data architect proceed?

The salesperson ID and the office to which the salesperson belongs is stored for each transaction. The data model also contains the current office for the salesperson. The current office of the salesperson and the office the salesperson was in when the transaction occurred must be visible. The current source table view of the model is shown. A data architect must resolve the synthetic key.
How should the data architect proceed?
- AComment out the Office in the Transaction table
- BInner Join the Transaction table to the CurrentOffice table
- CAlias Office to CurrentOffice in the CurrentOffice table
- DForce concatenation between the tables
send
light_mode
delete
Question #7
Refer to the exhibit.

A data architect is loading two tables into a data model from a SQL database. These tables are related on key fields CustomerID and CustomerKey.
Which script should the data architect use?

A data architect is loading two tables into a data model from a SQL database. These tables are related on key fields CustomerID and CustomerKey.
Which script should the data architect use?
- AOrderDetails:
LOAD OrderKey, CustomerKey AS CustomerID, LineTotal, ProductKey;
SQL SELECT * FROM OrderDetails;
Customers:
LOAD CustomerID, AccountNumber, CustomerName;
SQL SELECT * FROM Customers; - BOrderDetails:
LOAD OrderKey, AUTONUMBER(CustomerKey), LineTotal, ProductKey;
SQL SELECT * FROM OrderDetails;
Customers:
LOAD AUTONUMBER (CustomerID) AS CustomerKey, AccountNumber, CustomerName;
SQL SELECT * FROM Customers; - COrderDetails:
LOAD OrderKey, CustomerKey, LineTotal, ProductKey;
SQL SELECT * FROM OrderDetails;
ALIAS CustomerKey AS CustomerID;
Customers:
LOAD CustomerID AS CustomerKey, AccountNumber, CustomerName;
SQL SELECT * FROM Customers; - DOrderDetails:
LOAD OrderKey, CustomerKey, LineTotal, ProductKey;
SQL SELECT * FROM OrderDetails;
Customers:
LOAD CustomerID, AccountNumber, CustomerName;
RENAME FIELD CustomerKey TO CustomerID;
send
light_mode
delete
Question #8
Refer to the exhibit.

A data architect wants to transform the input data set to the output data set. Which prefix to the Qlik Sense LOAD command should the data architect use?

A data architect wants to transform the input data set to the output data set. Which prefix to the Qlik Sense LOAD command should the data architect use?
send
light_mode
delete
Question #9
A data architect receives an error while running script.
What will happen to the existing data model?
What will happen to the existing data model?
- AThe data model will be removed from the application.
- BThe latest error-free data model will be maintained.
- CNewly loaded tables will be merged with the existing data model until the error is resolved.
- DThe data model will be replaced with the tables that were successfully loaded before the error.
send
light_mode
delete
Question #10
Refer to the exhibit.

The Orders table contains a list of orders and associated details. A data architect needs to replace the SupplierID with the SupplierName using the second table as the source.
The output must be a single table.
Which script should the data architect use?

The Orders table contains a list of orders and associated details. A data architect needs to replace the SupplierID with the SupplierName using the second table as the source.
The output must be a single table.
Which script should the data architect use?
- ASuppliersMap:
MAPPING LOAD SupplierName, SupplierID;
SQL SELECT SupplierID, SupplierName FROM Suppliers;
LOAD *, APPLYMAP('SupplierName', SupplierID) AS SupplierName RESIDENT Orders;
DROP TABLE Orders; - BLEFT JOIN(Products)
LOAD SupplierID,
SupplierName;
SQL SELECT SupplierID, SupplierName FROM Suppliers; - CLEFT JOIN (Products)
LOAD DISTINCT SupplierID,
SupplierName;
SQL SELECT SupplierID, SupplierName FROM Suppliers; - DSuppliersNames:
MAPPING LOAD ID, SupplierName as Name;
SQL SELECT SupplierID as ID, SupplierName FROM Suppliers;
LOAD *, APPLYMAP('SupplierNames', SupplierID) AS SupplierName RESIDENT Orders;
DROP TABLE Orders;
send
light_mode
delete
All Pages