1.

What is the output of this program? import java.net.*; class networking { public static void main(String[] args) throws MalformedURLException { URL obj = new URL("https://www.mcqsmentor.com/"); System.out.print(obj.toExternalForm()); } }

A. mcqsmentor
B. mcqsmentor.com
C. www.mcqsmentor.com
D. https://www.mcqsmentor.com/
Answer» E.


Discussion

No Comment Found