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: |

Why Telegram?

Telegram has no known backdoors and, even though it is come in for criticism for using proprietary encryption methods instead of open-source ones, those have yet to be compromised. While no messaging app can guarantee a 100% impermeable defense against determined attackers, Telegram is vulnerabilities are few and either theoretical or based on spoof files fooling users into actively enabling an attack.

Telegram announces Search Filters

With the help of the Search Filters option, users can now filter search results by type. They can do that by using the new tabs: Media, Links, Files and others. Searches can be done based on the particular time period like by typing in the date or even “Yesterday”. If users type in the name of a person, group, channel or bot, an extra filter will be applied to the searches.

telegram from in


Telegram Explanations “Top Java Quiz Questions”
FROM USA