nerdexam
Microsoft

GH-500 · Question #54

When using CodeQL, what extension stores query suite definitions?

The correct answer is B. .qls. In CodeQL, query suite definitions are stored in files with the .qls extension (Query Library Suite). These files define collections of queries to run together. The other extensions serve different purposes: .ql (D) is for individual CodeQL query files, .qll (C) is for CodeQL…

Implement and manage CodeQL

Question

When using CodeQL, what extension stores query suite definitions?

Options

  • A.yml
  • B.qls
  • C.qll
  • D.ql

How the community answered

(23 responses)
  • A
    4% (1)
  • B
    91% (21)
  • C
    4% (1)

Explanation

In CodeQL, query suite definitions are stored in files with the .qls extension (Query Library Suite). These files define collections of queries to run together. The other extensions serve different purposes: .ql (D) is for individual CodeQL query files, .qll (C) is for CodeQL library files that provide reusable logic, and .yml (A) is used for workflow configuration files, not CodeQL suite definitions.

Topics

#CodeQL#Query suites#File extensions#Code Scanning

Community Discussion

No community discussion yet for this question.

Full GH-500 Practice