Using any national known computer manufacturer, draft an outline of a computer c
ID: 3732850 • Letter: U
Question
Using any national known computer manufacturer, draft an outline of a computer configuration for your use. You will post a draft of your personal computer (PC) configuration to the Discussion Board for peer review. Your draft 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.
Click here for a computer configuration worksheet you can use to help evaluate various computers.
Give the Java statement that produced the following JVM assembly code and explain:
ILOAD k
ILOAD n
IADD
IPUSH 16
IADD
IDUP
ISUB
ISTORE m
Explanation / Answer
If we use Intel manufacturer company
Standard PC
Processor: Intel Core i5 or i7
Processing speed : @ 3.5GHz
Monitor size: 20" Widescreen HD LCD
RAM: 8 GB (depends upon the applications running simultaneously)
Hard Drive : 1 TB SSD (Preferred)
Optical Drive: CD/DVD writer(It can be an optional part)
Video: Intel HD Graphics card (You can use separate 2 gb graphics card)
Keyboard: 104+ keys keyboard (USB)
Mouse: USB Optical Mouse
Standard Laptop
Processor: Intel Core i5 or i7
Processing speed : @ 2.8GHz
Display: 14.5" wide screen
RAM: 8 GB (depends upon the applications running simultaneously)
Hard Drive: 1 TB recommended
Optical Drive: CD/DVD writer(It can be an optional part)
Wireless: yes
iMac Desktop (Mac configurations subject to availability):
Processor: Intel i5 or i7
Processing speed : @ 2.8GHz
Core Processor: Quad-Core or Octa-core
Display: 21.5" widescreen LCD
RAM: 8 GB minimum
Hard disk: 1 TB minimum
Video: Intel Iris Pro Graphics
Keyboard: USB
MacBook Laptop (Mac configurations subject to availability):
Processor: Intel Duel-Core, i5 or i7
Processing Speed: @2.8 GHz
Core Processor: Dual-core or Quad-Core
Display: 13.3-inch
RAM: 8GB minimum
Hard Drive: 1 TB minimum
Wireless: yes
USB-Port: Dual
Server requirements depends on:
No. of applications
No. of users
Expected lifetime of server
Uptime requirements
Future applications
Also consider RAID configuration.
Java statement to JVM bytecode:
It is an implementation of a stack push pop operation
ILOAD k //Load long value from variable k
java: long k;
ILOAD n //Load long value from variable n
java: long n;
IADD // the two long value are added and pushed to the operand stack
java: long result=k+n;
IPUSH 16 //16 is being pushed to the stack
java: long var1=16;
IADD
java: result=result+var1;
IDUP //duplicate the top value on the operand stack and push the duplicated value onto the operand stack.
java: long dup_1=result;
ISUB // the two long value are subtracted and pushed to the operand stack
java: result= dup_1-result;
ISTORE m //store the final result onto variable m
java: long m=result;
The total java code like:
import java.lang.Math
class StackOp
{
public static void main(String args[])
{
long k,n;
long result=k+n;
long var1=16;
result=result+var1;
long dup_1=result;
result=dup_1-result;
long m=result;
}
}
Related Questions
drjack9650@gmail.com
Navigate
Integrity-first tutoring: explanations and feedback only — we do not complete graded work. Learn more.