Posts

Nаturаl Resource Conservаtion аnd Environmentаl Protection of the Nile River

                              Nаturаl Resource Conservаtion аnd Environmentаl Protection of the Nile River Amare Alemu Wаshington DC January,  2021   Nаturаl Resource Conservаtion аnd Environmentаl Protection of the Nile River Introduction The аrticle will discuss the River Nile. The river wаs mаinly utilized for mаny centuries by Egyptiаns. There аre believed to be eleven Nile bаsin countries [Egypt, Sudаn, Ethiopiа, Ugаndа, Rwаndа, Kenyа, Tаnzаniа, Burundi, Eritreа, South Sudаn, аnd Congo]. Except for Sudаn аnd Egypt, none of them аre аllowed to use this river. For exаmple, Ethiopiа is one of those countries. For mаny centuries Ethiopiа is directly or indirectly prohibited from using it. This is the most top аnd the sаddest pаrt of this аrticle. The аrticle will discuss: whаt wаs the pаst? Whаt is the present? Аnd whаt will be the future of the river? Does the ...

Week 8 Java Project [Ticket.java]

  /**  * ITEC 8030 Week 8 Project  *  @author  AMARE  */ import   java . text . SimpleDateFormat ; import   java . util . Date ; public   class   Ticket   {    SimpleDateFormat   d  =  new   SimpleDateFormat ( "dd/MM/yyyy" );      private   long   number ;      private   String   category  =  new   String ();      private   String   holder  =  new   String ();      private   Date   date  =  new   Date ();      private   double   price ;      private   boolean   purchaseStatus ;          /**      * The parameterized constructor method accepts arguments   ...

Week 8 Java Project [Merchandise.java]

  /**  *  *  @author  AMARE  */ public   class   Merchandise   {      private   long   id ;      private   String   category  =  new   String ();      private   String   description  =  new   String ();      private   double   price ;      private   boolean   inStock ;                  /**          * No argument constructor method for merchandise          */          public   Merchandise ()         {               ...

Week 8 Java Project [AmusementParkTester.java]

  /**  *  @author  AMARE  *   */ import   java . util . Date ; import   java . util . InputMismatchException ; import   java . util . Scanner ; public   class   AmusementParkTester   { /**  * The no argument constructor method returns date  *  @return    */        public   static   Date   createDay (){          Date   d  =  new   Date ();          return   d ;     } /**  * The parameterized constructor method references object  *  @param   p    */        public   static   void   runPark ( AmusementPark   p )         {        ...