what is the meaning of java that is (J A V A) full form of
JAVA
Answer Posted / nidhi.s
Java does have a full form. It is unknown by many people.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What are different types of variables in c?
What are the advantages and disadvantages of a heap?
What is assert and when would I use it?
Why do we use static in c?
Write a C++ program to generate 10 integer numbers between - 1000 and 1000, then store the summation of the odd positive numbers in variable call it sum_pos, then find the maximum digit in this variable regardless of its digits length.
Explain how can I right-justify a string?
What is the benefit of using #define to declare a constant?
How do we make a global variable accessible across files? Explain the extern keyword?
Is c a great language, or what?
The program will first compute the tax you owe based on your income. User is prompted to enter income. Program will compute the total amount of tax owed based on the following: Income Tax 0 - $45,000 = 0.15 x income $45,001 - $90,000 = 6750 + 0.20 x (income – 45000) $90,001 - $140,000 = 15750 + 0.26 x (income – 90000) $140,001 - $200,000 = 28750 + 0.29 x (income – 140000) Greater than $200,000 = 46150 + 0.33 x (income – 200000) Dollar amounts should be in dollars and cents (float point numbers with two decimals shown). Tax is displayed on the screen.
How can you return multiple values from a function?
Explain bitwise shift operators?
Define the scope of static variables.
What is main function in c?
How can a string be converted to a number?