Online Access Free 1Z0-850 Exam Questions
| Exam Code: | 1Z0-850 |
| Exam Name: | Java Standard Edition 5 and 6, Certified Associate Exam |
| Certification Provider: | Oracle |
| Free Question Number: | 242 |
| Posted: | Jun 03, 2026 |
Given:
1 . class Test {
2 . public static void main(String[] args) {
3 . int num = 1;
4 . for (num = 0; num < 3; ++num ) {
5 . num *= 2;
6 . }
7 . System.out.println("num = " + (num++));
8 . }
9 . }
What is the result?