a basic console based calculator program.The calculator can operate two modes: Standard Scientific modes. The Standard will the perform the : (+, -, *, /) , subtract, multiply, divideThe Scientific will the perform the same functionality the Standard , subtract, multiply, divide (+, -, *, / ) plus the : x, x, x. ( x, x, x)The calculator should be able perform addition, subtraction, multiplication, division two more numbers but perform x, x, x one (the ). The calculator program will ask the the operate (Standard Scientific) : Enter the calculator : Standard/Scientific?Standard The program should ask the the operation (+, -, *, /, x, x, x) Scientific :Enter addition, subtractions, multiplication, division, x, x, x: Scientific :Enter addition, subtractions, multiplication, division, x, x, x:a. the enters an invalid operation, a message telling the the invalid re- the the operation again.Enter addition, subtractions, multiplication, division, x, x, x:division Invalid operation enteredEnter addition, subtractions, multiplication, division, x, x, x:/ know how many times the will need perform the operation, the the they want enter (All numbers this program ), ask the enter the numbers. :How many numbers you want subtract:Enter numbers: this example the calculator will calculate + + The will be The calculator should be able perform the :+ = ++++ = = ** = // = () = () = () = Note: This calculator does support multiple the expressions : +Note: Multiple numbers acceptable the (+, -, *, / ) (,,) Display the :: Finally, the the ask the he/she want over. : ? Y/NY :Enter the calculator : Standard/Scientific?StandardEnter addition, subtractions, multiplication, division, x, x, x:additionInvalid operation enteredEnter addition, subtractions, multiplication, division, x, x, x:+How many numbers you want subtract:Enter numbers:: ? Y/NYEnter the calculator : Standard/Scientific?ScientificEnter addition, subtractions, multiplication, division, x, x, x:Enter find :: ? Y/NN
"Looking for a Similar Assignment? Get Expert Help at an Amazing Discount!"
In This Project You Will Be Writing A Program That Receives A String Of Characte
/in Uncategorized /by developerIn this project, you will be writing a program that receives a string of characters via the UART, checks if this string is a palindrome, and then uses a print function to print either “Yes” or “No”. A palindrome sequence of characters (typically a word or phrase) that is the same both forwards and backwards. For this project, strings will be terminated using a period (‘.’). You may assume that a string will contain at least one character in addition to a period. You will not need to handle empty strings or strings with only a period. Your program should be able to handle multiple strings sent one after another or concatenated together. For example, the string: “abba. data.” should print “Yes” followed by “No” on the next line. Spaces should be ignored when checking for a palindrome and the palindrome should not be case sensitive. For example, “A nut for a jar of Tuna.” would be considered a palindrome. Your program does not need to handle strings with characters other that spaces, periods, and letters. Individual, period-terminated strings will not be longer than 100 characters, however during the course of testing more than 100 characters may be sent to your program.
Print Function A skeleton PLP project file is available to download on Canvas. The PLP project includes a second ASM file titled, project3_print.asm. This ASM file contains the print function used in this project. PLPTool concatenates all ASM files within a PLP project into a single location in memory (unless additional .org statements have been added to specify different location for code). No changes to project3_print.asm should be made. When called, depending on the value in register $a0, the following string will be displayed on the simulated UART device’s output. If $a0 contains a zero then “No” will be displayed and if $a0 contains a non-zero value (e.g. one) then “Yes” will be displayed. The print function is called using the following instruction: call project3_print
To use the print function, your PLP program needs to initialize the stack pointer ($sp) before performing the function call (or any other operations involving the stack pointer). For this reason, the skeleton project file includes an initialization that sets the stack pointer to 0x10fffffc (the last address of RAM).
thats the project3_print.asm.
li $a0, control_message_p3
jal libplp_uart_write_string_p3
nop
control_flow_trap_p3:
"Looking for a Similar Assignment? Get Expert Help at an Amazing Discount!"
In This Project You Will Create A Basic Console Based Calculator Program The Cal
/in Uncategorized /by developera basic console based calculator program.The calculator can operate two modes: Standard Scientific modes. The Standard will the perform the : (+, -, *, /) , subtract, multiply, divideThe Scientific will the perform the same functionality the Standard , subtract, multiply, divide (+, -, *, / ) plus the : x, x, x. ( x, x, x)The calculator should be able perform addition, subtraction, multiplication, division two more numbers but perform x, x, x one (the ). The calculator program will ask the the operate (Standard Scientific) : Enter the calculator : Standard/Scientific?Standard The program should ask the the operation (+, -, *, /, x, x, x) Scientific :Enter addition, subtractions, multiplication, division, x, x, x: Scientific :Enter addition, subtractions, multiplication, division, x, x, x:a. the enters an invalid operation, a message telling the the invalid re- the the operation again.Enter addition, subtractions, multiplication, division, x, x, x:division Invalid operation enteredEnter addition, subtractions, multiplication, division, x, x, x:/ know how many times the will need perform the operation, the the they want enter (All numbers this program ), ask the enter the numbers. :How many numbers you want subtract:Enter numbers: this example the calculator will calculate + + The will be The calculator should be able perform the :+ = ++++ = = ** = // = () = () = () = Note: This calculator does support multiple the expressions : +Note: Multiple numbers acceptable the (+, -, *, / ) (,,) Display the :: Finally, the the ask the he/she want over. : ? Y/NY :Enter the calculator : Standard/Scientific?StandardEnter addition, subtractions, multiplication, division, x, x, x:additionInvalid operation enteredEnter addition, subtractions, multiplication, division, x, x, x:+How many numbers you want subtract:Enter numbers:: ? Y/NYEnter the calculator : Standard/Scientific?ScientificEnter addition, subtractions, multiplication, division, x, x, x:Enter find :: ? Y/NN
"Looking for a Similar Assignment? Get Expert Help at an Amazing Discount!"
In This Project You Will Create A Unique 3d Animated Scene Composed Of Three Js
/in Uncategorized /by developerneed a unique 3D animated scene composed of Three.js graphic components. The scene should include animation, lighting and multiple objects.
Requirements:
In this project you will create a unique 3D animated scene composed of Three.js graphic components.The scene should include animation, lighting and multiple objects.Requirements:1. Using Three.js create a unique 3D animated scene. The scene has the following specifications:a. Size: minimum of 640x480b. Includes at least 6 different shapesc. Uses multiple lighting effectsd. Includes radio buttons, slider bars or other widgets to turn on or off certain componentsof the animation.2. Use Three.js3. All JavaScript source code should be written using Google JavaScript style guide.(http://google.github.io/styleguide/jsguide.html)4.Prepare, conduct and document a test plan verifying your application is working as expected.This plan should include a test matrix listing each method you tested, how you tested it, and theresults of testingDeliverables:1. All JavaScript source code used for this project. Code should adhere to the Google Javascriptstyle guide.2. Word or PDF file demonstrating with clearly labeled screen captures and associated well-writtendescriptions, the successful execution of your 3D Three. js animated scene. The document shouldbe well-written, well-organized, includes the test plan, include page numbers, captions for allscreen captures, and a title page including your name, class, section number and date.Refuld be included for allAPA stv
"Looking for a Similar Assignment? Get Expert Help at an Amazing Discount!"
In This Project You Will Create You Own Unique 3d Scene And Have A User Invoke S
/in Uncategorized /by developerIn this project, you will create you own unique 3D scene and have a user invoke some specific actions.
Your scene should use a root node, multiple child nodes, transformations and multiple shapes to make one scene. The scene should have at least 2 interactive components The components and specific functionality you implement are up to you.
Make the scene something you want to create.
You should deliver the code associated with the scene and a document describing the inspiration for your unique scene. Provide screen captures and descriptions of successfully running your code.
"Looking for a Similar Assignment? Get Expert Help at an Amazing Discount!"
In This Project You Will Demonstrate Your Mastery Of The Following Competency Wr
/in Uncategorized /by developerIn this project, you will demonstrate your mastery of the following competency:
Scenario
You work for Global Rain, a software engineering company that specializes in custom software design and development. As a junior software developer, you are part of a software development team that collaborates to create solutions for entrepreneurs, businesses, and government agencies around the world.
As part of a development team at Global Rain, you will be designing and developing custom software for a local pet boarding and grooming business, Pet Boarding and Grooming (Pet BAG). Pet BAG is seeking a way to modernize its operations by introducing custom software that will help replace inefficient paper-based processes. Your Global Rain team will collaborate to develop an app that will have the following initial functional areas: Check-in pets, Check-out pets, Pet management, and Reports.
As part of this team, you have been tasked with completing some preliminary work that consists of writing a Java class, writing pseudocode, and creating a flowchart. You will provide these deliverables to your supervisor.
Directions
Pet BAG has provided you with a specification document detailing its software needs and design documentation from your supervisor to complete your tasks.
What to Submit
To complete this project, you must submit the following:
Pet.java Class FileAs part of your tasks for the software development team, create the Pet class in your integrated development environment (IDE). To submit this deliverable, save the Pet class file as Pet.java.
Global Rain Summary ReportAs a junior software developer, you will use the Global Rain Summary Report Template to complete the report. Your report must contain your pseudocode, flowchart, and explanation of the object-oriented programming principles you applied.
Supporting Materials
Use the following resources to support your work on this project:
Pet BAG Specification DocumentReview this specification document provided by Pet BAG to understand your client’s software requirements. You will use these requirements to create your flowchart and write your pseudocode.
UML Class Diagram Use this UML class diagram, prepared by the senior developer leading your team, to implement the Pet class. This class diagram demonstrates the Pet class, Dog class, and Cat class and illustrates inheritance. A text version of this image is also available: UML Class Diagram Text Version.
Downloading Files From Eclipse TutorialYou will write, test, and run your Pet class file using an integrated development environment (IDE). Review this tutorial to learn how to save and export files from your IDE. Important: Do not change the names of any class files.
The following rubric will be used to assess Project One. Familiarize yourself with this document as you work on the project, and return to this rubric before you submit Project One to make sure you’ve included everything you need to be successful.
"Looking for a Similar Assignment? Get Expert Help at an Amazing Discount!"
In This Question We Want To Evaluate The Effect Of Social Security Income On Ret
/in Uncategorized /by developer1. In this question we want to evaluate the effect of Social Security income on retirement savings of Americans. The average American earns around $1.5 million during their working life. Of this, they are allowed to save 17.5% tax free in a 401(K) account, and consume the remainder in their working years. 401(K) account earn an average 9% interest per year.
a. Draw a graph of consumption (C) and retirement (R) with the information provided in the question. Make sure to label all lines, intercepts, and slope. On the graph, label the consumption level American choose to have.
b. Social security provides a fixed amount of retirement income to all Americans no matter their private savings. On the graph above, draw consumption/retirement budget constraint with social security income. [Notice, that during working years, an individual cannot borrow against their future social security income.]
c. What do we mean when we say social security crowds out private retirement savings? Answer the question using an income and substitution table to show how Social Security income affects consumption and retirement savings.
Consumption01.23751.5 Retirement Social Security Savings1.51.6350.26250.28612500 Question a1.61.41.21Retirement 0.8Retirement 0.60.40.20 0 0.2 0.4 0.6 0.8 1 1.2 1.4 1.6…
"Looking for a Similar Assignment? Get Expert Help at an Amazing Discount!"
In This Question We Will Consider Solutions To Differential Equations Where Y Is
/in Uncategorized /by developerIn this question we will consider solutions to differential equations where y is a function of x. Throughout, a will always denote a constant.
(a) What is the general solution to the equation y’= a?
(b) If y satisfies y’ = 3 and y(2) = 5 what is y?
(c) What is the general solution to the equation y” = a?
(d) If y satisfies y” = 4, y'(1) = 5, and y(1) = 4, what is y?
(e) What is the general solution to the equation y”’ = a?
(f) If y satisfies y”’= 6, y(0) = 0, y(1) = 1, and y(2) = 6 what is y?
Thanks a lot!
"Looking for a Similar Assignment? Get Expert Help at an Amazing Discount!"
In This Question You And Your Group Will Estimate By How Much In Real Terms Frei
/in Uncategorized /by developerIn this question, you and your group will estimate by how much, in real terms, freight charges have changed from Montreal to Yokohama, Japan between 1886 (shortly after the CPR was finished) and 2019.
According to World Freight Rates (accessed on February 23, 2019), shipping 1 ton of wheat from Montreal to Yokohama costs between $1,412.13 and $1,560.66, in Canadian dollars.
An 1886 newspaper on the Canadian Pacific Railway (6.I in the course pack, starting on page 173), gives the following freight rates, in Canadian cents, from Montreal to Yokohama:
· 3/4 cents per mile per ton for the 2,911 miles of railway from Montreal to Port Moody
· 1/4 cents per mile per ton for the 4,714 miles of ocean from Port Moody to Yokohama
a. (2 marks) Calculate the total cost, to the nearest cent, of shipping 1 ton of cargo from Montreal to Yokohama in 1886. Show your work.
Cost in 1886 of shipping 1 ton from Montreal to Yokohama: $ ____________
"Looking for a Similar Assignment? Get Expert Help at an Amazing Discount!"
In This Question You Will Apply The Gram Schmidt Process
/in Uncategorized /by developerIn this question, you will apply the Gram-Schmidt process.
The subspace V has a basis of three vectors u1=⎛⎝⎜⎜(1,3,0,0)⎞⎠⎟⎟, u2=⎛⎝⎜⎜(4,2,10,0)⎞⎠⎟⎟ and u3=(⎛⎝⎜⎜5,35,-9,1)
⎞⎠⎟⎟a) Normalize vector u1 to give the vector v1. b) Find the component of u2 orthogonal to v1.Enter the answer exactly. This will become the vector v′2.
c) Normalize v′2,to give the vector v2.Enter the answer exactly.
d) Find the component of u3orthogonal to both v1and v2.Enter the answer exactly. This will become the vector v′3.
e) Normalize v′3,to give the vector v3.Enter the answer exactly, possibly with a square-root. For example, the square root of 5 is entered as sqrt(5)
f) Project the vector (⎛⎝⎜⎜-5,15,-41,11)⎞⎠⎟⎟ onto the subspace spanned by {v1,v2,v3}
g) Project the vector ⎛⎝⎜⎜(-8,6,-8,2)⎞⎠⎟⎟ onto the same subspace.
"Looking for a Similar Assignment? Get Expert Help at an Amazing Discount!"
In This Question You Will Sketch The Graph Of The Cubic Function Below The Deriv
/in Uncategorized /by developerxfx
fx
f(x) is decreasing on (-5,9)
f(x) is decreasing on (-,-5)
f(x) is decreasing on (9,)
f(x) is increasing on (-5,9)
f(x) is increasing on (9,)
f(x) is increasing on (-,-5)
xfx
x
fx
f(x) is concave upwards on (-,2)
f(x) is concave downwards on (2,)
f(x) is concave upwards on (2,)
f(x) is concave downwards on (-,2)
y
y
x
x
Middle x intercept :
Largest x intercept :
"Looking for a Similar Assignment? Get Expert Help at an Amazing Discount!"