510-309  Exam

Exam # of questions Description  Update
510-309 111 510-309 Powerbuilder 10.0 Professional Exam... 02/15/2011
[Practice Test]    [Download Study Guide(PDF)]   [Update Exam]

510-309 - Exam Information
  • Description: 510-309 Powerbuilder 10.0 Professional Exam
  • Passing Score: 75%
  • Practice Test - Number of questions: 111 questions
  • Simulation Test - Number of questions: 111 questions
  • Simulation Test Duration: 41 minutes
  • Has explanations: No

Question of the day

Given a Custom Class User Object n_counter , having the instance variable: private integer ii_counter And a public function: of_increment ( ) return ii_counter ++ What will be the value of ii_counter at the end of this code segment? n_counter ln_counter ln_counter = CREATE n_counter ln_counter.ii_counter = 8 of_increment(ln_counter)

Answer(s)

  1. This code will not compile
  2. 9
  3. 10
  4. 8
Correct Answer

This code will not compile