Telegram Group & Telegram Channel
Given the following classes, what is the maximum number of imports that can be removed and have the code still compile?

package aquarium; public class Water { }
package aquarium;
import java.lang.*;
import java.lang.System;
import aquarium.Water;
import aquarium.*;
public class Tank {
public void print(Water water) {
System.out.println(water); } }


A. 0
B. 1
C. 2
D. 3
E. 4
F. Does not compile.

Explanation:
The first two imports can be removed because java.lang is automatically imported.
The second two imports can be removed because Tank and Water are in the same package, making the correct answer E.
If Tank and Water were in different packages, one of these two imports could be removed. In that case, the answer would be option D.



tg-me.com/topJavaQuizExplain/18
Create:
Last Update:

Given the following classes, what is the maximum number of imports that can be removed and have the code still compile?

package aquarium; public class Water { }
package aquarium;
import java.lang.*;
import java.lang.System;
import aquarium.Water;
import aquarium.*;
public class Tank {
public void print(Water water) {
System.out.println(water); } }


A. 0
B. 1
C. 2
D. 3
E. 4
F. Does not compile.

Explanation:
The first two imports can be removed because java.lang is automatically imported.
The second two imports can be removed because Tank and Water are in the same package, making the correct answer E.
If Tank and Water were in different packages, one of these two imports could be removed. In that case, the answer would be option D.

BY Explanations “Top Java Quiz Questions”


Warning: Undefined variable $i in /var/www/tg-me/post.php on line 283

Share with your friend now:
tg-me.com/topJavaQuizExplain/18

View MORE
Open in Telegram


telegram Telegram | DID YOU KNOW?

Date: |

However, analysts are positive on the stock now. “We have seen a huge downside movement in the stock due to the central electricity regulatory commission’s (CERC) order that seems to be negative from 2014-15 onwards but we cannot take a linear negative view on the stock and further downside movement on the stock is unlikely. Currently stock is underpriced. Investors can bet on it for a longer horizon," said Vivek Gupta, director research at CapitalVia Global Research.

telegram from jp


Telegram Explanations “Top Java Quiz Questions”
FROM USA