What is a difference between the ?? operator and the ?: operator? A. The ?? operator combines the ternary operator with isset() B. The ?: operator combines the ternary operator with isset() C. The ?: operator is only supported by…

Consider the following table data and PHP code. What is the outcome? Table data (table name “users" with primary key “id"): PHP code (assume the PDO connection is correctly established): A. the database will return no rows. B. The value…

You work for a shared hosting provider, and your supervisor asks you do disable user scripts to dynamically load PHP extensions using the d1() function. How can you do this? (Choose two.) A. Set enable_d1 to off in the server’s…