-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTechDepartment.java
More file actions
34 lines (33 loc) · 981 Bytes
/
TechDepartment.java
File metadata and controls
34 lines (33 loc) · 981 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
/**************************************************************
* Student :Ramakrishnan N
* Assignment : Graded Coding Assignment 1
* Description : Sub class called TechDepartment created extending Super class SuperDepartment
* Constraints : Methods created with return type string and no parameters allowed
*
*
*
***************************************************************/
package department;
public class TechDepartment extends SuperDepartment
{
public String departmentName()
{
String departmentName = "Tech Department";
return departmentName;
}
public String getTodaysWork()
{
String getTodaysWork = "Complete coding of Module 1";
return getTodaysWork;
}
public String getWorkDeadline()
{
String getWorkDeadline = "Complete by EOD";
return getWorkDeadline;
}
public String getTechStackInformation()
{
String getTechStackInformation = "Core Java";
return getTechStackInformation;
}
}