Do you offer computer programming?
Workbook lesson
Read Strunk & White chapters that relate to the exercises.
Complete the workbook exercises listed below. Keep in mind that some answers are in the workbook; these exercises are meant to develop you as a writer, so only check these answers after doing the exercises. Otherwise, you ultimately cheat yourself from the learning process.
Type out all of your answers in a Word document or, after you have completed the exercise, submit photos of your completed work via online file submission.
EXERCISE 3.1 (Commas)
EXERCISE 3.2 (Restrictive and non-restrictive clauses )
SE493 week 9 Di
Discussion 9: (Required Posting)
Due: Please post your initial discussion No later than Thursday or Friday of this week. (80 Points)
Due :Peer/Classmate review/comment: Provide comments to at least 2 class members No later than Friday or Saturday of this week.
Please mention the classmate/s name.(20 points)
Please take a few minutes and check the discussion board on Sunday and make sure to reply to peer comments OR my comments/query.
Please read IGU Grading Rubric and late participation grading policy for discussion posted under policy section course modules.
Discussion Topic
Please read chapter 24 and review PP slides and IGU online library and reputable resources and discuss:
What is software standards? Importance and problems with Standards. Are you in favor or against standards?
Note: you DO NOT NEED TO DISCUSS Product and process standards.
Buffer Overflows
The key to this paper is to demonstrate your understanding of the topics, not to re-word the text or reference material. Paper must be 100% original and not plagiarized.
Scenario:
1. Research and discuss the principle of exploits based on buffer-overflow attacks.
2. How can buffer-overflow attacks be avoided?
INSTRUCTIONS: Running Size of your deliverable should include the 2 Pages of content for this phase, a title page, the references page
Make sure you are using at least four (4) academic APA references.
This submission should be created following APA 6th edition guidelines.
The paper is to follow the APA style guide, Sixth Edition
Week Six Flow Chart and Paper Using Week Three That's Included
Can someone help me finish this assignment by Monday at 11 pm central time?
Project 2
Prepare a detailed outline of your paper. Your paper (and outline) must address the following points:
- Describe the factors influencing the need for change and the imperatives for managing information assurance change initiatives.
- Discuss how group and organizational dynamics may affect the success of your information assurance change initiative.
- Evaluate the leadership style needed to successfully implement your information assurance change initiative.
- Describe your change strategy and the potential resistance factors to be managed.
- Describe the change model most appropriate for your information assurance change initiative.
StringBuffer
1) Explain the difference between the String class and the StringBuffer class. Describe when you would use one over the other. Show example code of each of them.
2) Design and implement a Java class to represent a cube class. The class should contain a constructor, appropriate data fields and methods to return the volume of the cube, and the surface area of the cube.
3) The project requirements include:
1. Design and implement a stringed musical instrument class using the following guidelines:
a. Data fields for your instrument should include number of strings, an array of string names representing string names (e.g. E,A,D,G), and boolean fields to determine if the instrument is tuned, and if the instrument is currently playing. You are welcome to add additional data fields if you like.
b. A constructor method that set the tuned and currently playing fields to false.
c. Other methods 1) to tune the instrument, 2) to start the instrument playing, and 3) to stop the instrument from playing.
d. Other methods as you see fit (Add at least one unique method).
2. Create a UML class diagram using a diagram tool (e.g. PPT, Visio) of your choice. Prepare the diagrams and place them in a word document along with a brief description of each of your classes.
3. Create Java classes for your instruments. Be sure that your code matches your design specifications and some minimal functionality is included. For example, if you called the violin.play() method, you should at least print that the violin is playing. Similar functionality should be supplied when you stop playing, tune or call any of your methods. For example:
public void playviolin() {
System.out.println(“The violin is now playing.”);
}
4. Write the output from your Instrument class methods to a text file that a user entered from the command line arguments (e.g. java Mynamep3tst myfilename.txt). This allows your program to accept filenames from the user via a command line argument.
5. Finally, create a Java test class that simulates using your instrument class. In your test class be you should at a minimum: a) Construct 10 instances of your instrument, b) tune your instruments, c) Start playing your instrument, d) Call your unique method, and e) Stop playing your instruments. (Hint: Arrays and Loops will make your job easier and result in more efficient code!)
6. Your programs should compile and run without errors.
7. Be sure to test your program carefully. Provide a list of comprehensive test cases used to validate your application and include these test cases in your word document containing your UML diagrams and descriptions. Similar to Project 1, your test data can be shown in a table that includes input data, expected output, actual output and pass/fail results from the test.
Write a function to compute the sum
Write a function to compute the sum of the first k terms of the series expansion for the sine function (-1)” (2n +1)! 2n +1 sin(x) = TL 0 The first three terms (k = 3) of the expansion are: 1 1 73 + sin(x) = 2 ਕ 5 Function specification: Your function should be called series sine(x, k) where x is the argument of the sine function and a total of k number of terms from the expansion should be summed. You are not allowed to import a factorial function (or anything else) from any of Python’s libraries – you don’t need it and it’ll slow down your function significantly! For example: Test Result import numpy as np 1.571 # Uses your series_sine to calculate sin(pi/2) with 1 to 3 iterations. 0.925 ans_literation = series_sine (np.pi/2, 1) 1.005 print(f'{ans_literation:.3f}’) ans_2iterations – series_sine (np.pi/2, 2) print(f'{ans_2iterations:.3f}’) ans_3iterations = series_sine (np.pi/2, 3) print(f'{ans_3iterations:.3f}’) Correct! ans = series_sine (1.6, 11) if abs (ans – 0.9996) < le-4: print("Correct!") else: print("Wrong answer.") print(f"Your answer was: {ans}")
