Answer:
I don't know the language this is but here is something that will work for all lang
int num0 = 0;
int num1 = 0;
basically just print the ints in the right dimension
Explanation:
Sorry if I am wrong
I don't know much about this someone else's answer might be better than mine
Technology used: Transistor. Operating speed was in terms of a microsecond. Assembly language and machines independent language such as COBOL (Common Business Oriented Language) and FORTRAN (Formula Translation) were introduced the size of the computer. Magnetic core memory was used as primary memory.
Answer:change the background of the slides
Explanation:
Unix. GUIs were first shown at Xerox PARC (Palo Alto Research Center) in 1973. X-Windows is used on Unix to decouple I/O from processing, in other words what you're working on can be displaying on your computer but executing on another. NeXTstep is Apple's Unix developed on/from/with BSD (Berkley Software Division) Unix. I would assume that suntools were developed on Sun Solaris.
def replace_at_index(txt, ind):
new_txt = ""
for x in range(len(txt)):
if x == ind:
new_txt += "-"
else:
new_txt += txt[x]
return new_txt
print(replace_at_index("eggplant", 3))
I wrote my code in python 3.8. I hope this helps.