import java.*;
import java.io.*;

class inter
{
  public static void main(String[] args) 
   {
     shape circleshape=new circle();      
     circleshape.Draw();
    }
}
 
interface shape
 {
     public   String baseclass="shape";
     public void Draw();     
  }
 class circle implements shape
 {
   public void Draw() 
   {
     System.out.println("Drawing Circle here");
    }
 }

Leave a Reply

Subscribe to Posts | Subscribe to Comments

All Notes on BCA

All Notes  on BCA
BCA all subjects notes

Total Pageviews

Translate

Powered by Blogger.

Copyright © All Notes on BCA