Welcome to ExamTopics
ExamTopics Logo
- Expert Verified, Online, Free.
exam questions

Exam QSDA2024 All Questions

View all questions & answers for the QSDA2024 exam

Exam QSDA2024 topic 1 question 26 discussion

Actual exam question from QlikView's QSDA2024
Question #: 26
Topic #: 1
[All QSDA2024 Questions]

Refer to the exhibit.

A system creates log files and csv files daily and places these files in a folder. The log files are named automatically by the source system and change regularly. All csv files must be loaded into Qlik Sense for analysis.
Which method should be used to meet the requirements?

  • A. SET vFileList = 'Day1','Day2','Day3';
    FOR EACH vFile in $(vFileList)
    LOAD * FROM [lib://Data (User1) /multi/$(vFile).csv];
    NEXT
  • B. LOAD *
    FROM [lib://Data (User1)/multi/*]
    (csv);
  • C. LOAD *
    FROM [lib://Data (User1)/multi/*]
    (txt)
  • D. SET vLib = chr(39) & 'lib://Data (User1)/multi/*.csv' & chr(39);
    FOR EACH File in filelist($(vLib))
    LOAD * FROM [$(File)];
    NEXT
Show Suggested Answer Hide Answer
Suggested Answer: B 🗳️

Comments

Chosen Answer:
This is a voting comment (?). It is better to Upvote an existing comment if you don't have anything to add.
Switch to a voting comment New
7d737d9
5 days, 20 hours ago
The answer is wrong as the (csv) suffix is not valid. The row with the (txt) suffix is the correct answer.
upvoted 1 times
...
Community vote distribution
A (35%)
C (25%)
B (20%)
Other
Most Voted
A voting comment increases the vote count for the chosen answer by one.

Upvoting a comment with a selected answer will also increase the vote count towards that answer by one. So if you see a comment that you already agree with, you can upvote it instead of posting a new comment.

SaveCancel
Loading ...