Using any national known computer manufacturer, finalize the outline of a computer configuration for your use. Incorporate feedback from the instructo

Write a 300 words evaluating But, Can They Write? This is not a summary. Write in third person present.
June 28, 2020
Analyze key leadership theories and concepts for relevance to healthcare organizations and nursing management.
June 29, 2020

Using any national known computer manufacturer, finalize the outline of a computer configuration for your use. Incorporate feedback from the instructo

Project description
Key AssignmentPart 1 Tasks: Week 4 IP Final DraftUsing any national known computer manufacturer, finalize the outline of a computer configuration for your use. Incorporate feedback from the instructor and peer review into your final draft. Your outline should include the following:Explain in detail why you chose that specific hardware. It should have the type and speed of the central processing unit (CPU), the hard disk type, memory, cache memory, and so forth.
You should have enough configuration details to explain how you came about the desired specifications.
Attached is the Computer configuration worksheet to use to help evaluate various computers.Part 2 Tasks: Week 5The Assembly code compilation may be challenging, but the program has to be saved and submitted through a Notepad++ document. You can download notepad++ if you do not have a current copy.Click on this link https://notepad-plus-plus.org/download/v6.6.3.html to download the Notepad++ software. After you download the Notepad++ editor, type in your code and save it. Then it can be copied and pasted and run in an online compilerClick this link http://www.tutorialspoint.com/codingground.htm to compile and execute assembly code.
–
Added on 10.06.2016 20:56
Compile and execute the existing Assembly code on the left side of the screen. The following is the code that should be displayed: (Complineonline, n.d.)section .textglobal _start ;must be declared for using gcc_start: ;tell linker entry pointmov edx, len ;message lengthmov ecx, msg ;message to writemov ebx, 1 ;file descriptor (stdout)mov eax, 4 ;system call number (sys_write)int 0x80 ;call kernelmov eax, 1 ;system call number (sys_exit)int 0x80 ;call kernelsection .datamsg db Hello, world!,0xa ;our dear stringlen equ $ msg ;length of our dear stringWhen you click on the compile and execute button, the following results in the right screen will display:Compiling main.asm source code.
$nasm -f elf main.asm 2>&1Linking the program.
$ld -m elf_i386 -s -o demo *.o 2>&1Executing the program.
$demoHello, world!2. Modify the code to display the following four lines:Hello, world!CE 242 is an awesome and fun class!CTU is a great University!I love the USA!Part 3 Tasks: Week 5Convert the following binary code into ASCII Text. Please show your work and do not use an online converter.01001001 00100000 01101100 01101111 01110110 01100101 00100000 01000011 01010100 01010101Write your full name in Binary code separated in bytes. For example, the name of the president of the USA in binary code isBarak Obama0100001001100001011100100110000101101011001000000100111101100010011000010110110101100001Show your work.What are the advantages of using Fixed-Length number representation in Assembly in contrast to JAVA? Explain, and give examples.
What are the benefits and drawbacks between assigning a real number and an integer in Assembly? Why do you need either or both? Give examples.
Compile this assembly code that uses arrays. (Tutorialspoint, n.d.)section .textglobal _start ;must be declared for linker (ld)_start:mov eax,3 ;number bytes to be summedmov ebx,0 ;EBX will store the summov ecx, x ;ECX will point to the current element to be summedtop: add ebx, [ecx]add ecx,1 ;move pointer to next elementdec eax ;decrement counterjnz top ;if counter not 0, then loop againdone:add ebx, mov [sum], ebx ;done, store result in sumdisplay:mov edx,1 ;message lengthmov ecx, sum ;message to writemov ebx, 1 ;file descriptor (stdout)mov eax, 4 ;system call number (sys_write)int 0x80 ;call kernelmov eax, 1 ;system call number (sys_exit)int 0x80 ;call kernelsection .dataglobal xx:db 2db 4db 3sum:db 0Change the program to display F as a sum of the array.ReferencesCompileonline.com. (n.d.). Compile and execute assembly online (NASM version 2.10.07). Retrieved from http://www.compileonline.com/compile_assembly_online.phpNotepad++. (n.d.). Download Notepad++ 6.6.3. Retrieved from http://notepad-plus-plus.org/download/v6.6.3.htmlTutorialspoint. (n.d.). Assembly Environment setup. Retrieved from http://www.tutorialspoint.com/assembly_programming/assembly_environment_setup.htm
Instruction filescomputer_configuration_worksheet5.doc(17,50 KiB)
ass4.docx(18,77 KiB)

+1 (786) 788-0496
Welcome to brimaxessays.com
Hello 👋
We will write your work from scratch and ensure it's plagiarism-free, you just submit the completed work.