Direction: Choose the correct option
Q1.
In a typical AOP example project, what is commonly used as a cross-cutting concern?
Direction: Choose the correct option
Q2.
How do you enable AOP in a Spring Boot project?
Direction: Choose the correct option
Q3.
What annotation is used to declare an aspect class?
Direction: Choose the correct option
Q4.
In an AOP example, what is a typical pointcut expression to log all methods in a package?
Direction: Choose the correct option
Q5.
What does the following pointcut match? execution(* com..*.*(..))
Direction: Choose the correct option
Q6.
In a logging aspect, which advice is commonly used to log method entry?
Direction: Choose the correct option
Q7.
How do you log method execution time in AOP?
Direction: Choose the correct option
Q8.
What is required to make an aspect work in Spring?
Direction: Choose the correct option
Q9.
In an AOP example, what does the proceed() method do?
Direction: Choose the correct option
Q10.
What is a common use case for AOP in real projects?
