QlikView QSDA2024 - Qlik Sense Data Architect Certification Exam - 2024 Exam

Page:    1 / 10   
Total 50 questions

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. 1. 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
  • B. 1. 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
  • C. 1. 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
  • D. 1. 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


Answer : B

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?

  • A. Temp:
    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;
  • B. Table_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;
  • C. Temp:
    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;
  • D. Table_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);


Answer : A

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?

  • A. Recreate the SQL Statement with the correct parameters
  • B. Use the REST Connector with pagination mechanism
  • C. Use pagination of the REST Connector to create a template of the desired data
  • D. Use With Connection to pass a parameter to the REST URL


Answer : B

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?

  • A. LOAD *,
    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];
  • B. LOAD *,
    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];
  • C. LOAD *,
    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];
  • D. LOAD *,
    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];


Answer : D


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

  • A. 1590
  • B. 1490
  • C. 690
  • D. 1810


Answer : D

Page:    1 / 10   
Total 50 questions