Multiple choice technology databases Which three are valid ways to minimize dependency failure? (Choose three) Querying with the SELECT * notification. Declaring variables with the %TYPE attribute. Specifying schema names when referencing objects. Declaring records by using the %ROWTYPE attribute. Specifying package.procedure notation while executing procedures. Reveal answer Fill a bubble to check yourself A,B,D Correct answer Explanation SELECT * with notifications (A) automatically captures schema changes. %TYPE attribute (B) anchors variables to column datatypes, reducing coupling. %ROWTYPE attribute (D) mirrors table structure for records, minimizing maintenance when tables change. Schema names (C) increase coupling by hardcoding references. Package.procedure notation (E) doesn't affect dependency failure - it's just execution syntax.