Generally, Janice should post information about her past employment in the Experience section, also often called as Professional Experience. The information that she should include is the name of the organization or company which previously employed her, her positions there, length of each position, and a description of what she did in the position.
Answer:
Assembly language
Explanation:
Assembly language writes instructions in human letters. Every machine language instruction has a corresponding assembly language instruction that means exactly the same thing. Assembly language uses a symbolic form of a program which are capable of:
- readable by human beings (+/-)
- constants, addresses, and names of symbolic instructions
- arithmetic during assembly - calculations of addresses, constants
- synthetic instructions (not supported by our assembler)
- expansion of macroinstructions (not supported by our
assembler)
- assembly instructions (pseudo-instructions)
• memory allocation
• memory initialization
• conditional assembly (not supported by our assembler)
Any song recommendations u got for me? Thanks for the points!!!!
Answer:
The algorithm is as follows
1. Start
2. Declare Integer N
3. Input N
4. While N > 0:
4.1 Print(N%10)
4.2 N = N/10
5. Stop
Explanation:
This line starts the algorithm
1. Start
This declares an integer variable
2. Declare Integer N
Here, the program gets user input N
3. Input N
The while iteration begins here and it is repeated as long as N is greater than 0
4. While N > 0:
This calculates and prints N modulus 10; Modulus of 10 gets the individual digit of the input number
4.1 Print(N%10)
This remove the printed digit
4.2 N = N/10
The algorithm ends here
5. Stop
<u>Bonus:</u>
The algorithm in Python is as follows:
<em>n = 102</em>
<em>while n>0:</em>
<em> print(int(n%10))</em>
<em> n= int(n/10)</em>
<em> </em>
Answer:
False: There are reasons to put comments in our code. We should have the habit of that.
Explanation:
- sometimes when we start to debug our program due to some error in execution, we don't recognize properly which code we have written for what purpose.
- if we distribute the code to others as a team, others get the intention of our code more clearly due to comments.
- The code can be reused taking it's sections to form an other program, where the comments has a vital role.