ExamGecko
Question list
Search
Search

Question 157 - SPLK-1002 discussion

Report
Export

What is the correct format for naming a macro with multiple arguments?

A.
monthly_sales(argument 1, argument 2, argument 3)
Answers
A.
monthly_sales(argument 1, argument 2, argument 3)
B.
monthly_sales(3)
Answers
B.
monthly_sales(3)
C.
monthly_sales[3]
Answers
C.
monthly_sales[3]
D.
monthly_sales[argument 1, argument 2, argument 3)
Answers
D.
monthly_sales[argument 1, argument 2, argument 3)
Suggested answer: C

Explanation:

The correct format for naming a macro with multiple arguments is monthly_sales3. The square brackets indicate that the macro has arguments, and the number indicates how many arguments it has. The arguments are separated by commas when calling the macro, such as monthly_sales[region,salesperson,date].

asked 23/09/2024
FL Ferdous Attaie
36 questions
User
Your answer:
0 comments
Sorted by

Leave a comment first