Question: Output shown bellow: and on the output screen is should show run: Welcome to Othello. Othello project Create a new Java Application project named Othello

Output shown bellow:

and on the output screen is should show run:
Welcome to Othello.
Othello project Create a new Java Application project named Othello allowing Netbeans IDE to create the main class called Othello.java Class should have been automatically created by the Netbeans IDE Update main) method to do the following Othello.java 1. Call static method System.out.println() output to the console "Welcome to Othello!" 2. Call static method JOptionPane.showMessageDialog0 using the method signature that receives two arguments; the first argument should be null, the second argument should be explicit text "Let's Play Othello!" Create package core Create class AiPlayer so that it extends class Plaver Create class Board Create class Constants // in the "real world" we avoid "hardcoding" data therefore use // constants in order to use words to convey data that is set to a // specific value, it makes source code easier to understand // You can choose any color you want for DARK and LIGHT, these // are the ones I chose, not a requirement core package AiPlayer.java Constants.java //Constants are declared so that 1. their access level modifier is public 2. to ensure they cannot be modified they are final 3. to allow access without instantiating an instance of the class hey are static Include constants I. Color DARK = ColorBLACK: 2. Color LIGHT Color.WHITE: 3. int PLAYER ONE 0: 4. int PLAYER TWO= 1: 5. int ROWS 8; 6. int COLUMNS 8: 7. int NUMPLAYERS 2 Disc.java Game.java HumanPlaver.java IPlayer.java Plaver.java userInterface packageCreate package userInterface Create class Disc Create class Game Create class HumanPlayer so that it extends class Player Create interface IPlayer Create abstract class Plaver so that it implements interface IPlaver
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
