The document outlines a set of JAVA assignment questions for ECE-3, covering key concepts such as object-oriented programming (OOP), Java buzzwords, constructors, method overloading, static variables, inheritance, dynamic method dispatch, interfaces, and multiple inheritance. Each question prompts the student to explain concepts or write Java programs to demonstrate their understanding. The assignment aims to assess the student's grasp of fundamental Java programming principles and OOP concepts.
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0 ratings0% found this document useful (0 votes)
0 views1 page
JAVA Assignment Questions
The document outlines a set of JAVA assignment questions for ECE-3, covering key concepts such as object-oriented programming (OOP), Java buzzwords, constructors, method overloading, static variables, inheritance, dynamic method dispatch, interfaces, and multiple inheritance. Each question prompts the student to explain concepts or write Java programs to demonstrate their understanding. The assignment aims to assess the student's grasp of fundamental Java programming principles and OOP concepts.
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 1
JAVA Assignment Questions(ECE-3)
1. Explain the oop concepts. Write the disadvantages of procedural oriented
programming 2. Explain the Java buzzwords. Explain why java is known as platform independent language 3. Write a java program for sum of the elements in an array 4. What is a constructor. Explain about different types of constructors. 5. Explain method overloading with an example 6. What is static variable and static methods ,explain with an example program 7. Write a java program for call by reference 8. What is inheritance. Explain single inheritance with a program 9. Explain dynamic method dispatch with a program 10. How to call super class constructor from a subclass explain? 11. What is an interface .How an interface differs from a class and abstract class. 12. Explain how multiple inheritance can be implemented in java .