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

Answer Posted / ashok kumar sahoo

Junction Actually Virtual Application.

Is This Answer Correct ?    1 Yes 3 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

#include main() { enum _tag{ left=10, right, front=100, back}; printf("left is %d, right is %d, front is %d, back is %d",left,right,front,back); }

723


What are the header files used in c language?

593


write an interactive C program that will encode or decode a line of text.To encode a line of text,proceed as follows. 1.convert each character,including blank spaces,to its ASCII equivalent. 2.Generate a positive random integer.add this integer to the ASCII equivalent of each character.The same random integer will be used for the entire line of text. 3.Suppose that N1 represents the lowest permissible value in the ASCII code,and N2 represents the highest permissible value.If the number obtained in step 2 above(i.e.,the original ASCII equivalent plus the random integer)exceeds N2,then subtract the largest possible multiple of N2 from this number,and add the remainder to N1.Hence the encoded number will always fall between N1 and N2,and will therefore always represent some ASCII character. 4.Dislay the characters that correspond to the encoded ASCII values.  The procedure is reversed when decoding a line of text.Be certain,however,that the same random number is used in decodingas was used in encoding.

2725


What is structure in c explain with example?

645


What is extern keyword in c?

648






I just typed in this program, and it is acting strangely. Can you see anything wrong with it?

567


Explain how can you check to see whether a symbol is defined?

665


What is calloc in c?

667


Can include files be nested?

631


printf(), scanf() these are a) library functions b) userdefined functions c) system functions d) they are not functions

640


`write a program to display the recomended action depends on a color of trafic light using nested if statments

1637


What is a void pointer? When is a void pointer used?

632


#include int main(){ int i=10; int *ptr=&i; *ptr=(int *)20; printf("%d",i); return 0; } Output: 20 can anyone explain how came the output is 20

1269


Explain what does a function declared as pascal do differently?

646


What is the difference between strcpy() and memcpy() function in c programming?

629