MCPcopy Create free account
hub / github.com/PrajaktaSathe/Java / it1

Interface it1

Programs/StudentInterface.java:2–6  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1package inheritInterface;
2interface it1 {
3 int x = 10, y = 20;
4 public void add(int a, int b);
5 public void sub(int a, int b);
6}
7class arithmOp implements it1 {
8 public void add(int p, int q) {
9 System.out.println("Addition of two numbers: " + (p + q));

Callers 8

mainMethod · 0.65
bucketSortMethod · 0.65
p_holderMethod · 0.65
check_winnerMethod · 0.65
addEdgeMethod · 0.65
BFSMethod · 0.65
initMethod · 0.65
coinCombinationsMethod · 0.65

Implementers 2

arithmOpPrograms/StudentInterface.java
ComplexPrograms/ComplexNosOps.java

Calls

no outgoing calls

Tested by

no test coverage detected