The world’s Largest Sharp Brain Virtual Experts Marketplace Just a click Away
Levels Tought:
Elementary,Middle School,High School,College,University,PHD
| Teaching Since: | Apr 2017 |
| Last Sign in: | 103 Weeks Ago, 3 Days Ago |
| Questions Answered: | 4870 |
| Tutorials Posted: | 4863 |
MBA IT, Mater in Science and Technology
Devry
Jul-1996 - Jul-2000
Professor
Devry University
Mar-2010 - Oct-2016
I am needing some help with the Java code on my final project. It looks as if I have everything in place, but I am getting one error when running the program. I am just trying to solve the error and be done. Thanks
The part of the code that I am having trouble with is found here
//create array based on credentials.txt
final int NUM_ELEMENTS = 6;
String[] storedUsername = new String[NUM_ELEMENTS];
String[] role = new String[NUM_ELEMENTS];
String[] hashPassword = new String[NUM_ELEMENTS];
String username = "";
String password = "";
String hash = "";
userRoles userInput = new userRoles();
String userRole = "";
int i = 0; //loop variable
int j = 0; //loop variable
int user = 0;
boolean verified = false;
specifically, this partÂ
userRoles userInput = new userRoles();
IT 145 Final Project Guidelines and RubricOverviewA successful career in software development depends on a thorough understanding of the fundamentals of object-oriented programming and best practices forsoftware development. Your final project for this course will require you to apply the knowledge you have obtained prior to and during this course to thedevelopment of a simple, working program and accompanying process documentation. Professionals in software development document their process includingrequirements, design decisions, and defects for several different reasons as follows:To track what has been accomplishedTo track when items were completed in order to maintain a scheduleTo justify why a product works the way it does (verification and validation)To provide resources if a new team member is added so he or she can catch upTo see where the most defects are being injected in order to prevent themTo review what happened during the project in order to create new ways of improving the processFor your development project, you will imagine you are in charge of managing a zoo’s computer infrastructure. There are many aspects of a zoo that need to bein place to keep it running. Two of those aspects are controlling data access and monitoring animal activities in exhibits. You will select which of these keycomponents you wish to develop. Both options require at least two classes and for the design to be broken into multiple methods. Select one of the optionsprovided in the prompt below and create your program and process documentation based on the specified requirements.The final project for this course is the creation of an authentication or monitoring system. The final project represents an authentic demonstration ofcompetency because it involves application of real-world Java programming. The project is divided intoone milestoneand several final project journalassignments, which will be submitted at various points throughout the course to scaffold learning and ensure quality final submissions. Milestone One will besubmitted inModule Five.The final project will be submitted inModule Seven.In this assignment, you will demonstrate your mastery of the following course outcomes:Implement appropriate variables, operators, methods, and classes as they are used in object-oriented programming for developing successful programsUtilize appropriate syntax and conventions in terms of their best practice and use in programmingDebug coding errors by testing existing code, identifying errors, and correcting errors for improved functionalityAssemble basic, working programs that effectively integrate essential elements of object-oriented programming
Â
Attachments: