Answer Posted / ravikumarg
Java is platform independent because "Write once Run anywhere and any OS".(Unlike c,c++ are system dependent).Java is internet spported language.
| Is This Answer Correct ? | 13 Yes | 1 No |
Post New Answer View All Answers
How do I enable cookies safari?
Does apple use javascript?
Explain window.onload and ondocumentready?
Which is best for front end?
What do ellipses mean in javascript?
What is the concept of “functions as objects” and how does this affect variable scope?
Is javascript object oriented?
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 is a null variable in javascript?
What is client side programming?
What is prototype in javascript and how do you use it?
What is spread operator react?
How to create objects in JavaScript?
How typeof operator works?
List html dom mouse events?