what is the meaning of java that is (J A V A) full form of
JAVA

Answer Posted / nithya

THERE IS NO FULL FORM FOR JAVA. JAVA IS AN NAME OF COFFEE
SEED

Is This Answer Correct ?    197 Yes 96 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Is there a way to compare two structure variables?

829


What does a derived class inherit from a base class a) Only the Public members of the base class b) Only the Protected members of the base class c) Both the Public and the Protected members of the base class d) .c file

861


Write a c program to demonstrate character and string constants?

1893


What is the difference between new and malloc functions?

804


What is the value of c?

766


What is the full form of getch?

858


What is the difference between break and continue?

914


What does nil mean in c?

883


What are unions in c?

761


write a c program in such a way that if we enter the today date the output should be next day's date.

1904


How can you convert integers to binary or hexadecimal?

784


When should the const modifier be used?

849


in any language the sound structure of that language depends on its a) character set, input/output function, its control structures b) character set, library functions, input/output functions its control structures c) character set, library functions, control sturctures d) character set, operators, its control structures

919


main() { inta=10,b=20; a>=5?b=100:b=200; printf("%d ",b); }

1146


main() { struct s1 { char *str; struct s1 *ptr; }; static struct s1 arr[] = { {"Hyderabad",arr+1}, {"Bangalore",arr+2}, {"Delhi",arr} }; struct s1 *p[3]; int i; < BR> for(i=0;i<=2;i++) p[i] = arr[i].ptr; printf("%s ",(*p)->str); printf("%s ",(++*p)->str); printf("%s ",((*p)++)->str); }

1136