learnwithisrak

risc-and-cisc-computes

Write a RISC & CISC-style program that computes the expression SUM = 580 + 68400 + 80000

RISC-style program: A RISC-style program that computes SUM = 580 + 68400 + 80000   Move R2, #NUMBERS Get the address of the numbers.   Load R3, (R2) Load 580   Load R4, 4(R2) Load 68400   Add R3, R3, R4 Generate 580 + 68400   Load R4, 8(R2) Load 80000   Add R3, R3,

Write a RISC & CISC-style program that computes the expression SUM = 580 + 68400 + 80000 Read More »

cpp_vs_java

How is java different from c++

Features removed in java: New features added in Java: Features that differ: C++ vs Java: ComparisonIndex C++ Java Platform- independent C++ is platform-dependent. Java is platform-independent. Mainly used for C++ is mainly used for system programming. Java is mainly used for application programming. It is widely used in Windows, web-based, enterprise, and mobile applications. Goto

How is java different from c++ Read More »

Features-of-Java

Explain the Features of Java

There is given many features of java. They are also known as java buzzwords. The Java Features given below are simple and easy to understand. Simple:  According to Sun, Java language is simple because: Object-oriented:  Object-oriented means we organize our software as a combination of different types of objects that incorporates both data and behaviour.

Explain the Features of Java Read More »

Basic-Structure-of-Computer-System

The main structural components of a computer

The four main structural components are the Central Processing Unit (CPU), main memory, input/output devices, and system interconnection. Central Processing Unit (CPU): Controls the operation of the computer and performs its data processing functions; often simply referred to as a processor. It is the brain and the heart of the computer. The operations of a

The main structural components of a computer Read More »

Scroll to Top