Can I use openjdk for commercial?



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

Post New Answer

More Java Related AllOther Interview Questions

Can we write lambda without functional interface?

1 Answers  


What is the resourcebundle class?

0 Answers  


Why is lambda expression used?

1 Answers  


What is a stream in java?

1 Answers  


In java thread programming, which method is a must implementation for all threads?

1 Answers  


What is an actionevent in java?

1 Answers  


How can you work with permissions from your .net application? : java security

1 Answers  


What is flatmap java?

1 Answers  


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.

3 Answers  


Explain the Sequence Diagram?

2 Answers   HCL,


What is a driver in java?

1 Answers  


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

1 Answers  


Categories