how to print a message to console without using main()
function?(do not use even static blocks also.)
Answers were Sorted based on User's Feedback
Answer / ravi kumar
No method can be called with out using main() method.
Every program execution starts from main() method only.
even you declare the methods inside the main() method class or out side the main() method class.
| Is This Answer Correct ? | 1 Yes | 6 No |
Answer / gaurav
with use of main we can print message in cosole by the use
of static block because java provide class loading machanism
i n program ,
Example-
class A
{
static
{
System.out.println("execute with out use of main");
System.exit(0);
}
}
| Is This Answer Correct ? | 1 Yes | 6 No |
Answer / jaya
public class classWithoutMain {
private static int x = load();
private static int load() {
System.err.println("This message will be printed");
System.exit(0);
}
}
| Is This Answer Correct ? | 2 Yes | 8 No |
Answer / narender
using a static block you can print the message (string)s.o.p
| Is This Answer Correct ? | 11 Yes | 29 No |
A game that has five levels of play has the score for each level stored in an array. You are to write a program that goes through that array and finds: a) the minimum score, and the level at which it occurred b) the maximum score, and the level at which it occurred c)the average score for all five levels The score data you must use for this program are as follows: Game Level Score 1 450 2 316 3 148 Stack implementations is mandatory.
write a c program which takes 20 numbers in an array as input from user and rearrange them in two different array defining even or odd
Is there any static classes are in java give some examples
Write a java program to display multiplication table in a Frame.
write a program in java to solve a system of n-variabled simultaneous equations using the guassian elimination method. let the maximum possible value of n be 100. run the program using hypothetical values for a set of 10- variables simultaneous equations. print out the program, the input equation and the results generated by the program.
Design a program using one-dimensional array that determines the highest value among the eight input values from a user. Display the difference of each value from the highest to the lowest.
we compile any program bu c:/>javac prog.java and run as c:/>java prog Here what's the meaning of c in javac. We have java Interpreter but not compiler.Then why we have to use javac. Please answer this question?
Why we r using String args[] in main() even though v r not passing any arguments in command line?
Is it possible to define marker interface in java.If possible then how to define user defined marker interface?
write a program in java to find the moving average of all prime numbers between 2 and 100.
inner join,outerjoin,trigger,stored procedure explain with code snippets?
How can we get the details for printing the employee details at run time using JDBC connectivity? can u provide the coding for that? Its urgent?