1.What is the output of the following code segment
int x=33;
int y=3;
if(x % 11 == y)
System.out.print("java");
else
System.out.print(x % y);
2. Declare a variable named salary and assign 65652.98 to this variable
3.Declare a variable named studentName and assign "Steve Davis" to this variable
4.Assume that we have already declared and initiated intialized int variables: x and y. convert the following sentence to legal java srarment
x gets y plus 7
Please find the code below:::
1)
int x=33;
int y=3;
if(x % 11 == y)
System.out.print("java");
else
System.out.print(x % y);
it will output 0

2)
double salary = 65652.98;
3)
String studentName = "Steve Davis"
4)
x gets y plus 7 will be
x = y+7
1.What is the output of the following code segment int x=33; int y=3; if(x % 11...