what is the meaning of java that is (J A V A) full form of
JAVA
Answer Posted / prasenjit das
there is no meaning of JAVA. But technologically Java is a language or a written programme used to launch some interactive internet applications.
| Is This Answer Correct ? | 1 Yes | 3 No |
Post New Answer View All Answers
List some basic data types in c?
A routine usually part of the operation system that loads a program into memory prior to execution a) linker b) loader c) preprocessor d) compiler
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.
What are the Advantages of using macro
What are predefined functions in c?
I was asked to write a program in c which when executed displays how many no.of clients are connected to the server.
what is the differnce between programing langauge and tool? is sas is a programing langauge r tool?
What is exit() function?
Write a code to remove duplicates in a string.
What is meant by type specifiers?
What is atoi and atof in c?
What are the features of the c language?
Where are local variables stored in c?
How can I rethow can I return a sequence of random numbers which dont repeat at all?
Can a variable be both constant and volatile?