Questions Uploads

Problem Statement/Scenario

Can somebody please help give me an idea of what a program might look like that would matche the pseodocode posted below? Any advice would be helpful. I have struggled to keep up in this class big time, so I could use some help creating this program. This is my final project assignment and I want to get the highest grade possible!

Thank you,

pseodocode below:

Problem Statement/Scenario: For this assignment we are to imagine that we are in charge of managing a zoo’s computer infrastructure, and we are being asked to make a monitoring program that will help zookeepers monitor the zoo animal activities and their living habitats.

My Pseudocode:

Invoke Method Main // Use the public static void main(String[]args)” to start execution of    program

INITIALIZE variables/options

Get User Input // Have user pick one of the following options

           1. Animal activities

           2. Animal living habitats

           3. Exit program

IF User Input = animalLivingHabitats 

           Print “List of Habitat/Animal options”

IF User Input = animalActivitees

           Print “List of Animals/Activities

ELSE User Input = exit

           END

ENDIF

WHILE User Input = animalLivingHabitats

           Ask User Habitat specifics

                       DETAILS on penguin habitat 

DETAILS on bird house

                                   DETAILS on aquarium

// After user picks Habitat the following information will appear

           ENDWHILE

           REPEAT // for each habitat selected

                       PRINT “Habitat: “

                       PRINT “Temperature: “

                       PRINT *****”Food source: “

                       PRINT “Cleanliness: “

           UNTIL condition

WHILE User Input = animalActivites

          Ask User Animal specifics

                       DETAILS on lions

                       DETAILS on tigers

                       DETAILS on bears

                       DETAILS on giraffes

                       // After user selects Animal/Activities the following information will appear

ENDWHILE

REPEAT // for each animal selected

           PRINT “Animal: “

           PRINT “Name: “

           PRINT “Age: “

           PRINT *****”Health concerns: “

           PRINT “Feeding schedule: “

UNTIL condition

IF animalAcitiities != Healthy/normal activity

           PRINT “Healthy/normal activity with error message” //On a new line

IF animalLivingHabitats != Healthy/normal habitat

           PRINT “Healthy/normal habitat with error message” //On a new line

           ELSE

END

ENDIF

RETURN

}

}

 
Looking for a Similar Assignment? Order now and Get 10% Discount! Use Coupon Code "Newclient"

new arrival

Some modification:

On the home page can you replace the image with changing image check this link for idea (https://www.rosewe.com/

On the navigation bar add an image of cart

Replace click to purchase with add to cart

When the customer clicks on ad to cart it will add the items on the cart

When the customer clicks on the cart it will show the items with proceed to checkout

When the customer clicks on proceed to checkout it will open a new window just like the one on the design with full name, email address, address and phone number remove the age.

 Put links on the images that take visitors to the items page. For example, if they click on a necklace on the “About Us” page they would be sent to the jewelry page.

Also on the navigation bar add ‘’ new arrival’’ when the customer clicks on that it will display a table something like this

Jewelry September 15 2017
Fabrics October 15 2017
Holidays special November 1502017
Christmas sale December 5 2017
   
   
 
Looking for a Similar Assignment? Order now and Get 10% Discount! Use Coupon Code "Newclient"

Authentication System Pseudocode

Authentication System Pseudocode :



initialize i to 3 // for the number of tries user gets

while i> 0

input username and password

convert entered password to the md5 code

open users file

if username entered does exists then

return password from the file

if returned password matches exactly with the md5 of user entered password then

login successful

call authorization(username)

return is true

else

print error message login failed password incorrect

decrease i by 1

else

print error message Invalid Username or Password

decrease i by 1

if i is equal to 0 then

print error message max tries exceeded

return false

authorization(username)

open credential file

fetch the role for the given username

print it on the screen

close the file

main

call authentication and store the return value in login variable

if login is true then

show logout option

else

show login and exit options

 
Looking for a Similar Assignment? Order now and Get 10% Discount! Use Coupon Code "Newclient"

License Headers in Project Properties.

/*

  • To change this license header, choose License Headers in Project Properties.
  • To change this template file, choose Tools | Templates
  • and open the template in the editor.
    */
    package authenticationsystem;

/**
*

  • @author jack
    */
    public class Credentials {
    String userName;
    String hashedPassword;
    String role; public Credentials(String userName, String hashedPassword, String role) {
    this.userName = userName;
    this.hashedPassword = hashedPassword;
    this.role = role;
    } public String getUserName() {
    return userName;
    } public String getHashedPassword() {
    return hashedPassword;
    } public String getRole() {
    return role;
    }
    }
 
Looking for a Similar Assignment? Order now and Get 10% Discount! Use Coupon Code "Newclient"