Answer:
photoshop
Explanation:
(if there are answer choices pls comment them and I'll pick an answer from them, but this is just my best guess. : )
Answer:
b
Explanation:
CPU manual provides guides to use a CPU.
Assembler manual provides guide on how to use an assembler and so is the case for compiler.
For a particular machine, it set of instructinos are available with the programmer.
Answer:
a. double-cross
Explanation:
Using the blockchain technology in the case of issuing concert tickets solves the problem with double-cross, which is when someone cheats another person who had trusted in them for some transaction. <em>A great asset with blockchain is the transparency with all the transactions because they are registered and cannot be erased or changed.</em>
Answer:
for(int i =0; i<yearlySalesTotals.length;i++)
Explanation:
The for statement in has the syntax as given above, it has an int variable indicating the starting index, then a boolen condition ensuring that you don't get out of the array bounds, and an increment operator.
See below a complete program in java that will output all elements of the array assuming the array yearlySalesTotals contains only ten elements and all indexes has been assigned values.
public class ANot {
public static void main(String[] args) {
double []yearlySalesTotals = new double[10];
for(int i = 0; i<yearlySalesTotals.length; i++){
System.out.println(yearlySalesTotals[i]);
}
}
}
What is blooket used for..........