Skip to main content
Journey Uncommon Logo
JourneyUncommon
mediumJavaprimitives and char widthSingle-choice MCQ

What does this code print?

class P { int v = 5; }\nstatic void f(P p) { p.v = 6; }\nP p = new P();\nf(p);\nSystem.out.println(p.v);