Multiple choice technology programming languages

Below Code is TRUE (=Correct)/FALSE (=Wrong)? BEGIN SELECT PROJECT_ID FROM PA_PROJECTS_ALL WHERE PROJECT_ID IN (12345); END;

  1. True

  2. False

Reveal answer Fill a bubble to check yourself
A Correct answer
Explanation

This is valid PL/SQL syntax for a simple SELECT statement. The BEGIN/END block creates an anonymous PL/SQL block, and the SELECT statement with IN clause is syntactically correct.