Answer:
what should I help you
Explanation:
I don't no any thing because I an beginning
Answer:
Here it is
Explanation:
Processing is not considered as the tool of ICT. Explanation: ICT is Information and Communication Technology. This is one of the trending technologies with new concepts.
Answer:
(c) 16
Explanation:
An opcode is the short form for operation code which is also called instruction code. This code forms part of the instructions (instruction set) executed by the computer and it tells the computer the actual operation to be performed. The size of the opcode is the number of bits occupied by it. It is related to the instruction set size as follows;
2ˣ = I ----------------(i)
Where;
x = opcode size or bit
I = maximum or total number of instructions allowed
From the question,
x = 4 bits.
Substitute this value into equation (i) as follows;
2⁴ = I
I = 16.
Therefore, the maximum number of instructions allowed in your instruction set or your PROM - Programmable read-only memory - is 16
Answer:
see the code snippet below writing in Kotlin Language
Explanation:
fun main(args: Array<String>) {
sumOfNumbers()
}
fun sumOfNumbers(): Int{
var firstNum:Int
var secondNum:Int
println("Enter the value of first +ve Number")
firstNum= Integer.valueOf(readLine())
println("Enter the value of second +ve Number")
secondNum= Integer.valueOf(readLine())
var sum:Int= firstNum+secondNum
println("The sum of $firstNum and $secondNum is $sum")
return sum
}