Which of the following syntax is correct way to declare a variable in PL/SQL? ; b) variable_name datatype ; c) variable_name datatype; d) variable_name datatype (NOT NULL := value );

Which of the following syntax is correct way to declare a variable in PL/SQL? ; b) variable_name datatype ; c) variable_name datatype; d) variable_name datatype (NOT NULL := value ); Correct Answer NOT NULL := value

Related Questions

Point out the error (if any) in the following C code?
#include #include int main(void){ int* p = NULL; struct S *s = NULL; void(*f)(int, double) = NULL; char *ptr = malloc(15); if (ptr == NULL) printf("Out of memory"); free(ptr);}