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

Answer Posted / jaya prakash.b

JAVA means "Just Another Virtual Architecture "

Is This Answer Correct ?    0 Yes 2 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Differentiate call by value and call by reference?

776


What is the difference between #include

and #include “header file”?

823


Can we compile a program without main() function?

903


Sir i need notes for structure,functions,pointers in c language can you help me please

2206


What is 2c dna?

851


What is merge sort in c?

857


Do you know the difference between exit() and _exit() function in c?

839


Explain pointer. What are function pointers in C?

860


the process of defining something in terms of itself is called (or) in C it is possible for the functions to call themselves. A function called a) nested function b) void function c) recursive function d) indifinite function

1059


Why doesnt the call scanf work?

948


What is the 'named constructor idiom'?

863


What is scope rule in c?

853


When we use void main and int main?

836


What is data structure in c programming?

847


Write a program to maintain student’s record. Record should not be available to any unauthorized user. There are three (3) categories of users. Each user has its own type. It depends upon user’s type that which kind of operations user can perform. Their types and options are mentioned below: 1. Admin (Search Record [by Reg. No or Name], View All Records, Insert New Record, Modify Existing Record) 2. Super Admin (Search Record [by Reg. No or Name], View All Records, Insert New Record, Modify Existing Record, Delete Single Record) 3. Guest (Search Record [by Reg. No or Name], View All Records) When first time program runs, it asks to create accounts. Each user type has only 1 account (which means that there can be maximum 3 accounts). In account creation, following options are required: Login Name: <6-10 alphabets long, should be unique> Password: <6-10 alphabets long, should not display characters when user type> Confirm Password: Account Type: Login Name, Password and Account Type should be stored in a separate file in encrypted form. (Encryption means that actual information should be changed and Decryption means that Encrypted information is changed back to the actual information) If any of the above mentioned requirement(s) does not meet then point out mistake and ask user to specify information again. When Program is launched with already created accounts, it will ask for user name and password to authenticate. On successful authentication, give options according to the user’s type.

1771