Answer:
Portable
Explanation:
Most of electronic devices can be programmed in a way that cant deny investigator access to certain information on the device and also, devices can be manipulated by an external hands to implicate people.
due to those uncertainty, some states place little wait on evidences obtained from those devices.
In Python, assume that a file containing a series of integers is named numbers.txt and exist on the computer's disk. Write a program that reads the entire numbers store in the file and calculates their total.
Here is what I have written but it does not run:
def. main():
out file=open('numbers.txt','r')
temp=outfile.readline()
total=0
while temp!='':
t=int(temp)
total=total+i
temp=outfile.readline()
outfile.close()
print('Total sum is:',total)
main()
Text file is a file named numbers.txt with the numbers 1-50 in it
Learn more:
- The sum of three consecutive integers is 186. what are the integers
brainly.com/question/1768254
Keywords: python, integers, computer, numbers, program
The answer is Insertion Point. In Microsoft Word, the insertion point is the blinking vertical line in the document. It will identify the location where you can enter or alter text on the page. When creating a new document, the insertion point is located in the top-left corner of the document.
Keyboards are used to type on electronics in the real world.
Answer:
#include <iostream>
using namespace std;
int main(){
int a, b, c;
cout<<"Enter three integers: ";
cin>>a>>b>>c;
if(a<=b && a<=c){
cout<<"Smallest: "<<a; }
else if(b<=a && b<=c){
cout<<"Smallest: "<<b; }
else{
cout<<"Smallest: "<<c; }
return 0;
}
Explanation:
This line declares three integer variables a, b and c
int a, b, c;
This line prompts the user for three integer inputs
cout<<"Enter three integers: ";
This line gets the inputs
cin>>a>>b>>c;
This checks if the first is the smallest
if(a<=b && a<=c){
If yes, it prints the first as the smallest
cout<<"Smallest: "<<a; }
This checks if the second is the smallest
else if(b<=a && b<=c){
If yes, it prints the second as the smallest
cout<<"Smallest: "<<b; }
If the above conditions are not true, then the third number is printed as the smallest
<em> else{</em>
<em> cout<<"Smallest: "<<c;</em>
<em> }</em>
<em />