I think select the video insert select the movie option under illustrations resize the video player then select the insert tab i’m not 100 percent sure tho
D. Plot because a,b,and c is consider plot can i have brainlest answer please
D. Time
It’s easy to access any time even after it was just purchased.
I hope this helped
Answer:
file_name = 'orders.txt'
file_obj = open( file_name, 'r' )
lines = file_obj.read()
print(lines.upper(), end = '')
Explanation:
- Define the name of the file
.
- Use the built-in open function to open the file in read mode
.
- Use the built-in read function to read the file and assign this to lines variable.
- Finally display the lines by converting them to capital alphabets by using the built-in upper() function.
Answer:
In this situation OR operator are used
In this operator if one input is one then the out put will be one or if one condition is true and one is false the result is true.The out put is always one in this truth table except input output both are zero
Truth table of OR
A B C
0 0 0
0 1 1
1 0 1
1 1 1