FCP_FAZ_AN-7.6 Online Practice Questions

Home / Fortinet / FCP_FAZ_AN-7.6

Latest FCP_FAZ_AN-7.6 Exam Practice Questions

The practice questions for FCP_FAZ_AN-7.6 exam was last updated on 2026-02-24 .

Viewing page 1 out of 4 pages.

Viewing questions 1 out of 24 questions.

Question#1

Exhibit.



A Forti Analyzer analyst is customizing a SQL query to use in a report.
Which SQL query should the analyst run to get the expected results?
A)



B)



C)



D)


A. Option A
B. Option B
C. Option C
D. Option D

Explanation:
The requirement here is to construct a SQL query that retrieves logs with specific fields, namely "Source IP" and "Destination Port," for entries where the source IP address matches 10.0.1.10. The correct syntax is essential for selecting, filtering, ordering, and grouping the results as shown in the expected outcome.
Analysis of the Options:
Option A
SELECT srcip AS "Source IP", dstport AS "Destination Port": This syntax selects srcip and dstport, renaming them to "Source IP" and "Destination Port" respectively in the output.
FROM $log: Specifies the log table as the data source.
WHERE $filter AND srcip = '10.0.1.10': This line filters logs to only include entries with srcip equal to 10.0.1.10.
ORDER BY dstport DESC: Orders the results in descending order by dstport.
GROUP BY srcip, dstport: Groups results by srcip and dstport, which is valid SQL syntax.
This option meets all the requirements to get the expected results accurately.
Option B
WHERE $filter AND Source IP != '10.0.1.10': Uses != instead of =. This would exclude logs from the specified IP 10.0.1.10, which is contrary to the expected result.
Option C
The ORDER BY clause appears before the FROM clause, which is incorrect syntax. SQL requires the FROM clause to follow the SELECT clause directly.
Option D
The GROUP BY clause should follow the FROM clause. However, here, it’s located after WHERE, making it syntactically incorrect.
Conclusion:
Correct Answer
A. Option A
This option aligns perfectly with standard SQL syntax and filters correctly for srcip = '10.0.1.10', while ordering and grouping as required.
Reference: FortiAnalyzer 7.4.1 SQL query capabilities and syntax for report customization.

Question#2

Which statement about SQL SELECT queries is true?

A. They can be used to purge log entries from the database.
B. They must be followed immediately by a WHERE clause.
C. They can be used to display the database schema.
D. They are not used in macros.

Explanation:
Option A - Purging Log Entries:
A SELECT query in SQL is used to retrieve data from a database and does not have the capability to delete or purge log entries. Purging logs typically requires a DELETE or TRUNCATE command.
Conclusion: Incorrect.
Option B - WHERE Clause Requirement:
In SQL, a SELECT query does not require a WHERE clause. The WHERE clause is optional and is used only when filtering results. A SELECT query can be executed without it, meaning this statement is false.
Conclusion: Incorrect.
Option C - Displaying Database Schema:
A SELECT query retrieves data from specified tables, but it is not used to display the structure or schema of the database. Commands like DESCRIBE, SHOW TABLES, or SHOW COLUMNS are typically used to view schema information.
Conclusion: Incorrect.
Option D - Usage in Macros:
FortiAnalyzer and similar systems often use macros for automated functions or specific query-based tasks. SELECT queries are typically not included in macros because macros focus on procedural or repetitive actions, rather than simple data retrieval.
Conclusion: Correct.
Conclusion:
Correct Answer
D. They are not used in macros.
This aligns with typical SQL usage and the specific functionalities of FortiAnalyzer.
Reference: FortiAnalyzer 7.4.1 documentation on SQL queries, database operations, and macro usage.

Question#3

You are trying to configure a task in the playbook editor to run a report.
However, when you try to select the desired playbook, you do to see it listed.
What is the reason?

A. The report does not have auto-cache and extended log filtering enabled.
B. The playbook is currently running and will be available after it is finished.
C. You must create a trigger to run the report first.
D. The report has no result and must be reconfigured.

Question#4

Which two statements about local logs on FortiAnalyzer are true? (Choose two.)

A. They are not supported in FortiView.
B. You can view playbook logs for all ADOMs in the root ADO
C. Event logs show system-wide information, whereas application logs are ADOM specific.
D. Event logs are available only in the root ADO

Explanation:
FortiAnalyzer manages and stores various types of logs, including local logs, across different ADOMs (Administrative Domains). Each type of log serves specific purposes, with some logs being ADOM-specific and others providing system-wide information.
Option A - Local Logs Not Supported in FortiView:
Local logs are indeed supported in FortiView. FortiView provides visibility and analytics for different log types across the system, including local logs, allowing users to view and analyze data efficiently.
Conclusion: Incorrect.
Option B - Playbook Logs for All ADOMs in the Root ADOM:
FortiAnalyzer allows centralized viewing of playbook logs across all ADOMs from the root ADOM. This feature provides an overarching view of playbook executions, facilitating easier monitoring and management for administrators.
Conclusion: Correct.
Option C - Event Logs vs. Application Logs:
Event Logs provide information about system-wide events, such as login attempts, configuration changes, and other critical activities that impact the overall system. These logs apply across the FortiAnalyzer instance.
Application Logs are more specific to individual ADOMs, capturing details that pertain to ADOM-specific applications and configurations.
Conclusion: Correct.
Option D - Event Logs Only in Root ADOM:
Event logs are available across different ADOMs, not exclusively in the root ADOM. They capture system-wide events, but they can be accessed within specific ADOM contexts as needed.
Conclusion: Incorrect.
Conclusion:
Correct Answer
B. You can view playbook logs for all ADOMs in the root ADOM and
C. Event logs show system-wide information, whereas application logs are ADOM specific.
These answers correctly describe the characteristics and visibility of local logs within FortiAnalyzer.
Reference: FortiAnalyzer 7.4.1 documentation on log types, ADOM configuration, and FortiView functionality.

Question#5

You need to move reports between two ADOMs.
Which two statements are true? (Choose two.)

A. The ADOMs must be compatible types.
B. The date and time will be appended to the original report name to avoid conflicts.
C. All charts and datasets associated with the report will be imported together.
D. You need to convert the reports into templates first.

Explanation:
Comprehensive and Detailed Explanation From Exact Extract of knowledge of FortiAnalyzer 7.6 Study guide documents:
FortiAnalyzer supports moving reporting content across ADOMs by importing/exporting reporting objects, but it enforces ADOM compatibility. The study guide states: “You can, however, import and export reports and charts … into different ADOMs …” and explicitly requires that “Both ADOMs must be of the same type.” This directly validates statement A.
For report dependencies, the study guide clarifies how datasets are handled during transfer. While “You can’t export templates and datasets,” it also explains that when you export a chart, “the associated dataset is exported with it, so when you import an exported chart, the associated dataset is imported as well.” Since reports are composed of charts (and charts depend on datasets), moving a report between ADOMs entails moving its charts; when those charts are exported/imported, their datasets come with them. This supports statement C based on the documented chart→dataset import/export behavior.
Statement D is not required because the study guide explicitly indicates you can “export and import reports” directly, and additionally notes that on import “you can save the layout of the report as a template” (optional, not a prerequisite).

Disclaimer

This page is for educational and exam preparation reference only. It is not affiliated with Fortinet, FCP in Security Operations, or the official exam provider. Candidates should refer to official documentation and training for authoritative information.

Exam Code: FCP_FAZ_AN-7.6Q & A: 66 Q&AsUpdated:  2026-02-24

  Get All FCP_FAZ_AN-7.6 Q&As