InterviewSolution
Saved Bookmarks
| 1. |
In Perl DBI, functions are called ______________(a) functions(b) procedures(c) methods(d) programsThis question was addressed to me in quiz.My question comes from Perl DBI Overview topic in portion MySQL Programs Using Perl DBI and PHP of MySQL |
|
Answer» RIGHT choice is (c) methods The explanation is: In the DBI API, functions are called and POINTERS to STRUCTURES are used. The functions are called ‘methods’, pointers are called ‘references’, POINTER VARIABLES are called ‘handles’. |
|