Multiple choice technology programming languages What are the modes of parameters that can be passes to a procedure? IN IN, OUT IN, OUT,INOUT IN, OUT, INOUT , OUTIN Reveal answer Fill a bubble to check yourself C Correct answer Explanation In PL/SQL and most stored procedure languages, there are three parameter modes: IN (input only), OUT (output only), and INOUT (bidirectional). These allow procedures to receive values, return values, or both. OUTIN is not a standard parameter mode.