国产人妻人伦精品_欧美一区二区三区图_亚洲欧洲久久_日韩美女av在线免费观看

合肥生活安徽新聞合肥交通合肥房產生活服務合肥教育合肥招聘合肥旅游文化藝術合肥美食合肥地圖合肥社保合肥醫院企業服務合肥法律

代寫COMP501 ICT Fundamentals

時間:2024-08-19  來源:合肥網hfw.cc  作者:hfw.cc 我要糾錯



COMP501 – COMPUTING TECHNOLOGY IN SOCIETY
Semester 2, 2024
Assignment 1: ICT Fundamentals
Total Marks: 100 Contribution to the final mark: 40%
Due: 6:00 pm, Friday, 23rd August 2024
Assignment Aim
The assignment has 4 parts:
1. It aims to give students an understanding of how computer systems represent real-life data such as positive numbers, negative numbers, floating point numbers, text, and at the lowest level seen by the programmer, namely binary numbers.
2. It prepares students with the ability to install multiple operating systems using VirtualBox (https://www.virtualbox.org/) and comparatively evaluate the Linux/UNIX Operating Systems (OS). This assignment also prepares students to understand the basic concepts covering Linux/UNIX file systems, commands, and working environments.
3. It helps students understand the basic idea of contemporary Machine Learning and Deep Learning using Google Colab (https://colab.research.google.com/).
4. It aims to have students demonstrate an awareness of enterprise information systems, their application in the business environment, and modelling techniques for systems requirements:
a. It prepares students with the ability to analyse business cases and document the purpose, objectives, data requirements, data flows, input documents and output documents of common business functions and processes expressed in a range of information systems.
Submission Instructions and Academic Integrity
Submission Instructions
1. The assignment must be submitted on CANVAS.
2. Submit a zip file containing all your assignment work:
a. A .docx or .pdf file of your assignment.
b. A folder containing your images.
Compress these to “LAST NAME_Student ID.zip” and submit the zip file only.
Miscellaneous requirements:
· The assignment will not be marked if:
o It contains any form. of malware (e.g., computer virus)
o Not submitted in correct file format
· Keep a backup copy of your assignments to be:
o uploaded to “Turnitin” anti-plagiarism service – if requested.
o submitted as a hard copy – if requested.
Part One: Conversions between Number Systems (25 marks):
Note: Remember to show all your workings where possible
Please fill your ID number in the box here:
               
 ID =
Consider A = the last 2 non-zero digits of your AUT ID number:
For example:
· If your ID is 12**86 then A = 86.
· If your ID is 12**06 then A = 26.
A =
Question 1: Converting Between Number Bases (4 marks)
Perform. the following conversions between different number-based systems (3 marks each):
Assume the number A is a decimal number (base 10):
1. Convert A10 (from Decimal) to Binary à call the answer A2
2. Convert A10 (from Decimal) to Hexadecimal à call the answer A16
Question 2: Unsigned Arithmetic Operations (4 marks)
Carry out the operations, assume that the numbers are unsigned and unlimited bits to represent:
a) Base 2: A2 + 101010012
b) Base 16: A16 + A716
Question 3: 2’s Complement Conversion (5 marks)
Assume that numbers are represented as signed, 8-bit 2’s complement representation.
If A = 86 then B10 = -86 (Replace with the last 2 non-zero digits of your ID) to get:
B10 =
Work out the following question:
Convert B10 to 8-bit 2’s complement Binary; give the answer in 8 bits binary number à call the answer C2
(*) note that the number is negative, so the answer will start with ‘1’.
C=

Question 4: 2’s Complement Operations (8 marks)
Assume that you have the number C2 found in Question 3, represented as signed, 8-bit 2’s complement representation.
Carry out the following operations with signed 8-bit 2-s complement binary number C2 found in Question 3. Indicate whether or not overflow occurs.
a) AC2
b) C2  + 0100 1101
Question 5: ASCII Characters (4 marks)
The Appendix gives a table for 7-bit ASCII. Using this table, we can work out the hexadecimal value corresponding to the encoding of this ASCII string “ABBA” (assume each 7-bit code occupies the space of an 8-bit byte with the MSB=0) as:
ABBA = 4142424116
Using the Ascii table, find the hexadecimal and Binary values corresponding to your full name (note that there are spaces in the string your full name). Answer the following:
a) Your full name:
Your full name in Hexadecimal (base 16):
(2 marks)
b) How many bits (not bytes) are used (do not count the end of string byte) (2 marks).
Part Two: Linux Operating System (25 marks):
Question 1: Setting up one Linux operating system (5 marks)
Take screenshots during installation and when completed. Include screenshots in your    assignment.
Note to Apple Mac Users: You will have to perform. this section in the lab.
1.   Download and install Virtual box if it isn’t already installed on your machine.  
 A tutorial on VirtualBox can be found at:
https://www.youtube.com/watch?v=sB_5fqiysi4.
Remember to submit at least 2 screenshots of installing Virtual box.
2. Download and install a Linux Operating System.
Obtain a copy of a mandatory Linux distribution such as Puppy-5.0. Download Puppy from AUT here: https://cv.aut.ac.nz/files/comp501/lucid-puppy-5.00.iso
OR
You can download any ISO or VDI files from the Internet at:  http://linuxlookup.com/linux_iso or
http://virtualboxes.org/images or 
Puppy Linux | VirtualBoxes - Free VirtualBox® Images).
Once you download a copy of the ISO file, you can install it on Virtual Box.
Remember to submit at least 2 screenshots of installing Linux.
Question 2: Manipulate directory structures in Linux (20 marks – 2 marks each)
Note to Apple Mac Users: You can use Terminal to complete this question.
You will use the CLI (command-line interface) and provide:
a. The text or screenshots of command(s) that you type to perform. a task.
b. The text or screenshots of any console output from those commands (the output from a directory listing, for example).
c. Make sure that you include ALL the commands you use to do a task. This includes any commands you have to type to move to a specific directory. Make sure your pasted texts or screenshots are clear enough to show where you are or have moved to.
Use any OS that you set up in Question 1 (Puppy is recommended).

Replace XXX below with your first name. If your first name is John, XXX = John.
Assume you have started in your home directory.
1. Perform. a command that displays the absolute path of your home directory (your current location). Create a new directory inside your home directory and name it XXX.
2. Now navigate to the XXX directory and create directory ASSIGNMENT and change your current working directory to ASSIGNMENT.
3. Create three new subdirectories called XXXDirA, XXXDirB, and XXXDirC in ASSIGNMENT directory.
4. Create a new file called “MyInfo.txt” using the touch command and insert three lines into the file (you may use echo command and >> command).
a. The first line should contain your name and ID number.
b. The second line should be the name of your favourite movie.
c. The third line should be the first sentence of your favourite song.
And display the contents of the file “MyInfo.txt” to the standard output screen (you may use cat command).
5. Display the number of words in the file “MyInfo.txt” (you may use wc command).
6. Copy the file “MyInfo.txt” to directory “XXXDirA” and rename it to “MyInfoCopy.txt”.
Make another copy of “MyInfoCopy.txt” and name it “MyInfoCopy2.txt” (also store in the same directory “XXXDirA”).
Then, display the contents of the directory “XXXDirA” using the long format.
7. Change the current working directory to ASSIGNMENT if you are not there already. Create 10 new files (in directory ASSIGNMENT) named as follows:
a. FICTION.bak
b. unix.dak
c. thistest.bak
d. Zumbology.bak
e. more.woot
f. doodah.fil
g. Thiscourse.dat
h. Test-1.txt
i. File-1.bat
j. Assignment1.file
And display a listing of all the files and directories in long format in the current working directory ASSIGNMENT.
8. Display a listing of all the files in the current working directory starting with ‘T’ and ending with ‘t’ using one command, e.g. Test-1.txt.
9. Move all files containing letter ‘t’ to the directory XXXDirC using one command.
10. Display a listing of the contents of the current directory ASSIGNMENT. All files with names that contain letter ‘t’ should now be gone.
Note: Ensure your screenshots are clear and neat; Also look through your work in this section and resize screenshots such that question and answer are on the same page.
Part Three: Machine Learning and Deep Learning (25 marks)
This part of the assignment will help you to understand the basic idea of Machine Learning and Deep Learning using Google Colab (https://colab.research.google.com/ ). You will experiment with running a YOLO Python file on Google Colab and evaluate the results of your experiment.
Here you will test a fast version of an available object detection system - YOLO (https://pjreddie.com/darknet/yolo/). You will submit photos (taken by yourself) to YOLO; YOLO will try to identify the objects in the photos and will tag the objects and produce accuracy percentages of the detection/prediction. You will analyse the results to conclude if the tool is good enough for your task.
In the following section, we provide an overview of the process, followed by the questions you need to work through.
An overview – Using YOLO with Google Colab
1) Download the attached file: Assignment_1.ipynb from the Assessment page.
2) Open Google Colab: https://colab.research.google.com/ and login (using a gmail account).
 
3) Click File >> Upload Note Book to upload the .ipynb file 
4) You will see only two cells of code. Click Run cell (see figure below) to run each cell. You will need to run the first cell once, and the last cell many times to finish the assignment):
· 1st cell: where you can get the Yolo repo, pre-trained weights and set up the python environment (you only need to run this cell once)
· 2nd cell: where you upload the necessary photos/images (.jpg) from your local drive to achieve prediction with YOLO 
 
5) When you run cell 2, the program waits for you to upload a file. Click on Choose a file and select a file from your dataset of photos.
6) YOLO will then try to identify the objects in the photo and will give you the prediction results and percentage of accuracy of the prediction.
The output could be something like this:
test.jpg: Predicted in 18.271086 seconds.
truck: 92%
truck: 75%
truck: 68%
car: 97%
car: 96%
car: 87%
car: 78%
car: 65%
car: 59%
car: 59%
car: 50%
Prediction is done in 25.1**3**56340027 seconds.
 
And here, there are 11 cars/trucks successfully detected in the image.
Question 1: Collect dataset / photos (10 marks)
· Take at least 10 photos that include animals, people or other objects. Use pictures that have a mix of objects. You may use your cell phone to take the pictures or find them on the internet.
· Save all the pictures to a folder called Images.
· You may wish to resize the images so that each is 500 KB or less in size.
Question 2: Test the prediction performance of YOLO object detection system using your images as the inputs (10 marks)
· Start by running the first cell to set up the environment (you only need to run it once).

· Run the second cell and click “Choose Files” to upload a jpg image.

· Next you will first see the weights being downloaded and then the object detection system will search for all objects in the image and return output with bounding boxes and annotations of detected objects as in the following image:
 
· You will need to report on three things for each image from your experimentation:
i. how many object types (cars/animals/people) you see on the original image (left), (ignore very tiny ones),
ii. how many object types (cars/animals/people) YOLO recognized in the image on the right,
iii. the accuracy in percentage between the two (e.g. 0% - if none of the animals/people/objects is identified, 50% - if there are 10 animals/people/objects, but only 5 animals/people/objects are identified in bounding boxes, 100% - if all are identified.
· Repeat running the second cell to upload all your photos one by one and save all the prediction results.
· Copy and paste the original photos (left column) and the predicted photos (right column) in Table 1 below. Replace the images below with your images. Also collect the processing time, and the accuracy, e.g. 2/2 = 100% for each photo. (1 mark each photo).
Table 1: Experiment Results
Original images (Replace with yours) AI detected images (Replace with yours)
   
Processing Time: Accuracy:
Your 2nd original image here Replace with your AI detected image here
Processing Time: Accuracy:
   
   
   
   
   
   
   

Question 3: Evaluation (5 marks)
Analyse the prediction results and write your evaluation summary. Please summarise the prediction accuracies by completing Table 2 (10 marks). Feel free to edit the Object Types column and add the objects detected in your photos (e.g., you may have dogs in your photos).
Table 2: Evaluation
Object types Total number appeared in all images Total number accurately detected in all images Average accuracy
(%)
Cars 0 0 0
Persons 0 0 0
  0 0 0
       
       
  0 0 0
Total 0 0 0
Part Four: Analyse a Business Case and document using Modelling Techniques (25 marks)
This part of the assignment presents the case study for this assignment. Please read the Rodney Gas Billing System case study below carefully before attempting the Questions that follow.  Students may ask for additional clarification of the case study or assignment on the discussion board on Canvas.
The Process Modelling Workbook (see footnote) will be used as a resource for this assignment.
Tools & Templates
For this assignment, here are some options for the creating the diagrams:
• You may type in your answers,
• You may also use a drawing program to draw the Data Flow Diagrams and paste them into the assignment; drawing programs such as (i) Visio or (ii) Visual-paradigm with the Gane-Sarson modelling templates are an option you could use.
Here is the link for Visual-paradigm that may be helpful:
Gane Sarson Diagram | Visual Paradigm Online (visual-paradigm.com)
• Neatly handwritten diagrams with legible text will also be acceptable.
NOTE: The symbols in Visio or the symbols in the online Visual-paradigm tool, which are less explicit about naming and duplicates than those used in ‘The Process Modelling Workbook’, are acceptable.  
Case Study - Rodney Gas Billing System
Rodney has just begun to provide gas to a limited number of customers. It is expected that the number of customers will increase as further gas pipes are installed. Currently the billing is done manually, but it is planned to computerise the system in anticipation of increased volumes of users. You have been requested to investigate the system and prepare a system proposal.
This is what you have found out from your information gathering:
The meter reader visits the gas customers every six weeks in order to read their gas meter. When all readings have been logged for the period, the meter reader brings the log into head office where the accounts clerk copies the readings into a “Customer Gas Meter Readings” file which contains, for each customer, details of their previous readings.
To produce the bills for the customers, the accounts clerk subtracts the customer’s previous meter reading from their current reading, in order to find the total volume of gas used for the period. This is multiplied by the gas charge rate which the clerk finds in a “Gas Charge Rates” file. If this is the first bill for the customer,  a charge for installation may be added, and sometimes there are maintenance charges. These extra charges are supplied by the Maintenance Department. The gas charge rates are set annually by management. All charge amounts are added to any previous amounts owed which are found for the customer in the “Outstanding Bills” file. The current bill is posted to the customer.
Customers post their payments to the Rodney offices. The payments are banked, and a “List of Deposits” is returned by the bank. This list is compared to the “Outstanding Bills” and paid bills are placed in the “Paid Invoices” file. Partial payments are recorded on the matching bill which remains in the “Outstanding Bills” file.
Refer to this Case Study and answer the questions on the following pages. 

Case Study Questions
For the Rodney Gas Billing System given on previous page:
1. Produce a System outline (refer to page 2 of Litchfield(2017)) (10 Marks)
System Outline
Title System Document Name Sheet
Input Processes
Files (Datastores)
Outputs
External Entities
Author Date
Figure 1.1: Rodney Gas Billing System Outline.
2. Produce a Context Diagram. (5 Marks)
3. Produce a Top Level Dataflow Diagram. (10 Marks)
 
 
請加QQ:99515681  郵箱:99515681@qq.com   WX:codinghelp





 

掃一掃在手機打開當前頁
  • 上一篇:代做 ISYS90038、Python/c++程序語言代寫
  • 下一篇:CSCI 4210 — Operating Systems
  • 無相關信息
    合肥生活資訊

    合肥圖文信息
    流體仿真外包多少錢_專業CFD分析代做_友商科技CAE仿真
    流體仿真外包多少錢_專業CFD分析代做_友商科
    CAE仿真分析代做公司 CFD流體仿真服務 管路流場仿真外包
    CAE仿真分析代做公司 CFD流體仿真服務 管路
    流體CFD仿真分析_代做咨詢服務_Fluent 仿真技術服務
    流體CFD仿真分析_代做咨詢服務_Fluent 仿真
    結構仿真分析服務_CAE代做咨詢外包_剛強度疲勞振動
    結構仿真分析服務_CAE代做咨詢外包_剛強度疲
    流體cfd仿真分析服務 7類仿真分析代做服務40個行業
    流體cfd仿真分析服務 7類仿真分析代做服務4
    超全面的拼多多電商運營技巧,多多開團助手,多多出評軟件徽y1698861
    超全面的拼多多電商運營技巧,多多開團助手
    CAE有限元仿真分析團隊,2026仿真代做咨詢服務平臺
    CAE有限元仿真分析團隊,2026仿真代做咨詢服
    釘釘簽到打卡位置修改神器,2026怎么修改定位在范圍內
    釘釘簽到打卡位置修改神器,2026怎么修改定
  • 短信驗證碼 豆包網頁版入口 破天一劍 目錄網 排行網

    關于我們 | 打賞支持 | 廣告服務 | 聯系我們 | 網站地圖 | 免責聲明 | 幫助中心 | 友情鏈接 |

    Copyright © 2025 hfw.cc Inc. All Rights Reserved. 合肥網 版權所有
    ICP備06013414號-3 公安備 42010502001045

    国产人妻人伦精品_欧美一区二区三区图_亚洲欧洲久久_日韩美女av在线免费观看
    久久伦理网站| 91精品国产91久久久久久| 成人免费91在线看| 国产精品极品美女在线观看免费 | 亚洲在线视频观看| 狠狠精品干练久久久无码中文字幕| 国产国语videosex另类| 亚洲自拍的二区三区| 国产欧美日韩在线播放| 国产精品久久久久aaaa九色| 欧美亚洲国产另类| 久久久久无码国产精品一区| 日日摸日日碰夜夜爽无码| 97国产精品视频| 亚洲自拍小视频| 99在线看视频| 亚洲日本一区二区三区在线不卡| 国产精品又粗又长| 欧美成人亚洲成人| 欧洲成人免费视频| 日韩视频免费大全中文字幕| 欧美一区二区影院| 久久久99久久精品女同性| 欧美亚洲在线播放| 久久久久久久国产精品视频| 青青草国产精品| 国产成人欧美在线观看| 欧美精品七区| 国产精品久久久久久久久久久久久| 好吊色欧美一区二区三区四区| 国产精品久久久999| 国产在线一区二区三区| 久久国产精品久久久久久久久久 | 偷拍视频一区二区| 国产精品10p综合二区| 日本a级片在线播放| 精品国产欧美一区二区五十路| 欧美日韩亚洲第一| 久久国产精品免费视频| 99在线观看视频免费| 国产伦精品一区二区三区高清| 中文字幕在线中文字幕日亚韩一区| 97精品欧美一区二区三区| 欧美一级视频免费看| 久久久久欧美| 欧美 日韩 国产在线| 精品久久精品久久| 91精品国产自产在线观看永久 | 久久精品色欧美aⅴ一区二区| 蜜臀精品一区二区| 一区二区三区四区不卡| 91免费人成网站在线观看18| 日本在线视频www色| 九九九久久久| 欧美视频免费看欧美视频| 精品免费日产一区一区三区免费 | 国产精品欧美激情在线播放| 国产青青在线视频| 午夜精品一区二区三区四区| 日韩最新免费不卡| 国产伦精品一区二区三区视频黑人| 性色av一区二区三区在线观看| 色噜噜久久综合伊人一本| 国精产品一区一区三区视频| 亚洲一区二区三区四区中文| 日本午夜一区二区三区| 久久久精品影院| 成人免费在线网址| 欧美在线不卡区| 一区二区精品在线| 国产精品视频区| 91久久偷偷做嫩草影院| 欧美不卡福利| 性欧美激情精品| 欧美精品在线免费播放| 亚洲精品天堂成人片av在线播放| 国产精品爽爽爽| 68精品久久久久久欧美| 精品一区二区三区免费毛片| 日韩在线一级片| 久久99国产综合精品女同| 国产v亚洲v天堂无码久久久| 国产特级黄色大片| 欧美又大粗又爽又黄大片视频| 亚洲一区二区三区777| 国产精品免费福利| 久久av综合网| 成人在线免费观看一区| 欧美日韩亚洲一区二区三区四区| 日日夜夜精品网站| 久久久久久av| 国产精品福利在线观看| 久久黄色免费看| 91久久精品www人人做人人爽| 狠狠色狠狠色综合人人| 日韩女在线观看| 伊人久久大香线蕉综合75 | 日韩不卡视频一区二区| 伊人久久婷婷色综合98网| 国产精品第七十二页| xvideos亚洲| 久久久久99精品成人片| av动漫在线看| 国产精品一区av| 国产亚洲情侣一区二区无| 欧美精品无码一区二区三区| 青青久久av北条麻妃海外网| 欧美一区1区三区3区公司| 亚洲一区二区三区免费看| 欧美激情图片区| 久久亚洲欧美日韩精品专区| 久久久精品美女| 国产成人精品自拍| 久久久久这里只有精品| 久久国产日韩欧美| 国产成人黄色片| 91成人福利在线| 91精品久久香蕉国产线看观看| 国产精品一二三在线观看| 国产一区二区三区四区五区加勒比| 黄色一级视频在线播放| 激情综合网婷婷| 欧美国产综合在线| 欧美精品七区| 黄色大片中文字幕| 欧美人与性禽动交精品| 欧美久久久久久久久久久久久久| 日本精品免费在线观看| 日韩欧美亚洲日产国| 日韩精品 欧美| 欧美在线亚洲一区| 韩国国内大量揄拍精品视频| 国产在线精品一区二区三区》| 国内精品视频在线| 国产特级淫片高清视频| 国产伦视频一区二区三区| 国产日韩欧美二区| av动漫在线免费观看| 久久一区二区精品| 久久riav| 国产精品入口尤物| 久久不射热爱视频精品| 中文字幕中文字幕在线中心一区| 亚洲精品一区二区三区樱花| 日本午夜在线亚洲.国产| 欧美综合第一页| 国产一区免费视频| 成人久久18免费网站漫画| 91久久国产精品91久久性色| 91精品国产91久久久久久| 久久国产精品高清| 国产精品美女久久久久av福利 | 黄色一级片播放| 国产美女久久久| 91免费人成网站在线观看18| 国产成人精品日本亚洲| 国产精品三级在线| 亚洲一区 在线播放| 日韩手机在线观看视频| 黄色一级大片在线观看| 99久久激情视频| 国产成人精品免费久久久久| 国产精品免费在线| 亚洲人成77777| 欧美一区深夜视频| 国产精品一国产精品最新章节| 国产不卡一区二区视频| 国产精品美女在线观看| 亚洲色欲久久久综合网东京热| 日本a在线天堂| 国产欧美日韩在线播放| 久久精品国产第一区二区三区最新章节 | wwwwww欧美| 国产成人极品视频| 国产精品福利在线| 日韩中文字幕组| 国产一区二区高清不卡| 久久久婷婷一区二区三区不卡| 国产精品久久久久久久天堂第1集 国产精品久久久久久久午夜 | 黄色www网站| 777精品久无码人妻蜜桃| 久久视频国产精品免费视频在线| 欧美精品九九久久| 欧美亚洲国产日本| 91精品国产91久久久久福利| 国产精品激情自拍| 日本亚洲欧洲精品| 国产精品一国产精品最新章节| 俺去亚洲欧洲欧美日韩| 亚洲18私人小影院| 国产一级做a爰片久久毛片男| 久久久水蜜桃| 久久久久国产精品免费| 欧美中文在线观看国产| 91av福利视频| 欧美激情视频在线| 狠狠干视频网站| 久久久久久久一区二区| 亚洲一区精品视频| 国产午夜伦鲁鲁|