# 1z0-829 — Question 603

**Type:** multiple_choice
**Topics:** topic_1

## Question

Given:
//IMG//

What is the result?

## Correct Answer

_See scenario._

## Explanation

Selected Answer: C
package q10;

public class Main {

 void print(int i) {
 System.out.println("hello");
 }

 void print(long j) {
 System.out.println("there");
 }

 public static void main(String[] args) {
 new Main().print(0b1101_1010);
 }

}

// Result:
// hello

**Reference:** examtopics_top_comment

---
Source: https://hiexam.net/q/oracle/1z0-829/603  
Practice (tracked): https://hiexam.net/study/1z0-829/practice