In: Computer Science
I. Malicious software can be classified by propagation method or payload. Explain the difference between the three common propagation methods: worm, virus and social engineering;
II. Explain the difference between a normal virus, a metamorphic virus and a polymorphic virus, including discussing how easy they are to detect by anti-virus software
In: Computer Science
System Design and Analysis
Analyze and design a hotel reservation system -
Should include the following
- Create a Data Flow Diargram that includes Context Diagram and
DFD 0
- Create a Use Case Diagram and include 8 fully-dressed use
cases.
In: Computer Science
Write a thesis with not less than 5000 word
Cloud services and its uses for good governance in Developing countries.
In: Computer Science
Suppose an algorithm A1 has a runtime T1(n) defined ( in seconds) by the following function
T1(n) = n3 + 20n + 15
For n = 13, the runtime of the algorithm is 2472 seconds. Let us assume that we have an algorithm A2 with runtime given by T2(n) = n2 + 22n + 14? What will be the lowest value of n for which the runtime of A2 exceeds 2472 seconds?
**Urgently needed**
In: Computer Science
Q1. under what circumstances would static hashing be better than extendible hashing?
Q2. under what circumstances would extendible hashing be better than static hashing?
In: Computer Science
In: Computer Science
Chapter 7, Problem 3PE from Introduction to Programming using Python by Y. Daniel Liang.
Problem
(The Account class) Design a class named Account that contains:
■ A private int data field named id for the account.
■ A private float data field named balance for the account.
■ A private float data field named annualInterestRate that stores the current interest rate.
■ A constructor that creates an account with the specified id (default 0), initial balance (default 100), and annual interest rate (default 0).
■ The accessor and mutator methods for id, balance, and annualInterestRate.
■ A method named getMonthlyInterestRate() that returns the monthly interest rate.
■ A method named getMonthlyInterest() that returns the monthly interest.
■ A method named withdraw that withdraws a specified amount from the account.
■ A method named deposit that deposits a specified amount to the account.
Draw the UML diagram for the class, and then implement the class. (Hint: The method getMonthlyInterest() is to return the monthly interest amount, not the interest rate. Use this formula to calculate the monthly interest: balance * monthlyInterestRate. monthlyInterestRate is annualInterestRate / 12. Note that annualInterestRate is a percent (like 4.5%). You need to divide it by 100.)
Write a test program that creates an Account object with an account id of 1122, a balance of $20,000, and an annual interest rate of 4.5%. Use the withdraw method to withdraw $2,500, use the deposit method to deposit $3,000, and print the id, balance, monthly interest rate, and monthly interest.
In: Computer Science
Write a thesis on "Blockchain & Decentralization". Decentralization is important to create a secure, non-discriminatory system. [5000 words at least ]
In: Computer Science
Explain a significant difference between Google’s 2009 vision of the user interface of the Chrome operating system and the Chrome OS GUI we see today.
In: Computer Science
Compare and contrast the three levels of permissions available for shared files and folders on Google Drive.
In: Computer Science
Master thesis on "Blockchain Ecosystem development " , Building a thriving ecosystem is key for the long-term success of blockchain projects.
In: Computer Science
this question has been answered incorrectly several times can someone answer it correctly and show me some examples of a run.
AGAIN SOMEONE SENT AN ANSWER THAT IS INCORRECT CAN SOMEONE ELSE PLEASE GET ME THE PROPER ANSWER.
Design and implement a class named Person and its two subclasses named Student and Employee.
Make Faculty and Staff subclasses of Employee.
A person has a name,address, phone number, and email address.
A student has a class status (year 1,year 2,year 3,or year 4).
An employee has an office, salary, and date hired.
Use the Date class from JavaAPI 8 to create an object for date hired.
A faculty member has office hours and a rank.
A staff member has a title.
Override the toString method in each class to display the class name and the person’s name.Design and implement all 5classes.
Write a test program that creates a Person,Student,Employee,Faculty, and Staff, and iinvokes their toString()methods
In: Computer Science
Write a function which takes two words as string arguments and checks whether they are anagrams
NB: Please use spider in anaconda(python) and include a picture of the code
In: Computer Science