Answer:
B. How many programming statements the program contains
Explanation:
If a program is intended to be able to process large amounts of data, then the ability of the program to process larger data sets is heavily affected by
- execution time
- size of memory the program requires
- storage space the program requires as it runs.
The length of the statements the program contains does not much affect program performance.
Insert - Header - choose header of your choice. Page numbers are below the Header icon
The program is
num = int(input("Enter Numerator "))
den = int(input("Enter Denominator "))
print("quotient is ",str(num//den)," remainder is ", str(num%den))
<h3>
How to create a division sign in HTML?</h3>
To create a division sign ( ÷ ) in HTML you can use any of the following codes.
÷
÷
÷
<h3>
How to divide in computer programming?</h3>
Perl code
use strict;
my $first = 15;
my $second = 5;
my $answer = $first / $second;
print "You get $answer if you divide $first by $second";
When the script above is run, it displays "You get 3 if you divide 15 by 5" on the screen.
To learn more about programming, refer
https://brainly.ph/question/4743
#SPJ4
Answer:
Scaling changes the size of the whole image by resampling it(duplicating the pixels). in cropping you only get a part of the original image/ remove the outer area of it .
Explanation: