3-Tier网络的开发

2023-08-28
阅读 7 分钟
450
The aim of the project is to develop a 3-tier network-based system which tests students' ability to demonstrate their understanding of contemporary programming languages by correctly answering multi-choice questions and short programming challenges.

Dstores存储的实现

2023-08-27
阅读 11 分钟
834
In this coursework you will build a distributed storage system. This will involve knowledge of Java, networking and distributed systems. The system has one Controller and N Data Stores (Dstores). It supports multiple concurrent clients sending store, load, list, remove requests. You will implemen...

OpenStack, Docker以及Kubernetes的搭建

2023-08-24
阅读 12 分钟
565
Create a new Virtual Machine named as "StudentName-OS" and your VM should be placed in 'Lab Final Exam' folder. Deploy the machine according to the below configs.OpenStack controller node:

图灵机模拟器

2023-08-18
阅读 17 分钟
421
You are meant to submit 10 files (ordered by which task asks you to start implementing them) - in each case, you are meant to submit a .h file and the corresponding .cpp file for each of the below:

使用Azure ML Studio预测模型

2023-08-17
阅读 3 分钟
598
For this assignment, you are to create a predictive model in Azure ML Studio for the attached dataset and turn in a report as specified in the following pages. You should use whichever data preparation, modeling, and model assessment techniques that were covered in this portion of the class that ...

Array的练习

2021-12-28
阅读 5 分钟
1.6k
DO NOT use vectors to process data in your function algorithms.This project can be a bit challenging as it involves working on and submitting three individual array processing-related programs (one for each scenario). For each program (a) carefully read the specification and the expected outcome ...

Distributed Mutual Exclusion算法详解

2021-12-27
阅读 7 分钟
1.4k
This assignment covers material presented during the lectures on distributed systems and builds upon the work in the practicals on distributed systems.

解析arxiv Metadata

2021-12-26
阅读 9 分钟
1.8k
In this assignment, you will practise working with files, building and using dictionaries, designing functions using the Function Design Recipe, and writing unit tests.

.OBJ解析器的实现

2021-12-25
阅读 15 分钟
2.1k
1) Open the Codio assignment via Coursera2) From the Codio File-Tree click on: lc4\_memory.h and lc4\_memory.c3) Remember to use the Codio "Pre-submission tests" function before submitting the assignment.

PCA算法

2020-06-14
阅读 3 分钟
1.5k
原文地址:PCA算法 Introduction 完成机器学习相关编程,实现PCA算法。 Submission Instructions and submission guidelines: You must sign an assessment declaration coversheet to submit with your assignment. - Submit your assignment via the Canvas MyUni. Kernel PCA and PCA You are required to write code...

Turtle库应用

2020-04-14
阅读 10 分钟
1.6k
You will be creating a small graphical Python 3 program. This program will use the turtle library to draw based on information taken from the user. You should already have all the experience you need with this library from Assignment 1.

地图等高线应用

2020-04-13
阅读 14 分钟
1.4k
In this assignment you will write functions that use lists and loops (including nested lists ad nested loops). You can do this assignment with only the concepts through Week 6 of PCRS. After completing this assignment, you will:

Easy Blackjack的博弈问题

2020-04-11
阅读 21 分钟
1.6k
This assignment is the kind you can expect if you work in an actuary, e.g. calculating expected return and assessing risk. Since Easy Blackjack is a game of chance, short term result may fluctuate and not be representative of the expected value of playing the game long term. There are two main me...

使用Pandas库分析股票

2020-04-08
阅读 10 分钟
1.9k
This assignment builds on Lectures 7 to 9 and on Tutorials 6 and 7. You might want to consider using some of the Python code discussed in those lectures and tutorials to answer some of the questions below.

使用papi库优化程序

2020-03-30
阅读 3 分钟
1.4k
Instrument the function "func" of program prof.c to gather the node profile, the edge profile and the path profile of the function. Treat the "for" loops in the function "func" as nodes, i.e., you don't need to go in the for loops to generate paths. The "func" function has a number of arguments. ...

企业Vulnerability分析

2020-03-28
阅读 9 分钟
1.3k
You have been engaged by Auric Enterprises to perform a desktop Threat and Vulnerability Analysis. Auric Enterprises has a large mining and metallurgical operation in central Australia. The whole operation occupies a single site of approximately 6 km x 26 km, including mining pits, processing pla...

Agent based game

2020-03-27
阅读 13 分钟
1.2k
Modern computer games are complex, immersive and engaging entertainment experiences made possible through software that implements complex relationships between and behaviours within the objects and agents we find in these games. Within SIT255 we are investigating the architectural patterns and a...

Class入门操作

2020-03-24
阅读 9 分钟
1.4k
In this assignment, you will be practicing by creating a set of simple classes. You will create three different Python files; prob1.py will have three small classes, while prob2.py and prob3.py will each have one class a piece. Our test code will import your files, and then use your classes, test...

Minimax实现Malma

2020-03-20
阅读 17 分钟
1.3k
This is a programming assignment. You will be provided sample inputs and outputs (see below).Please understand that the goal of the samples is to check that you can correctly parse the problem definitions and generate a correctly formatted output. The samples are very simple and it should not be ...

Tweet分析器

2020-03-19
阅读 11 分钟
1.8k
This assignment is based on the social network company Twitter (Links to an external site.). Twitter allows users to read and post tweets that are between 1 and 280 characters long, inclusive. In this assignment, you will be writing functions that (we imagine) are part of the programs that manage...

寻路算法的实现

2020-03-18
阅读 11 分钟
2.2k
In this assignment, you will implement, investigate and optimize a number of discrete different planning algorithms which can be used by a robot (the stdr simulation robot from lab exercise 2) in a warehouse-like environment. The robot will be given a known occupancy grid map of the environment. ...

语言生成器

2020-03-17
阅读 4 分钟
1.9k
This is an individual assignment. You can discuss solutions with your classmates, but should only exchange information orally, or else if in writing through the discussion board on myCourses. All other forms of written exchange are prohibited.

探索Buffer Overflow

2020-03-14
阅读 12 分钟
1.9k
The learning objective of this homework is for you to gain first-hand experience with buffer-overflow attacks. Students are given three problems:

SQL数据分析

2020-03-13
阅读 5 分钟
1.7k
This test is designed to give us a sense of your SQL, data analysis skills, and experience in managing large datasets. Below are some important things to remember:

卡牌游戏21 With Primes

2020-03-13
阅读 10 分钟
1.2k
原文地址:卡牌游戏21 With Primes Introduction 用Java实现卡牌游戏21 With Primes. Introduction This document specifies the programming component of Assignment 1. This is an individual assessment task and must be your own work. You must attribute the source of any part of your code which you have no...

Shadow Bounce的开发

2020-03-12
阅读 7 分钟
1.1k
Shadow Bounce is an arcade game where the player must attempt to clear the game board of pegs with a limited number of shots. Once the board is cleared, the player can progress to next board, and so on until all boards are cleared or the player runs out of shots, whereupon game should end. A turn...

Ohm's Law

2020-03-11
阅读 8 分钟
1.4k
原文地址:Ohm's Law Introduction C++基础编程,使用Ohm's Law解决电路的计算问题。 Programming concepts: Looping instructions: for, while, do/while Reading and writing text files ECE concepts: Analysis of resistive circuits: KVL, KCL, Ohm's Law The voltage divider The Wheatstone bridge Background Vo...

路径查找算法

2020-03-09
阅读 12 分钟
1.9k
This is a programming assignment. You will be provided sample inputs and outputs (see below). Please understand that the goal of the samples is to check that you can correctly parse the problem definitions and generate a correctly formatted output. The samples are very simple and it should not be...

Minesweeper

2020-03-06
阅读 7 分钟
1.3k
原文地址:Minesweeper Introduction 使用Brute-Force算法,寻找Minesweeper的解决方法。 Objectives The objectives of this assignment are: To gain experience in designing algorithms for a given problem description and implementing those algorithms in Python 3. To demonstrate your understanding of: how...

扫雷

2020-03-05
阅读 7 分钟
1.3k
原文地址:扫雷 Introduction 实现扫雷游戏Minesweeper. Objectives The objectives of this assignment are: To gain experience in designing algorithms for a given problem description and implementing those algorithms in Python 3. To demonstrate your understanding of: how to decompose code into functio...