Questions
Convert this C++ program exactly as you see it into x86 assembly language: // Use the...

Convert this C++ program exactly as you see it into x86 assembly language:

// Use the Irvine library for the print function

#include <iostream>

// The string that needs to be printed

char word[] = "Golf\0";

// Pointer to a specific character in the string

char * character = word;

//NOTE: This main() function is not portable outside of Visual Studio

void main()

{

// Set up a LOOP - See the while loop's conditional expression below

int ecx = 4;

do

{

// Print the character

// In x86 assembly language you must use the following two lines of code:

// mov al, WHATEVER_CHARACTER_YOU_WANT_TO_PRINT

// call WriteChar

std::cout << *character;

// Increment the pointer

++character;

} while (--ecx != 0);

// In x86 assembly language you must use the following line of code:

// call CrLf

std::cout << std::endl;

// In x86 assembly language you must use the following line of code:

// call WaitMsg system("PAUSE");

}

In: Computer Science

There are literally hundreds of options available for POS systems. Pretend that your manager has put...

There are literally hundreds of options available for POS systems. Pretend that your manager has put you in charge of purchasing a new POS system for your long-standing full service operation. Using an internet search tool, research three. How much do they cost? What are their features? What makes one better than the other?

Finally, decide which one would you purchase for your FSO, and why?  Put the answers to the above questions into a word document, and then write up a mock email to your manager. Support your decision to your manager and explain why you made the choice you did.

This is a professional communication document. Please use effective writing for professional communication. Please submit both your research and your mock email as Word documents.

If you don't have experience writing professional emails, here are some tips to help you with this assignment: Professional Email Tips

In: Operations Management

Suppose a computer using direct mapped cache has 232 bytes of main memory and a cache...

  1. Suppose a computer using direct mapped cache has 232 bytes of main memory and a cache of 1024 blocks, where each block contains 32 bytes.
    1. [2] How many blocks of main memory does this computer have?
    2. [4] Show the format of a memory address as seen by cache; be sure to include the field names as well as their sizes.
    3. [3] Given the memory address 0x00001328, to which cache block will this address map? (Give you answer in decimal.)
  2. A fully associative mapped cache has 8 blocks, with 16 bytes per block. Main memory is 128K bytes.
    1. [3] Show the format for a main memory address, assuming memory is byte addressable. Include the field names as well as their sizes.
    2. [3] Show the format for a main memory address, assuming memory is word addressable, where a word is 32 bits. Include the field names as well as their sizes.

In: Computer Science

When managing the performance of an organization, the leadership is always balancing between the risks and...

When managing the performance of an organization, the leadership is always balancing between the risks and rewards of using financial and non-financial information as well as internally and externally sourced information, in its performance report.

(a) Define and provide an example of each of the following:

            i. financial information and non-financial information.                 

            ii. internally and externally sourced information.

Word count should be a minimum 150 words, not exceeding 250 words.

(b) Elaborate on the benefits and issues of using the following information:

i. financial information versus non-financial information. (6.5 marks)

ii. internally sourced information versus externally sourced information.             (6.5 marks)

For each set of information, there should be at least two advantages and two disadvantages provided (no tables allowed, your answers should have proper headers and paragraphs and word count should be a minimum 350 words, not exceeding 450 words.            Marks will be awarded for format.                                               

In: Accounting

need to write program on python, without using any other libraries like panda, numpy, etc. here...

need to write program on python, without using any other libraries like panda, numpy, etc.

here is google link on csv file https://drive.google.com/file/d/1O3cC9JAPVkXSrddTR6RocpSV8NMHrmRx/view?usp=sharing

There is a csv file, which is exel file, very big and what program should do:

- Read a CSV file 'annual.csv' enterprise into a data structure

- Count the number of rows and columns

- Determine if the data contains empty values (should search in all rows)

- Replace the empty values by 'NA' for strings, '0' for decimals and '0.0' for floats (in all rows)

- Transform all Upper case characters to Lower case characters (in every word)

- Transform all Lower case characters to Upper case characters (in every word in file)

- save back the 'repaired' array as csv and show edited version

- Print out the size of the data (number of rows, number of columns)

the file approzimately looks like this, but it is very huge

In: Computer Science

You are a Practice Nurse in a small rural medical centre. Mr Stuart Murray is a...

You are a Practice Nurse in a small rural medical centre.

Mr Stuart Murray is a 48-year-old Indigenous man living with his family in a small rural town in NSW. Mr Murray has a medical history of type 2 diabetes, obesity and hypertension. Mr Murray drinks at least five schooners of beer and smokes up to 20 cigarettes daily. He is currently suffering from tiredness, breathlessness on exertion, swollen ankles, nausea, itchy skin and aching bones and joints. He passes about 400 mL of urine in 24 hours.

Mr Murray presents to his local medical centre saying he was not feeling well. Mr Murray’s regular medications are metformin and ramipril. You assess Mr Murray and reviews the pathology tests the doctor ordered.

  • His blood pressure is 167/95mmHg, pulse 92bpm, respiration rate 24.
  • Blood biochemistry reveals: Sodium 132 mmol/L, Chloride 92 mmol/L, Potassium 5.7 mmol/L
  • Bicarbonate 20 mmol/L, Urea 27.6 mmol/L, Creatinine 428 umol/L, Hb 82g/L, eGFR 20
  • HbA1c 8.6%

Question 11. Maximum word limit 20 words.

You are concerned that Mr Murray is at risk of, or is, developing Chronic Kidney Disease (CKD). Based on the scenario above, list the risk factors for CKD that are applicable to Mr Murray.

Question 12. Maximum word limit 20 words.

List the three recommend tests that form the kidney health check, to determine if Mr Murray is developing CKD.

Question 13. Maximum word limit 10 words.

Based on the physical assessment and the pathology test results, what stage of CKD is Mr Murray currently experiencing?

Question 14. Maximum word limit 300 words.

Mr Murray’s doctor prescribes the following dietary modifications and additional medications.

  • Sodium bicarbonate tablet 500mg tds
  • Calcium carbonate tablets 600mg tds
  • Erythropoietin injection 40,000 units SC weekly
  • 1500 mL fluid restriction
  • Low potassium and 70-gram protein diet

As the Practice Nurse in the medical centre, you explain to Mr Murray how each of these treatments are related to his failing kidney function, how they will improve his health, and how he should take them. Outline your explanation for each.

Question 15. Maximum word limit 150 words

The doctor tells Mr Murray that he will need to go to the nearest large town for a specialist consultation and treatment. Mr Murray is not sure that he wants to go.

  1. What cultural concerns may be raised for Mr Murray by this possibility?
  2. Briefly describe strategies that could be implemented to help maintain Mr Murray’s autonomy.
  3. Briefly describe strategies that could be implemented to help maintain Mr Murray’s cultural safety.

please provide refrences

In: Nursing

You are a Practice Nurse in a small rural medical centre. Mr Stuart Murray is a...

You are a Practice Nurse in a small rural medical centre.

Mr Stuart Murray is a 48-year-old Indigenous man living with his family in a small rural town in NSW. Mr Murray has a medical history of type 2 diabetes, obesity and hypertension. Mr Murray drinks at least five schooners of beer and smokes up to 20 cigarettes daily. He is currently suffering from tiredness, breathlessness on exertion, swollen ankles, nausea, itchy skin and aching bones and joints. He passes about 400 mL of urine in 24 hours.

Mr Murray presents to his local medical centre saying he was not feeling well. Mr Murray’s regular medications are metformin and ramipril. You assess Mr Murray and reviews the pathology tests the doctor ordered.

  • His blood pressure is 167/95mmHg, pulse 92bpm, respiration rate 24.
  • Blood biochemistry reveals: Sodium 132 mmol/L, Chloride 92 mmol/L, Potassium 5.7 mmol/L
  • Bicarbonate 20 mmol/L, Urea 27.6 mmol/L, Creatinine 428 umol/L, Hb 82g/L, eGFR 20   
  • HbA1c 8.6%

Question 11. Maximum word limit 20 words. (1 mark)

You are concerned that Mr Murray is at risk of, or is, developing Chronic Kidney Disease (CKD). Based on the scenario above, list the risk factors for CKD that are applicable to Mr Murray.

Question 12. Maximum word limit 20 words. (1 mark)

List the three recommend tests that form the kidney health check, to determine if Mr Murray is developing CKD.

Question 13. Maximum word limit 10 words. (1 mark)

Based on the physical assessment and the pathology test results, what stage of CKD is Mr Murray currently experiencing?

Question 14. Maximum word limit 300 words.

Mr Murray’s doctor prescribes the following dietary modifications and additional medications.  

  • Sodium bicarbonate tablet 500mg tds
  • Calcium carbonate tablets 600mg tds
  • Erythropoietin injection 40,000 units SC weekly   
  • 1500 mL fluid restriction
  • Low potassium and 70-gram protein diet

As the Practice Nurse in the medical centre, you explain to Mr Murray how each of these treatments are related to his failing kidney function, how they will improve his health, and how he should take them. Outline your explanation for each.

Question 15. Maximum word limit 150 words.

The doctor tells Mr Murray that he will need to go to the nearest large town for a specialist consultation and treatment. Mr Murray is not sure that he wants to go.

  1. What cultural concerns may be raised for Mr Murray by this possibility?
  2. Briefly describe strategies that could be implemented to help maintain Mr Murray’s autonomy.
  3. Briefly describe strategies that could be implemented to help maintain Mr Murray’s cultural safety.

In: Nursing

prepare a 500 to 700 word letter to either a government institution or non governmental organization...

prepare a 500 to 700 word letter to either a government institution or non governmental organization of your choice describing the conditions you encountered on a recent visit to an underdeveloped country. In your letter request financial assistance and / or resources for an intervention in a selected area that you feel will have the most impact on population health

In: Nursing

Pharmacy automation assignment 1. List and briefly describe the different types of drawers available for use...

Pharmacy automation assignment

1. List and briefly describe the different types of drawers available for use with the OmniRx®?

2. Briefly explain how CytoCare® is used in a pharmacy.

3. What are your personal thoughts on pharmacy automation as it pertains to your job as a pharmacy technician? (50 word min)

In: Nursing

lab report about following Note ** Should has examples ** Note ** Work through the Word...

lab report about following
Note ** Should has examples **
Note ** Work through the Word program **
Lab 1‪ - capacitors
Lab 2‪- indactor
Lab 3‪ - resistor
Lab 4‪- Ohm's law
Lab 5‪ - KVL
Lab 6‪ - KCL
Lab 7‪ - series and parallel circuit

In: Electrical Engineering