Why is java so important?
Answer / Rakesh Verma
Java is important because it is a widely-used, object-oriented programming language that is platform independent, meaning it can run on any device with a Java Virtual Machine (JVM) installed. This allows developers to write code once and deploy it across various operating systems without modifications.
| Is This Answer Correct ? | 0 Yes | 0 No |
What are constants and how to create constants in java?
How do you compare characters in java?
how to create an applet
How to reverse a string in java?
What is a arraylist in java?
What comes to mind when someone mentions a shallow copy in java?
What is hashmap and map?
33. try { 34. // some code here 35. } catch (NullPointerException e1) { 36. System.out.print(”a”); 37. } catch (RuntimeException e2) { 38. System.out.print(”b”); 39. } finally { 40. System.out.print(”c”); 41. } What is the result if a NullPointerException occurs on line 34? 1 c 2 a 3 ab 4 ac
What is classes in java?
what is synchronization? : Java thread
What is not object oriented programming?
How do u provide security in java