Ace - AI Tutor
Ask Our Educators
Textbooks
My Library
Flashcards
Scribe - AI Notes
Notes & Exams
Download App
victoria soler

victoria s.

Divider

Questions asked

BEST MATCH

Write a program in masm x86 assembly language INCLUDE C:\Irvine\Irvine32.inc INCLUDELIB C:\Irvine\Irivne32.lib Create a Simplified Blackjack Game The game should begin with the user. a. Randomly dealing 2 cards to the user’s hand, and then calculate and display the total. b. The display must include the value of each card and the suit. c. Next the program should display a prompt, asking the user if he/she wants a Hit or Stand. d. If the user selects to Hit the game should randomly deal a new card to the user’s hand, displaying the card value and suit, and then calculate and display the new total. If the total is greater than 21, then the user Busts, the house wins, and a message indicating these results is displayed. If the total is less than 21, repeat the Hit/Stand Prompt to the user. Continue this process until the user busts or elects to Stand. Once the user selects to Stand, then move on to the house a. Randomly deals two cards to the house, and then calculates those total points. b. Again, the display must include the value of each card and the suit. c. The dealer must continue to Hit as long as the total of the House had is under 17, display the results after each Hit d. The dealer must Stand once the House hand reaches 17 or higher. If the user has not already Busted, compare the User’s Hand to the House Hand and determine and display the results. The player closes to 21 without going over wins. Once a final game result has been displayed, prompt the user to see if he/she would like to play again. If the user selects to play again, start the program from the beginning, otherwise display a farewell message and terminate the program. Cards: • There are 4 suits: Clubs, Spades, Hearts, and Diamonds • Each suit has 13 cards: 2, 3, 4, 5, 6, 7, 8, 9, 10, Jack, Queen King, Ace • An Ace can have a value of 1 or 11, so account for this when displaying and evaluating results. If an 11 causes a hand to bust, then it can change to a 1.

View Answer
divider
BEST MATCH

Suppose you are titrating a sulfuric acid solution of unknown concentration with a sodium hydroxide solution according to the equation H2SO4+2NaOH⟶2H2O+Na2SO4 If you require 34.14 mL of 0.696 M NaOH solution to titrate 214.5 mL of H2SO4 solution, what is the concentration of the H2SO4 solution?

View Answer
divider
BEST MATCH

Which following statements are correct • Attestation allows outside clients communicating with an enclave to get an idea what is running in the enclave and hence to be able to decide whether or not to trust this enclave with some data to be processed. • SGX or software guard extensions introduced CPU support for enclaves. • Computer system's security architecture in general cannot be designed in a way to be resilient to an unknown attack. • The 2FA authentication cannot be compromised without a physical access to an actual device one is using to authenticate. Which of the below statements on computer systems security are correct • Implementing numerous security checks in a computer systems architecture without careful design and management can increase the complexity and risk of misconfigurations or errors, potentially leading to the ineffective enforcement of security policies. • According to many studies on average there is circa 1 software bug per 1000 lines of code, but this value (defect density) depends on particular software projects and methodologies. • DoS attacks mitigation should not rely on authentication. • Cgroups cannot be used to isolate processes in Linux. Which of the below statements are true • A good security policy practice is to limit assumptions. • Capabilities in Linux can be Effective, Permitted and Initiated. • Security of computer systems is not concerned with security policy. • Retrofit bounds checks involve arithmetic operations and pointer dereferencing. Which of the following statements on computer systems security are correct • Authorization should not rely on Access Control Lists. • The most popular password proven by the 32 millions Twitter users passwords leak is 12345. • User authentication system should include registration, authentication check and recovery. • One of the main challenges in user authentication is managing intermediate principals.

View Answer
divider
BEST MATCH

The nurse is caring for a 25-year-old patient with a BSA of 1.67 m² who has testicular carcinoma. The nurse receives the following order: Bleomycin 2 units IV today and next Thursday.

View Answer
divider
BEST MATCH

1. Beriberi 2. Vitamin D deficiency 3. Testicular dysfunction 4. Pickwickian syndrome with morbid obesity (adult). BMI is 45. 5. CO2 retention 6. Hashimoto’s disease 7. Porphyria cutanea tarda 8. Gangrene toe due to diabetes 9. Secondary hyperparathyroidism 10. Adrenoleukodystrophy 11. Mild protein energy malnutrition (PEM) 12. Phenylketonuria (PKU) 13. Nutritional deficiency 14. Kallmann’s syndrome

View Answer
divider
BEST MATCH

Consider the following function. $f(x) = \begin{cases} x - 4 & \text{if } x \le 2 \\ 6x - 10 & \text{if } x > 2 \end{cases}$ Find each value. (If an answer does not exist, enter DNE.) f(2) = $\lim_{x \to 2^{-}} f(x) = $ $\lim_{x \to 2^{+}} f(x) = $ Determine whether the function is continuous or discontinuous at $x = 2$. Examine the three conditions in the definition of continuity. The function is continuous at $x = 2$. The function is discontinuous at $x = 2$.

View Answer
divider
BEST MATCH

Assignment Description 1. A starting activity that presents a short overview of the app and allows the user to input a location (e.g. city, zip code, etc.) to check the weather conditions. 2. Once the user inputs a location, the app should use an API to retrieve the current weather conditions for that location. You can use a free API such as OpenWeatherMap. 3. The app should display the current temperature, humidity, wind speed, and weather conditions (e.g. sunny, cloudy, raining, etc.) for the selected location. 4. The app should also display an image that corresponds to the current weather conditions (e.g. a sun for sunny weather, clouds for cloudy weather, etc.). 5. The user should be able to switch between Celsius and Fahrenheit temperature units.

View Answer
divider
BEST MATCH

Task 5 - Java Program (2 points) Create a new project in Eclipse named Exercise 02, and create a class Motorcycle following the design of your UML class diagram. Create a second class named Program containing method main. Follow the pseucode below to implement method main. Take a screen shot of your running program, with your full name as part of the program output. Upload both source code files as part of your submission. Note: The data type num, for number in pseudocode is implemented in Java as either int or double. Also, object instantiation in pseudocode like Motorcycle Motorcycle becomes Motorcycle Motorcycle = new Motorcycle() in Java. start declarations String textInput num numberInput Motorcycle Motorcycle String report output "please enter vehicle identification number: " input textInput Motorcycle.setVehicleIdentificationNumber(textInput) output "please enter engine size (cc): " input numberInput Motorcycle.setEngineSize(numberInput) output "please enter invoice price: " input numberInput Motorcycle.setInvoicePrice(numberInput) report = Motorcycle.toString() output report output "program by Student Name" // replace Student Name with your full name stop A sample run of a completed program would look like: please enter vehicle identification number: 1HGBH41JXMN109186 please enter engine size (cc): 927 please enter invoice price: 551234.85 1HGBH41JXMN109186, 930 cc, $551234.85 Program by Stanley Pieda Note that the user inputs were formatted in this MS Word document as bold and yellow-highlighted text, the default color used in the Eclipse console is a light-green.

View Answer
divider
BEST MATCH

6. (10 points total) The spaceship MoonX orbits around the Earth in the lunar orbit. The orbital period and radius are 27.3 days and 3.48 x $10^8$ m. The propeller of MoonX ejects gas at a rate of 3600. kg/s, and the gas constantly leaves at a speed of 2000. m/s. The initial mass of MoonX is 7.50 x $10^6$ kg. Question 7 6a. (2 points) Find the thrust force of MoonX in N. Question 8 2 pts 3 pts 6b. (3 points) Consider the circular motion of MoonX. What is the speed of MoonX in m/s? Question 9 3 pts 6c. (3 points) The propeller of MoonX is turned on until it reaches a speed of 2000. m/s. What factor of mass remains on MoonX compared to the initial mass? (Your answer should be a number between 0 and 1.) Question 10 2 pts 6d. (2 points) How much time (in minutes) has the propeller of MoonX been turned on?

View Answer
divider
BEST MATCH

xercise 8. Let u = (0,1,2,0), and w = (1, 1, 2,0). Then the distance between and w is: 3 b. 1 c. 2 d. None of the mentioned xercise 9. Let u and v are two vectors in R³ such that ||u|| = 3, ||v|| = 4, and u.v = If ? is the angle (in radian) between u and v, then cos(?) = 1 12 1 b. 3 1 c. 23 d. None of the mentioned

View Answer
divider