Category: Computer science and IT assignments

Python3 Case study

In this project you will put together a “primer” on your assigned language (Python 3) as it relates to all our course concepts.
It may be done on Word or PowerPoint
There is no requirement for pages but ensure all requirements have be addressed.

See attachment for full project.

Defensive Security – Assignment: Conducting a Risk Assessment

Defensive security involves focusing on reactive measures to breaches and includes processes such as finding system vulnerabilities, patching security flaws, and retiring software that introduces excess risk into an environment. For this assignment, you will be given a networked information system with an access control matrix. You need to conduct a risk assessment by evaluating network security threats, physical media vulnerabilities and auditing system security. You will then deliver a 1,000-1,500 word report detailing the types of risk discovered. Your report should also include the creation of a contingency plan for breach or failure.

Scenario
The Book Blazer Publishing Company just found out they may have been hacked! They have been concerned for quite some time that a competitor has been stealing book ideas from their content management system (CMS). As the city’s premier security consultant, they retain you to verify whether this is true or not. You are given an architecture diagram of the CMS which consists of:

Web server to house the web site front-end
Application server to provide data processing functions
SQL server to house content metadata
File server on which content is stored
Firewall to protect the system
VPN appliance so employees can reach the CMS from the outside
You are also provided the following access control matrix showing each group and what access they have to each component:

Dictionaries (Symbol Table)

You will implement a Symbol Table using dictionary in this assignment.

https://github.com/edogdu/intro_to_python/blob/master/asg7_dictionary_symbol_table.ipynb

Your program should produce an output exactly like this:

> x = 1
> y = 2
> z = 3
> x
1
> list
x = 1
y = 2
z = 3
> y
2
> pi = 3.14
> list
x = 1
y = 2
z = 3
pi = 3.14
> t
No such symbol
> x =
Error
> x = 7
> list
x = 7
y = 2
z = 3
pi = 3.14
> quit

This is an assignment for a beginner level python course, so no complicated or expert level looking code. I just need the code you used to solve this.

BIS Design and Development

In this coursework you are expected to use your knowledge on object oriented PHP in order to construct functional components of Web applications. Furthermore, you will be creating a prototype to show how specifications of given cases can be implemented using object oriented PHP and MySQL. You are asked to test your work on given scenarios in order to demonstrate how your implementation works.

For the needs of this coursework, you must complete part A and part B and give a presentation on the work submitted, during week 12.

Assignment

Write a program with a graphical interface that allows the user to convert an amount of money
between U.S. dollars (USD), euros (EUR), and British pounds (GBP). The user interface should
have the following elements: a text box to enter the amount to be converted, two combo boxes
to allow the user to select the currencies, a button to make the conversion, and a label to show
the result. Display a warning if the user does not choose different currencies. Use the following
conversion rates:
1 EUR is equal to 1.42 USD.
1 GBP is equal to 1.64 USD.
1 GBP is equal to 1.13 EUR.
It is the programmers responsibility to ensure that no matter what the user enters, the
program does not crash.
Call the main program Converter.java. You will need another class for the frame.
Follow all directions in the COP3337 Class Rules for Submitting Programs.
Please remove any package statements in your program. The program must compile and run
from the command line no matter what IDE you use.
Note that a program that does not compile and run and do some part of the assignment will
not earn any points.

Intro to Python and Javascript/HTML

$220 to complete all my assignments / projects for these two classes.
I attend a community college and these are super easy. Assignments are all available online and can be done without logging into anything.
Price is slightly negotiable.
Preferred contact method is Discord.

C Assignment 4

Hello, this is an assignment to be coded in purely C programming language, with no syntax taken from the C++ language. It has to be coded on the Debian version of linux, not on windows nor MacOS. I hope for the assignment to have easy to understand code, beginner friendly (as much as possible). No need for commenting, unless crucial for understanding code/syntax.

This assignment is a 3 part question. With the first two parts being fully functional and coded by myself, only the third part needs to be completed by today. I’ll only upload the third part as an attachment, then i’ll upload the full document as well as required code to work alongside with part 3.

C Assignment

Hello, this is an assignment that is to be done in only C programming language. I hope for an easy to understand layout for the assignment, with commenting done when needed. Its do be coded in the C language, and on the Debian version of linux only. Any further information will be given when asked.

Assignment

Cant Click This

This program should have three screens;
1.    Title Screen This screen should have text across the top saying, Welcome to the Button Clicking Game! Underneath that, should be a text box that asks the user to input their name. Next to the text box, there should be a button that initiates the game, but only if a name has been typed into the text box.
2.    The Game Screen The game is simple. There is a button in the middle of the screen that reads, Click Me However, when the mouse approaches the button, it runs away. The user should never be able to catch the button, and if they chase it to the side of the pane, it should jump back to the middle of the pane. To make this easier for escape, the pane should quite large,  > 1000×1000. As soon as the game starts, there should be a 20 second timer started. This timer can be hidden, but at 5 second intervals, the button should mock the user with an insult. At the 20 second mark, the game ends, and should transition to the Game Over screen.
3.    Game Over This screen should just be an Image. An image you wish, but remember, you will need to submit the image with the program, so that I can put it into the same folder as the program. You may also use a link to a web image, but it must be a secure site (https).

Coding HW

Programming Project:

Write a program to read housing prices and calculate the mean and standard deviation. The data for this project comes from this file: prices.txt

-Exemplary Credit (10/10)
Program sorts data in descending order (using a function)
Program calculates the median (using a function)

-Satisfactory Credit (7/10)
Program uses a function to read data into an array from data file
Program calculates mean and standard deviation (each a separate function)
Computations must be correct
Fully comment your code.
Put a block of comments at the top of your program that give a title for your lab, your name, lab section, and a brief program description.
In your program use line comments to explain what various lines or parts of your program do.

prices.txt:

150000
250000
135000
450000
332000
221000
100000
340000
765000
200000
150000
50000
255000
175000
3000000
235000