what is java
Answers were Sorted based on User's Feedback
Answer / sarika
Java is a high-level, object-oriented programming language
developed by Sun Microsystems. It is similar to C++, but
has been simplified to eliminate language features that
cause common programming errors. Java is a general purpose
programming language with a number of features that make
the language well suited for use on the Web.
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / ranjitha
java is object oriented programing language.java is plat
form independent.java is mainly used for web
applications.java does not use pointers why because it
provides security for any platform.
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / dara sitaramayya
java is plotform independent.java is robust.java is
sequre.java is like as c++.
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / devarathnam c,kotagudibanda(po
Hi...
JAVA is an object-oriented programming language.It support
sophisticated OOP'S concepts
like "Encapsulation", "Polymorphism" and "Inheritance".By
using java we can develop web-based applications,client-
server applications and distributed applications. Java is a
most suitable programming language for internet
technologies.The Sun's trade mark slogan is "WRITE ONECE
RUN ANYWARE", till now no programming is not achieving this
slogan, it is a platform independent and both compielet and
interpreted langauage.
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / ravikiran
java is an object oriented programming language
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / somasani
Java is an Object oriented programming language developed
by sun microsystems.java is platform independent and mostly
suitable fot internet applications.java is simple b/c its
syntaxes are derived from c and oop's concepts are derived
from c++.It is more secure b/c it does not support
pointers.It is usefull to develop clientside and
distributed applications.
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / ershad md sk
JAVA is one of the OBJECT ORIENTED LANGUAGE Developed By
Sun microsystems...Mostly java is used Bcoz JAVA treats
everything as OBJECT's in problem space AND identifies as
its Business data and methods....java gives three key OOP's
concepts ...like Encapsulation,polymorhism & Inheritance
| Is This Answer Correct ? | 0 Yes | 0 No |
java is one type of language through which you can achieve anything , i mean to say here recent version of java supports certain feature through which you can do anything why because you can implement c features in java ,so , c is known as robust language and nothing can not be done by this c except data security which is supported by java.
java is object oriented language but not oops concept,
because it supports oops concept but not fully because still it uses primitive type.And remember that oops concepts are only encapsulation , polymorphism, inheritance. And java is also an ocean . java is an abstract language. java is simple language i mean to say here which increases overhead that is not supported by java.
| Is This Answer Correct ? | 0 Yes | 0 No |
What is the use of a copy constructor?
What are scalar data types?
What are the two main uses of volatile in Java?
Explain final, finalize() and finally?
What is meant by design patterns?
Explain the difference between jvm and jre?
What is the formula to calculate percentage?
Can one thread block the other thread?
Say you want to store the information about a number of pets in an array. Typical information that you could store for each pet (where relevant) would be • Breed of animal • Animal's name • Its birth date • Its sex • Whether it has been sterilised or not • When it is due for its next inoculation • When it last had its wings clipped For each type of pet (eg. dog, cat or bird) you would typically define a class to hold the relevant data. Note: You do not need to implement these classes. Just answer the following questions. 3.1.1 What would be the advantage of creating a superclass (eg. Pet) and declaring an array of Pet objects over simply using an array of Objects, storing each of the instances of the different pet classes (eg. Dog, Cat or Bird) in it? 3.1.2 Would you define Pet as a class or as an interface? Why? (2) (2)
What is update method called?
Explain about assignment statement?
What is scope & storage allocation of static, local and register variables? Explain with an example.