Ultimate Engineering Study Guide - Questions & Answers
What design pattern can be applied to the static program analysis software you described in the previous problems? What software design problem can this design pattern solve?here's the analysis:Scope statement:The software is designed to perform software analysis. It is done without code execution. The code will be in static mode. The analysis can be performed on source or object code based on the requirements. It is done so that programming errors, violations, vulnerabilities, etc. can be detected.The milestones and constraints related to this software are based on documentation, structure, perspective, etc.Characteristics:It should be able to debug the code before its execution.It should be able to investigate code keeping certain rules into consideration.It should detect the issues very early on so that cost of fixing them is less.It should also cover all the potential execution paths.UICF 2,300 2DGA 5,300 3DGA 6,800 DBM 3350 CGDF 4950 PCF 2,100 DAM 8,400 Estimate line of code 33,200 Organization produces 450 loc/pm Burdened labor rate - $7,000 per person-month Using the data noted in the problem = 33,200 Loc/450 Loc PM = 73.7 PM Cost = 73.7 * $ 7000 PM = $515900 (approximately)
Cybercrime often operates within the broader context of a "dark market." an ecosystem of individuals developing, selling, and buying cybercrime tools and services. In 4-5 SENTENCES, describe how this "dark market operates and what are some of its key characteristics For example, you could talk about how it is organized, or what types of goods and services are sold, or how it is similar to and different from a licit, or legal, market. You do not have to talk about all of these, but choose an aspect and describe it in enough detail to ensure that your friends or family members would corne away with a greater knowledge about cybercrime as a "dark market For the toolbar, press ALT+F10 (PC) or ALT+FN-F10 (Mac).RT
Complete the following program to make it output a list of student IDs with each student's last grade as shown in the expected output.students = {'6422771001': ['A', 'B', 'B', 'C', 'A'],6422771002: ['B', 'B+', 'B', 'C'],'6422771003': ['C', 'C', 'D', 'A', 'D'],'6422771004': ['D', 'A', 'B', 'C']2#Expected output#6422771001 A10 # 6422771002 C# 6422771003 D12#6422771004 C