After reading chapter 13, analyze the advantages and disadvantages of digital signatures. You are also required to post a response to a minimum of two other students in the class by the end of the week. You must use at least one scholarly resource. Every discussion posting must be properly APA formatted.
ADT
Set up your project with the given starting code. The files should compile and run, but either no tests will be run, or tests will run but be failing. 2. For this project, start by uncommenting the first TEST_CASE in the assg10-tests.cpp file. These are the unit tests to test the functionality of your PriorityQueue enqueue() function, the class and overridden member function you are to implement. 3. Add the PriorityQueue class to the Queue.hpp header file. The class should inherit from LQueue and override the enqueue() method as described in more detail below. 4. Add a stub for your enqueue() member function to the assg07-stackfun.cpp implementation file. You could start by doing nothing, or by copying the code of the enqueue() function from the LQueue class. 5. Your code should compile and run now. Make sure after adding the class and your stub method your code compiles and runs. However, your unit tests will be failing initially. 6. Incrementally implement the functionality of your enqueue() member function. You should try to add no more than 2 or 3 lines of code, and then make sure your program still compiles and runs. Start by adding code to get the first failing test to pass. Then once that test passes, move on to the next failing tests until you have all tests passing. If you write something that causes a previously passing test to fail, you should stop and figure out why, and either fix it so that the original test still passes, or remove what you did and try a new approach. 7. Once you have the enqueue() member function implemented and all unit tests passing, you should then move on to the other functions in the order suggested. Some functions use previous ones in this assignment, so do them in the order given for you in the tasks below.
Python Functions
1) Write a function that calculates the volume of a sphere with radius r for only values > 0, return 0 otherwise . V=4/3 π r^3
2) Write a function that finds you weight in stones using the formula. mstone = mkgx2.2/14
3) Write a function that takes some monetary amount from the user in dollars, and then display exact changes for this amount using the minimum number of coins. For example, $0.97 shows 3 quarters, 2 dimes, and 2 pennies.
Output:
change_it(97)
The change for 97 cents is:
3 quarters
2 dimes
2 pennies
Write an function to calculate both Ohm’s Law and Power transferred. The function takes i and r as inputs and prints the results (see output below). Calculate only if both i and r are > 0.
FORMULA
i is current, v is voltage, r is resistance, p is power
p = i * v # power = current * volatage
v = i * r # voltage = current * resistance
def ohms_law(i, r):
'''
i is current
r is resistance
'''
# check if both i and r are greater than 0
# calculate v and p
# PRINT v and p
omhs_law(5, 5)
v = 25 p = 125
omhs_law(-5, -5)
0
Practical connectiom
Subjects : 1) Emerging Threats & Countermeas (ITS-834-M50)
2) Infer Stats in Decision-Making (DSRT-734-A03)
Question 1 : Briefly explain any steps you are taking, or plan to take, to gain hands-on experience in your program of study. (50 – 100 words)
Question 2 : State two goals you hope to achieve through applying your coursework this term to your workplace experience. (50 – 100 words)
FAVORITE SCRIPTING LANGUAGE
Comment your favorite scripting language (VBScript, Node.Js, Python or SQL script). What do you think is most useful for administration and security? How can you use it? Minimum 150 words. APA format. 1 reference. No plagiarism. 100% original work. NEED THE WORK ASAP!!
Automatic coding. Discussion board
There is a trend in programming to make coding easier and more automatic. Some welcome this trend, but others are concerned about future programmers not learning necessary programming fundamentals if programming is no longer required. For instance, without understanding how looping and variable initializations work, how easily would an individual be able to find a logic error in a looping process? Do you think programmers of the future should still learn programming fundamentals, even if coding is no longer required? Why or why not?
W11
You are the web master for the Republican Party National Committee. Prepare a risk assessment analysis for your website. Some questions to consider:
- Who is likely to attack your site?
- When are attacks likely to occur?
- What sort of attacks might take place?
- How can you best minimize attacks and protect the integrity of your site?
Write between 200-300 words
Lighting Strategy for the building
The Building is 1400 feet by 1200 feet. Explain your lighting strategy. There will be 20 or so 5-10 trees surrounding the building.
About 400 words
SQL QUeries 3
Solve the assignment
Python 3 – Two Python Questions
Hello!
There are TWO Python 3 questions that I need to be completed.
I will attach the PDF with instructions and a ZIP file with the required .py file needed to complete the home.
Thank you!