Answer Posted / gandhi gorantla
Yes we can,try it
class d
{
static{
System.exit(0);
}
}
it compiles and executes without error in java.
| Is This Answer Correct ? | 3 Yes | 2 No |
Post New Answer View All Answers
What's a good way to check for "close enough" floating-point equality?
Using functions, write a program that multiplies two arrays. Use the following functions: - Function ReadArray - Function MultiplyArrays - Function DisplayArrays
Is main is a keyword in c?
When is a null pointer used?
How to create struct variables?
I need a sort of an approximate strcmp routine?
What are the types of pointers?
Explain what is the difference between a string copy (strcpy) and a memory copy (memcpy)? When should each be used?
What is data type long in c?
How is pointer initialized in c?
Why shouldn’t I start variable names with underscores?
What are the keywords in c?
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.
#include
What does malloc () calloc () realloc () free () do?