{{theTime}}

Search This Blog

Total Pageviews

What is the output of the following code in Java?

System.
out.println((String)null) ;
 
Answers:
a) NullPointerException
b) null
c) RuntimeException
d) NULL

No comments:

Java Script GET request Sample Code

fetch(' https://api.public.com/api ')   .then(response => response.json())   .then(data => console.log(data))   .catch(error =...