Can I use openjdk for commercial?
Answer / Sarita Chaudhary
Yes, OpenJDK can be used for both personal and commercial projects without any license fees. However, it is essential to understand the specific terms of your project's licensing requirements, as some may have additional conditions that apply when using OpenJDK.
| Is This Answer Correct ? | 0 Yes | 0 No |
Can we write lambda without functional interface?
What is the resourcebundle class?
Why is lambda expression used?
What is a stream in java?
In java thread programming, which method is a must implementation for all threads?
What is an actionevent in java?
How can you work with permissions from your .net application? : java security
What is flatmap java?
public class Dog { private int weight; public int getweight(){ return weight; } public void SetWeight(int newWeight){ if (newWeight > 0){ weight = newWeight; } } } public class TestDog { public static void main(String[] args) { Dog d = new Dog(); System.out.println("Dog d's weight is " + d.getWeight()); d.setWeight(42); System.out.println("Dog d's weight is " + d.getWeight()); d.setweight(-42); System.out.println("Dog d's weight is " + d.getWeight()); } } class dog is compiled but there is an error in class TestDog when compiled and the error is with dot notations. I want to kmow why there is error in testdog class when compiled.
Explain the Sequence Diagram?
What is a driver in java?
Spring framework ---Can somebody explain me in easily understandable format about AOP, IOC and DI, so that i can explain in interview rather than just telling what is available in net. I am not able to understand that also. I am new to Spring