Valid 1Z0-851 Dumps shared by ExamDiscuss.com for Helping Passing 1Z0-851 Exam! ExamDiscuss.com now offer the newest 1Z0-851 exam dumps, the ExamDiscuss.com 1Z0-851 exam questions have been updated and answers have been corrected get the newest ExamDiscuss.com 1Z0-851 dumps with Test Engine here:
Given: interface Fish { } class Perch implements Fish { } class Walleye extends Perch { } class Bluegill { } public class Fisherman { public static void main(String[] args) { Fish f = new Walleye(); Walleye w = new Walleye(); Bluegill b = new Bluegill(); if (f instanceof Perch) System.out.print("f-p "); if (w instanceof Fish) System.out.print("w-f "); if (b instanceof Fish) System.out.print("b-f "); } } What is the result?