java pgm for compare two vesion and print the greatest
version on the console.
e.g:
like 1.4.2 and 1.5.2
biggest is 1.5.2
1.2.5 and 1.2.8
biggest is 1.2.8
No Answer is Posted For this Question
Be the First to Post Answer
What is the context in javascript?
What is a module code?
What is "strict mode" and how is it used in JavaScript?
How do you include a comment in javascript?
What are the four types of javascript objects?
What is the use of anonymous function in javascript?
What is missing in my code? function numberTally(numList) { var evenTotal = 0; var oddTotal = 0; for (var i = 0; i <= numList.length; i++) { if i % 2 { // i is odd oddTotal += numList[i]; // or oddTotal = oddTotal + numList[i]; } else { // i is even evenTotal + numList[i]; } } alert(oddTotal); return evenTotal; }
What does the isNaN() function?
Explain javascript event delegation model?
Explain export & import in javascript?
What is a “closure” in JavaScript? Provide an example
How are tag positions used in javascript?