Department of Information and Communication Engineering
LAB REPORT
Course Code : ICE 1248 Course Title : Object Oriented Programming LAB
Lab Task No. : 05
Lab Task Title/Topic :
Put Tick (✔) Mark
Obtained
Marks
Excellent
No. Evaluation Criteria with Marks Remarks
Good
Poor
Fair
Fail
REPORT WRITING
1 Theory & Objectives (2.5)
2 Materials & Methods (5)
3 Data Analysis & Discussion/Diagram (10)
4 Precautions and Conclusion (2.5)
5 Time Management (5)
TOTAL
LAB PERFORMANCE
1 Preparation for Lab (5)
2 Experiment and Engagement (15)
3 Communication (5)
TOTAL
18 Feb 2025 19 Feb 2025
Date of Experiment Date of Submission Teacher’s Signature
Semester : Spring Year : 2025 Level-Term : L1-T2 Section : A3
Submitted to : Md. Istakiak Adnan Palash
Lecturer, Dept. of Information and Communication Engineering
Daffodil International University
Submitted by : Zaffar Abdullah
Reg.No. : 242-50-059
Student ID No. : 0242420005171059
Dept. of Information and Communication Engineering
Daffodil International University
1. Write a java program for Method overloading and Constructor overloading?
2. Write a program to create a class Student with data ‘name, city and age’
along with
3. method printData to display the data. Create the two objects s1, s2 to declare
and access the values.
4. Write a program to create an employee class using parameterized constructor
with two parameters id and name and along with method displayinfo to
display the data. While creating the objects obj1 and obj2 passed two
arguments so that this constructor gets invoked after creation of obj1 and
obj2.
5. Write a program to print the area of a rectangle by creating a class named
'Area' taking the values of its length and breadth as parameters of its
constructor and having a method named ‘returnArea’ which returns the area
of the rectangle. Length and breadth of rectangle are entered through
keyboard.