A Parameterized method takes input values when called, while a non - parameterized method does not takes input values.
class Example {
void greet() {
System.out.println("Hello!");
void greet(String name) {
System.out.println("Hello " + ALEX);
}
}
GREET -> No parameters
GREET("ALEX") -> With Parameters
**
**Prithiv sir assigned some tasks which I completed successfully and uploaded to Gitlab.Through these tasks,I learned new concepts, applied them in practical coding and improved my problem solving skills.I maintained clean code with proper documentation and shared my updates consistently.Looking forward to taking on more challening tasks and growing futher.
Gitlab link - https://gitlab.com/Gitlab202515/rohit/-/tree/ec87c17c629a679d380e5fecb07b25e5cb2bb7f5/
Top comments (0)