GO16_WD_CH03_GRADER_3G_HW – Newsletter And Research Paper 1.3

 

GO16_WD_CH03_GRADER_3G_HW – Newsletter And Research Paper 1.3

 

Project Description:

In the following project, you will format a newsletter by inserting pictures and screenshots, applying two-column formatting, and adding a border to a paragraph. You will edit and format a research paper by inserting footnotes, creating citations, and formatting a bibliography.

Cache Memory jan 19

Assignment Content

  1. Even though this class is new to you, none of you should be new to Computer Architecture as it exists in the real world…in fact, everyone who has used an iteration of computer architecture over the years and this is evidenced by the Desktop or laptop computers you own.

    For this week’s assignment, Please provide a write-up as an answer to the question below

    Why is the cache memory so important to a computer’s performance even though all systems have MAIN MEMORY (RAM)?

    As part of this assignment, make sure to answer the following sub-questions as part of your assignment

    • Explore the different types of Cache memory and how they differ from one another?
    • How the cache memory differs from the main memory (RAM) in terms of functions?
    • You should submit at least TWO FULL PAGES OF CONTENT…meaning sources, title, etc. do NOT count…be sure to include any reference material you used…

Interactive Computer graphics

 

Question 1.

Using WebGL [call gl.drawElements( ) function] render points at coordinates:

-0.4, -0.3, 0,0

 0.5, -0.5, 0.0

 0.6,  0.7, 0.0

-0.3, -0.4, 0.0

Make the canvas width = 600, height = 600, border orange and the points black.

Question 2.

Using WebGL [call drawElements()function]render the rectangle using the following coordinates:

 0.45,  0.45,  0.0

-0.45,  0.45,  0.0  

-0.45, -0.45, 0.0

0.45, -0.45, 0.0

Make the canvas with = 470, height = 470, border red and the rectangle green.

Python programming

Write a Python program to convert temperature from Celsius to Fahrenheit and Kelvins; from Fahrenheit to Celsius and Kelvins.

Document your program – to include your name, course, date written, and the formulas used in the conversions.

Instruct the user on how to enter the data requested.

You must use the IF, ELSE, ELIF statements or a combination of these statements.

Required output – temperature entered, converted temperature, and the exact phrase “This program was written by .”

Power Point Presentation

 Topic : From my organizational behavioral course . You can either do “Stress at work” or “Cultural Differences” both topics must include “on the job” experiences and information. I also have a link to my book if needed. I must have this to me at 5/22/2022 9 pm. 

week-4

 pick three passwords: one not secure, one acceptable, and one very secure. Then write a brief description of the passwords you have chosen, indicating why they are secure or not secure 

ITSD322U3IP

 

Assignment Details

Create a Java application called “RateCalculator.” In this application, create a custom class named “Calculator.” In the Calculator class, create a method called “Multiply” which accepts two incoming integer variables. Within the Multiply method, create an integer variable to store the total, then calculate the total based on the two incoming variables. Return the total.

In the project class, within the main() method, declare integer variables named “firstNum” and “secondNum” and set their initial values to any number between 1 and 9. Create an additional integer variable called “output.” Then write code to declare a member of the Calculator class called “myCalc” and then utilize myCalc to call the Multiply method to calculate the result of firstNum times secondNum. Store the result in “output”, and present the result on screen.

Within the Calculator class, create methods similar to Multiply called “Add”, “Subtract”, and “Divide.” Create appropriate logic within these methods, and display their use in the main method of the project class. (These methods will not be utilized when the program runs, but the code must be present.)

Write appropriate in-line comments in both the project class and the Calculator class to explain each line of code in your program.

Summary:

  • Create an application called “RateCalculator”
  • Create a custom class with the name and features listed above
  • Create methods within the Calculator class to perform the calculations
  • Write code in the Calculator class (in the main() method) to execute the methods from the Calculator class

Your deliverable for this assignment is the NetBeans project you created using the steps above (ZIP the whole folder that contains the project).

Note: There is no user input in this program. The values that will be calculated are the values that you state when you declare “firstNum” and “secondNum”.