Answer:
1. software (1st row)
2. binary code (6th row)
3. pc language (11th row)
I found these three!!!
Answer:
C. Infinite loop
Explanation:
num will be printed continuously since it will always be bigger than
(
is greater than
, satisfying the condition num > 0) making it an infinite loop since it will go on forever.
Hope this helps :)
Answer:
The correct answer to the following question will be "Embedded Chip".
Explanation:
- Embedded devices are a CPU chip positioned in a system that supports to improve the process. They are frequently confused with microprocessors, need other external elements, such as embedded storage and peripheral interfaces, to execute their specified tasks.
- A thin, electronic device produced by the manufacturer to be used in another device is named as Embedded Chips.
Therefore, Embedded chips are the right answer.
Answer:
fortnite
Explanation:
fortnite battle royale is an online multiplier game
Answer:
- Code is in JAVA language. As there is no user input the logic is straightforward.
- Below is the code along with a detailed explanation of the logic.
- The class name is Print main save as file as the main class.
Explanation:
Program:-
public class Main{
public static void main(String args[]){
/* There are two for loops...
* First for loop runs from i=1 to i=9
* Second for loop runs from j=1 to j=i.
*
*/
for(int i=1;i<=9;i++){
for(int j=1;j<=i;j++){ // j loop runs from j=1 to j=i
/*Prints I and j next to each other*/
System.out.println(i+""+j);
}//for loop of j ends here
}// for loop of I ends here
}
}