WHAT IS THE MEANING OF ALL TYPE OF BUZZWORDS?
Answers were Sorted based on User's Feedback
Answer / gyana
All type of buzzwords means the word which is used to
define the charcterstics of the particular object.
such as if we say that give the description about all the
buzzwords of java then we know that we have to describe the
charcterstics of java or what the feature it gives to us.
| Is This Answer Correct ? | 11 Yes | 1 No |
Answer / k.k
JAVA BUZZ WORDS ARE
1)SIMPLE:-Simple Because it dose not contain ptr.
Keywords are same as C++
2)Object Oriented:-It contains Primitive data type
do not contain friend keyword
object oriented.
3)Robust:- Less memory leakage problem
can not access memory directly.
JVM is betn hardware & Software
4)Distributed:-Support RMI & RPC
5)Secure:- Secured on INTERNET
6)Archtectural Neutral:-java program can run on any
running architecture
7)Portable:-Can run on any OS
because JVM is same for every os
JRE is diff for every OS
8)Multithreaded:-Supports Multithreding.
9)Interpreted:-java prg is interprited at least 5 times
10)Dynamic:-loading and unloading of LIB is at run time
| Is This Answer Correct ? | 13 Yes | 3 No |
Answer / saba
we say that give the description about all the
buzzwords of java then we know that we have to describe the
charcterstics of java or what the feature it gives to us.
| Is This Answer Correct ? | 7 Yes | 1 No |
Answer / rajani nagandla
An informal term for a fashionable word or phrase that is
used more to impress than to inform.
| Is This Answer Correct ? | 8 Yes | 6 No |
When you say String is immutable, what do you mean by that? Say I have String s = "Ness" s= s+"Technologies"; What will happen? If the value gets appended, then what is the meaning of immutable here?
What is stored procedure. How do you create stored procedure ?
What are Encapsulation, Polymorphism and Inheritance?
What is the purpose of the system class in java?
Tell me how many ways are there to initialise an integer with a constant.
abstract class Demo { public void show() { System.out.println("Hello I am In show method of Abstract class"); } } class Sample extends Demo { public void show() { super.show(); System.out.println("Hello I am In Sample "); } } public class Test { public static void main(String[] args) { //I WANT TO CALL THE METHOD OF BASE CLASS IT IS POSSIBLE OR NOT CAN WE USE SCOPE RESOLUTION OPERATOR TO CALL OR JAVA NOT SUPPORTED THAT :: OPERATORE } }
What is difference between == and === in js?
What is the use of an interface?
Explain the role played by Java Virtual Machine in Java Programming?
Can Java be said to be the complete object-oriented programming language
What will be the initial value of an object reference which is defined as an instance variable?
Explain the importance of import keyword in java?