I do t know the answer to this but i think tou can firger it iut food luck
Answer:
» Microsoft word ( word processing )
» Microsoft powerpoint ( presentation )
» Microsoft access ( database mamagement )
» Microsoft excel ( spread sheets )
Explanation:
Answer:
The correct answer to the following question will be "True".
Explanation:
SCADA is a hardware and software elements program that permits industrial enterprises to:
- Agricultural processes are regulated locally or globally.
- The human-machine interaction program specifically interfaces with equipment such as cameras, switches, generators, motors and much more.
- Track, store, and process the data in real-time.
Therefore, the given statement is true.
Answer:
The qualities of different products that caught your eye and encourage you to buy them is described below in detail.
Explanation:
A fantastic method to do this would be to practice shiny colors in any advertisement you publish. This is an old method, but it's a great one. Glowing orange, for example, is sure to hold watching much higher than bland shades like gray. Play throughout here, and apply the color you think illustrates the eye most.
Answer:
The output will be:
B
o
n
d
0
0
7
Explanation:
Given code is of Python language
Let us look at the code line by line
The first line is:
my_list = [7, 0, 0, "d", "n", "o", "B"]
This line will create a list with the given elements.
my_list.reverse()
This line will reverse the sequence of the elements of the list
for thing in my_list:
print (thing)
These lines will simply print the reversed elements of the list on screen.
The output will be:
B
o
n
d
0
0
7