Answer Posted / nithi
Java is not pure object oriented language.It have primitive data types. the pure object oriented language is the one which uses all the concepts of oops and use objects.but in the other case when the java uses wrapper classes for primitive data types, it will use everything as class and objects and become pure object oriented language..
| Is This Answer Correct ? | 1 Yes | 1 No |
Post New Answer View All Answers
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; }
How do you change the style/class on any element using javascript?
What are the valid scopes of a variable in JavaScript?
Which companies are using node js?
What are javascript objects?
How to select an element by id and swapping an image?
What is undefined x 1 in JavaScript?
Is a hash table an array?
What is dataview in javascript?
What does trim stand for?
What is the use of Void(0)?
How are event handlers utilized in javascript?
In Javascript are calculations with fractional numbers guaranteed to be precise?
What is the difference between window and document in Javascript?
How do you reverse a string in javascript?