QlikView QSDA2024 Exam Practice Questions (P. 1)
- 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 #1
Refer to the exhibit.

A data architect needs to create a data model for a new app. Users must be able to see:
• Total sales for each customer
• Total sales for a given state
• Customers that have not had any sales
• Names of salesperson and regional account managers
• Total number of sales by date
Which steps should the data architect perform to meet these requirements?

A data architect needs to create a data model for a new app. Users must be able to see:
• Total sales for each customer
• Total sales for a given state
• Customers that have not had any sales
• Names of salesperson and regional account managers
• Total number of sales by date
Which steps should the data architect perform to meet these requirements?
- A1. Use a Mapping Load for the Employees table
2. Load the Sales table and use ApplyMap to get the names for SalesPersonID and RegionalAcctMgrID
3. Use a Left Join Load to add the customer details for the Sales table - B1. Load the Customers table and alias the CustID field as CustomerID
2. Use a Mapping Load for the Employees table
3. Load the Sales table and use ApplyMap to get the names for SalesPersonID and RegionalAcctMgrID - C1. Load the Sales table
2. Load the Customers table
3. Load the Employees table twice; name it and alias the EmployeeID field appropriately each time - D1. Load the Customers table and alias the CustID field as CustomerID
2. Load the Employees table
3. Load the Sales table and alias the SalesPersonID and RegionalAcctMgrID fields as EmployeeID
send
light_mode
delete
Question #2
A data architect needs to load Table_A from an Excel file and sort the data by Field_2.
Which script should the data architect use?
Which script should the data architect use?
- ATemp:
LOAD -
Field_1,
Field_2,
Field_3 -
FROM [lib://Data/Table_A.xlsx]
(ooxml, embedded labels, table is Sheet1);
Table_A:
LOAD *
resident Temp Order by Field_2 asc;
drop Table Temp; - BTable_A:
LOAD -
Field_1,
Field_2,
Field_3 -
FROM [lib://Data/Table_A.xlsx]
(ooxml, embedded labels, table is Sheet1);
Order by Field_2 asc; - CTemp:
LOAD -
Field_1,
Field_2,
Field_3 -
FROM [lib://Data/Table_A.xlsx]
(ooxml, embedded labels, table is Sheet1);
NoConcatenate -
Table_A:
LOAD *
resident Temp Order by Field_2 asc;
drop Table Temp; - DTable_A:
LOAD *
Order by Field_2 asc;
LOAD -
Field_1,
Field_2,
Field_3 -
FROM [lib://Data/Table_A.xlsx]
(ooxml, embedded labels, table is Sheet1);
send
light_mode
delete
Question #3
A data architect needs to retrieve data from a REST API. The data architect needs to loop over a series of items that are being read using the REST connection.
What should the data architect do?
What should the data architect do?
- ARecreate the SQL Statement with the correct parameters
- BUse the REST Connector with pagination mechanism
- CUse pagination of the REST Connector to create a template of the desired data
- DUse With Connection to pass a parameter to the REST URL
send
light_mode
delete
Question #4
A table is generated resulting from the following script:
LOAD *,
Date(OrderTime) as Date;
LOAD * INLINE [
Order, OrderTime -
‘ABC’, 2022-03-12 10:20:15
‘XYZ’, 2022-03-12 11:21:15
‘DEF’, 2022-03-12 10:21:35];
When the data architect selects a date, some, but NOT all, orders for that date are shown.
How should the data architect modify the script to show all orders for the selected date?
LOAD *,
Date(OrderTime) as Date;
LOAD * INLINE [
Order, OrderTime -
‘ABC’, 2022-03-12 10:20:15
‘XYZ’, 2022-03-12 11:21:15
‘DEF’, 2022-03-12 10:21:35];
When the data architect selects a date, some, but NOT all, orders for that date are shown.
How should the data architect modify the script to show all orders for the selected date?
- ALOAD *,
Floor(MakeDate(OrderTime,'YYYY-MM-DD')) as Date;
LOAD * INLINE [
Order, OrderTime -
‘ABC’, 2022-03-12 10:20:15
‘XYZ’, 2022-03-12 11:21:15
‘DEF’, 2022-03-12 10:21:35]; - BLOAD *,
Date(OrderTime,'YYYY-MM-DD') as Date;
LOAD * INLINE [
Order, OrderTime -
‘ABC’, 2022-03-12 10:20:15
‘XYZ’, 2022-03-12 11:21:15
‘DEF’, 2022-03-12 10:21:35]; - CLOAD *,
Date#(OrderTime,'YYYY-MM-DD') as Date;
LOAD * INLINE [
Order, OrderTime -
‘ABC’, 2022-03-12 10:20:15
‘XYZ’, 2022-03-12 11:21:15
‘DEF’, 2022-03-12 10:21:35]; - DLOAD *,
Date(Floor(OrderTime),'YYYY-MM-DD') as Date;
LOAD * INLINE [
Order, OrderTime -
‘ABC’, 2022-03-12 10:20:15
‘XYZ’, 2022-03-12 11:21:15
‘DEF’, 2022-03-12 10:21:35];
send
light_mode
delete
Question #5

Refer to the exhibit.
What does the expression SUM([OrderNetAmount]) return when all values in LineNo are selected?
send
light_mode
delete
All Pages