FeedBack Form

Your Name :
Your Email :
Your Location :
Your Message :
   
FeedBack

PL/SQL INTERVIEW QUESTION & ANSWERS

Follow Us
 
16. What is a character set?
  A Pl/SQL program consists of sequence of statements, each of which is made up of one or more lines of text. Text is made up of combinations of the characters.
Your Name Your Email-ID
Your Answer
 
17. What is lexical units?
  A line of PL/SQL text contains groups of characters known as lexical units.
Your Name Your Email-ID
Your Answer
 
18. What is delimiters?
  A delimiter is a simple or compound symbol that has a special meaning to PL/SQL. For examples are given below.
  • ; statement terminator
  • % Attribute indicator
  • _ single underscore
  • : Host variable indicator
  • := Alignment operator
  • – Single line comment
  • /* and */ Beginning and ending multiline comment block delimiters.
Your Name Your Email-ID
Your Answer
 
19. What is identifier?
  An identifier is a name for a PL/SQL object which includes constants, variables, exceptions, cursors, subprograms, packages and reserved words.
Your Name Your Email-ID
Your Answer
 
20. What are the collection types that supports PL/SQL?
 
    The three collection types PL/SQL supports are :
  • index–by tables
  • nested tables
  • varrays
Your Name Your Email-ID
Your Answer