a) Cut/copy and paste allows you to select a section of text and insert a new copy of that text. You can also transfer data from one place to another.
b) Save is when you keep your work for later and it will be the same as you left it. Think of it like putting a bookmark in your book. Save as lets you name the files.
c) Close and Exit just let you leave the program, saying you are finished working with it and want to do something else.
Answer:
a source and a target.
Explanation:
In computer science and information theory, data differencing or differential compression is producing a technical description of the difference between two sets of data – a source and a target.
Answer:
p(x,n)
1. if(n==0) [if power is 0]
2. then result =1.
3.else
4. { result=1.
5. for i=1 to n.
6. { result = result * x. } [each time we multiply x once]
7. return result.
8. }
Let's count p(3,3)
3
0, so come to else part.
i=1: result = result *3 = 3
i=2: result = result *3 = 9
i=2: result = result *3 = 27
Explanation:
here the for loop at step 4 takes O(n) time and other steps take constant time. So overall time complexity = O(n)
Answer:
IN PYTHON ::
x=int(input('Enter length:'))
y=int(input('Enter width:'))
print('Area of the rectangle is', x*y,'squared units')
I hope it will be useful.
Answer:
integer
Explanation:
this data type must be a number, but it will always be a whole number, so boolean is not appropriate. This means that it will be integer data type