Question 55 of 76 from exam 1Z0-808: Java SE 8 Programmer I

Question 55 of 76 from exam 1Z0-808: Java SE 8 Programmer I

Question

Given the code fragment:

. public static void main(string[]

int ivar = 100;

float fvar = 100.100f;

double

ivar
fvar
dvar
fvar
dvar
ivar

dvar
fvar;
ivar;
fvar;
dvar;
ivar;
dvar;

123;

args)

{

Which three lines fail to compile?

Answers

Explanations

Click on the arrows to vote for the correct answer

A. B. C. D. E. F.

ADF.