CS 207 – Midterm ProjectYour midterm project will be three parts, evaluated out of a total 100 points. Like the homeworks, you may work with up to one person on your midterm project. Part 1 is due on Monday February 27th at 11:59p.To submit Part 1, download your diagram slides as a PDF, and upload […]
Chosen restaurant (north Italia) Develop an actual website interface design, these are the following requirements: (using Figma XD or other prototyping apps) the home page the menu pagea reservation/ordering page, with a full form and error page, either 404 or 500 A different design for mobile and larger screen for each page Specs logo of […]
The Barking Lot is a dog day care center. Design a pseudocode for each of the following: 1) A program that accepts data for an ID number of a dog’s owner, and thename, breed, age, and weight of the dog. Display a bill containing all theinput data as well as the weekly daycare fee, which […]
Translate the c code project to assembly language mips with side comments explaining each line. #include #include #include #include #define SCREEN_WIDTH 60 #define SCREEN_HEIGHT 20 #define BALL_VELOCITY 1 #define PADDLE_WIDTH 20 #define PADDLE_Y SCREEN_HEIGHT -1 #define LEFT_HOLE_X 2 #define RIGHT_HOLE_X SCREEN_WIDTH – 1 #define HOLES_Y 1 #define SPEED_INCREASE_INTERVAL 100 int main() { // Initialize the […]
I HAVE A C CODE BOUNCING BALL GAME THE CODE IS IN C AND I WANT TO CONVERT THE CODE TO ASSAMBLY LANGUAGE IN MIPS. THE CODE SHOULD WORK AND COMPILE IN MARS PROGRAM. #include #include #include #include #define SCREEN_WIDTH 60 #define SCREEN_HEIGHT 20 #define BALL_VELOCITY 1 #define PADDLE_WIDTH 20 #define PADDLE_Y SCREEN_HEIGHT -1 #define […]
Tic-Tac-Toe Code an interactive, two-player game of Tic-Tac-Toe that has a graphical user interface. You should implement also a decent AI module (you play against the computer and the computer should not play randomly). I provide a little more details in the following: The idea is to play the game Tic-Tac-Toe (which is a two […]
Project 2RESOURCES ALLOWED: This project is to be completed individually. The only resources you may use when completing the project are Material posted on the course Blackboard page The course textbook and “further resources” listed in the Syllabus If you are unsure about whether a resource is allowed, then please ask your instructor. You should […]
SEED Labs – Secret-Key Encryption Lab1 Secret-Key Encryption Lab Copyright © 2018 by Wenliang Du. This work is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License. If you remix, transform, or build upon the material, this copyright notice must be left intact, or reproduced in a way that is reasonable to the medium in […]
Implement in Java with a GUI the game Minesweeper with the following restrictions: 1. Board size: you should give the option to the user to choose at the start of the game between “Beginner”, “Intermediate” and “Advanced”. The board size and number of mines for each of these three choices are the following: Beginner: board […]
Write a lexical analyzer that recognizes all of the tokens necessary for mathematical operations: Addition Operation Subtraction Operation Multiplication Operation Division Operation Modulo Operation Grouping symbols ( usually parenthesis ) Assignment operation Equals Operation Less than operation Less than or equal to operation Greater than operation Greater than or equal to operation Logical and operation […]