Java Programming For each of the following enter T if the an
Java Programming:
For each of the following, enter T if the answer is True, otherwise enter F for False.
_____ (1) Common programming practices include establishing the algorithm of a method after a stub is defined.
_____ (2) Another term utilized to describe the call of a method is invocation.
_____ (3) In the call of a method, always use the same number of arguments as there are found in the parameters of the declaration.
_____ (4) Never use, in a Java applet, a method which works in a Java program, because they are not compatible.
_____ (5) A static method cannot be assessed without creating an object of the class type where the method is declared.
Solution
1, F(Algorithm is defined fist and then the stub could be define)
2, T( method call and invocation is same process)
3,T(if parameter is different it will cause compile time error)
4,F (An applet is a java program , that runs in a web browser )
5, F (Static metod reside under the class not with the object so no need to create an object to call static function)

