Answer: 14%
Advantages: No loss of quality, slight decreases in image file sizes. Disadvantages: Larger files than if you were to use lossy compression.
I hope this helps!<3
Explanation:
Image files can be reduced by as much as 50-70% of the original when using lossless compression.
Lossless compression is a type of image compression that reduces the file size of an image without losing any of the original data. By using algorithms that eliminate redundant information, the file size can be reduced by a significant amount without affecting the quality of the image. The exact amount of reduction will depend on the type of image and the specific compression algorithm used, but typical reductions are in the range of 50-70% of the original file size.
It's worth noting that lossless compression may not always result in the smallest file size, as other types of compression such as lossy compression can produce even smaller files at the cost of some degradation in image quality. The choice between lossless and lossy compression will depend on the specific use case and the desired trade-off between file size and image quality.
Learn more about image compression here:
https://brainly.com/question/12978364
#SPJ4
Output the user's input. (2 pts)
Output the input squared and cubed. Hint: Compute squared as user_num * user_num. (2 pts)
Get a second user input into user_num2, and output the sum and product. (1 pt)
Starting with the first line of the main() function, the code is executed. A library function called printf() is used to display output that has been formatted
What Output in c programing?Starting with the first line of the main() function, the code is executed. A library function called printf() is used to display output that has been formatted. The function quotes the string before printing it. We must include the stdio.h header file in our application using the #include command in order to use printf(). When we use the word "output," we want to show some data on the screen, on the printer, or in any file. Data can be output on the computer screen and saved in text or binary files using the built-in features of the C programming language. An optimization function will call an output function after each iteration of its algorithm.user_num = int(input('Enter integer:\n'))
print(user_num) # Output the user's input
print(user_num * user_num) # Output the input squared
print(user_num * user_num * user_num) # Output the input cubed
user_num2 = int(input('Enter another integer:\n')) # Get a second user input into user_num2
print(user_num + user_num2) # output the sum
print(user_num * user_num2) # output the product
To learn more about c programing refer to:
https://brainly.com/question/26535599
#SPJ4
TRUE or FALSE. a content aggregation website allows users to collect and compile content from a variety of websites about a particular topic or theme.
A content aggregation website allows users to collect and compile content from a variety of websites about a particular topic or theme is true.
A content aggregation website is a platform that collects and compiles content from a variety of sources, often from multiple websites, and presents it to the user in a single location. This type of website often focuses on a specific topic or theme, and the content can range from news articles, blog posts, images, videos, and more. The purpose of a content aggregation website is to provide a convenient and centralized source of information for users, allowing them to quickly access and review a wide range of related content without having to visit multiple websites. This can be a time-saving and efficient way for users to stay informed and up-to-date on a particular topic of interest.
Learn more about websites here:
https://brainly.com/question/6107621
#SPJ4
assembly language can be considered an l4 language. when it is assembled into machine code, all the instructions in assembly language are converted into machine code first by an assembler, then that machine code is executed by the cpu. this conversion is known as what?
An assembler transfers assembly machine language into machine language.
Is machine code converted from assembly code?Computers employ assembly language, a low-level programming language. Its commands are short mnemonics that correspond to instructions written in machine language, such as ADD, Secondary (subtract), as JMP (jump). A software called an assembler converts assembly language to machine code. A program known as a disassembler converts machine code into assembly.
A low-level programming called assembly is made to communicate directly with a computer's hardware. Unlike machine languages, which employ binary and hexadecimal letters, assembly languages are designed to be human-readable. A program can be converted into machine words that are then executed by an interpreter, or it can be assembled into those instructions.
To learn more about assembly language visit:
https://brainly.com/question/14728681
#SPJ4
when used in its interactive mode, which nslookup command will disable recursive lookups?
Option A: Recursive lookups are disabled by the nslookup command when set norecurse is invoked in its interactive mode.
A command is a request that tells a computer program to carry out a certain task in computing. It can be sent using a command-line interface, such as a shell, as input to a network service as part of a network protocol, as an event in a graphical user interface brought on by the user picking an item from a menu, or as a command sent to a computer over a network.
Imperative computer languages specifically employ the word "command" in their vocabulary. Statements in these languages are typically expressed in a way resembling the imperative mood seen in many natural languages, which is how the name for these languages came about. A command is typically compared to a verb in a natural language if one thinks of a statement in an imperative language as being similar to a sentence.
Learn more about command here:
https://brainly.com/question/29627815
#SPJ4
The complete question is:
When used in its interactive mode, which nslookup command will disable recursive lookups?
A) set norecurse
B) set no resurse
C) no recurse enable
D) recurse disable
you write the sql query below. add a distinct clause that will remove duplicate entries from the billing_city column.
You can use the DISTINCT operator in the SELECT clause to delete duplicate rows from a result set as seen below:
SELECT DISTINCT
column1, column2, ...
FROM
table1;
If a column is used after the DISTINCT operator, the DISTINCT operator evaluates duplicates using the values in that column.
In the SELECT clause, the DISTINCT keyword is used to remove redundant rows and display a distinct set of data. To put it another way, the DISTINCT keyword pulls out distinct values from a table.
Just keep in mind that the DISTINCT keyword needs to come before the columns you've specified. When more than one column is designated as DISTINCT, SQL will only return distinct combinations of the values for those columns.
If you choose to pick several columns, all of the columns will be combined and just the row's uniqueness will be taken into account. Instead of a distinct column, SQL DISTINCT looks for a distinct row.
To know more about DISTINCT:
brainly.com/question/29039082
#SPJ4
note that common tasks are listed toward the top, and less common tasks are listed toward the bottom. according to o*net, what are common tasks performed by librarians? check all that apply.
Teach library patrons to use library catalogs, databases, and research tools,Organize and maintain library materials,Develop programs to encourage reading,Catalog materials, such as books and audiovisual aids.
What is the materials?Materials refer to the substances or components used in the production of goods, structures, and other items. They can include raw materials such as wood, metal, or plastic, as well as manufactured items such as nails, bolts, and screws. These materials can be used in the construction of buildings, in the creation of consumer products, or in the manufacturing of industrial components. Materials are essential to the development of modern society, and they are the foundation of many of our everyday items.
To learn more about materials
https://brainly.com/question/30206263
#SPJ4
what will be the output of the following java program?
public class methoddemo {
public static void main(string[] args) {
system.out.println("hello");
names();
} public static void animals() {
system.out.println("dog"); system.out.println("cat"); } public static void names() {
system.out.println("amy"); system.out.println("tom"); } } // end class
The output of the above program will be:
"Hello" "Amy" "Tom"The program first prints "Hello" because it is the first line of code that is executed in the main method. Then it calls the names() method, which prints "Amy" and "Tom". Lastly, the animals() method is not called, so nothing is printed for that.
System.out.print is a method in Java that allows you to print out strings or other data types to the console. When you use the System.out.print method, the output is printed to the standard output stream, which is usually the console. The System.out.print method takes a String as an argument, and prints out the String to the console. For example, the following code will print out "Hello World" to the console:
System.out.print("Hello World");
Learn more about the output function:
https://brainly.com/question/21863439
#SPJ4
what is the difference between a page header and a heading on your worksheet?
marcus checks a new direct expansion (dx) coil and finds no pressure present. what should he do
A page header is typically located at the top of the page and is used to provide general information about the page.
What is worksheet?A worksheet is a piece of paper or document used by individuals or businesses to organize data, record information, or perform calculations. It typically contains a series of rows and columns with cells where people can enter data. Worksheets can be used for a variety of purposes, such as to record sales or expenses, budget, track inventory, or even to create a to-do list.
It usually contains the page number, the document title, and the author's name. In contrast, a heading on a worksheet is typically used to divide sections of the worksheet and to provide more specific information about the contents of that particular section. Headings are usually written in larger font than the text in the worksheet.
To learn more about worksheet
https://brainly.com/question/27960083
#SPJ4
what describes how the databricks lakehouse platform functions within an organization, at a high level?
The data bricks lakehouse platform functions within an organization, at a high level of machine learning support of data lakes.
What is the organization?A company, institution, association, or another type of entity made up of one or more people serving a specific purpose is referred to as an organization or organization. The word is derived from the Greek word organon, which also refers to an organ and various tools or instruments.
You can use your data however and wherever you want since The Databricks Lakehouse preserves it in open-source data standards in your massively scalable cloud object storage.
Therefore, As a result, The data bricks lakehouse platform functions best describe machine learning.
Learn more about the organization here:
https://brainly.com/question/17584732
#SPJ1
When constructing the ethernet datagram to send the packet from computer 1 to its gateway.
Ethernet frames are converted into IP packets by adding extra data, including IP addresses, to the data field. After the packet reaches the network switch, Layer 2 assumes control and sends frames in accordance with the distinctive MAC addresses of each device.
What does an Ethernet transmission's destination MAC address mean when it leaves an interface?
An Ethernet broadcast frame is received and processed by each device connected to an Ethernet LAN. These features describe an Ethernet broadcast: The destination MAC address of this packet is FF-FF-FF-FF-FF (or 48 1s in binary). Every Ethernet switch port is fully utilized, with the exception of the incoming port.
Here you can learn more about ethernet in the link brainly.com/question/13441312
#SPJ4
2. keeping in mind that all the personal information you received was provided voluntarily, what can you do with this information?
In general, when you voluntarily collect personal information, it is important that you treat it with care and respect the privacy of the individuals who provide it.
What is personal data used for?The specific use of personal information will depend on the context in which it was collected and the purpose for which it was provided.
For example, if personal information is collected as part of a transaction or service, it can only be used to complete that transaction or provide that service. If personal information was collected as part of a research or research project, it may only be used for the purposes of that research or research. In either case, it is important to be transparent about how personal data is being used and to obtain individual consent for that use. Use of personal data must also comply with relevant laws and regulations, such as: Data Protection Laws.
To know more about protection law visit:
https://brainly.com/question/28610014?
#SPJ4
write a python script that reads an integer between 0 and 1000 and adds all the digits in the integer.
Hence, the sum of the first 1000 positive integers is 500500
How do you compute the sum of numbers ranging from 1 to 100?How Do You Calculate the Sum of Natural Numbers 1 to 100is The sum of all natural numbers from one to one hundred is 5050. This range has a total of 100 natural numbers. So, we get S=5050 by plugging this number into the formula: S = n/2[2a + (n 1) d].
The sum() function in Python is used to compute the sum of digits of a number in a list. Convert the number to a string using str(), then use the strip() and map() methods to strip the string and convert it to a list of integers. Then, using the sum() technique, compute the total.
To learn more about sum of integers to refer;
https://brainly.com/question/29354311
#SPJ4
what kind of irrelevant to someone simulating the performance of a computerized anti-skid system for cars?
Information that is irrelevant to someone simulating the performance of a computerized anti-skid system for cars might include:
Personal opinions or preferences.Historical events not related to the development or use of anti-skid systems.Demographic information about the intended users of the car, such as their age, gender, or income.Information about unrelated industries or technologies.Personal anecdotes or experiences that are not relevant to the simulation.An anti-skid system is a computerized system in a car that helps improve traction and stability when driving on slippery surfaces, such as ice or wet roads. In order to simulate the performance of such a system, it's important to focus on the relevant factors that impact its functioning, such as the type of sensors used, the algorithms used to calculate the amount of braking needed, the response time of the system, etc.
Learn more about anti-skid: https://brainly.com/question/10455273
#SPJ4
Why you should be aware of your computer's system components and their characteristics?.
Understanding the fundamentals of the computer hardware components is crucial for every organization that uses technology and computers.
Why is it necessary to understand how a computer works?
Being proficient with computer lingo and terminology will make you more productive when using other types of technology. For instance, anyone with access to the Internet is better equipped to use it and link additional gadgets.
Why is it crucial that people are aware of and comprehend computer hardware components?
Software is needed for hardware to function properly. Your software could not function properly or at all if the appropriate hardware isn't used. When choosing your IT solutions, it's crucial to take both into account because doing otherwise could effect how you work.
To know more about computer components visit:
https://brainly.com/question/850269
#SPJ4
the active directory database is hosted on a specialized windows server system referred to as a , which functions as the central authority within the network of user accounts and computers that comprise the .
The Active Directory database is hosted on a specialized Windows Server system referred to as a Domain Controller, which functions as the central authority within the network of user accounts and computers that comprise the Active Directory domain.
The Domain Controller is responsible for authenticating user logins, providing access rights to resources, and maintaining the directory structure.
In addition, the Domain Controller processes Group Policy Objects (GPOs) which contain user and computer settings, as well as security policies. All of these tasks require a secure connection between the Domain Controller and the local network and the network backbone.
Learn more about Domain Controller
https://brainly.com/question/25664001
#SPJ4
How many times does wget try?
By default, wget will attempt to download a file up to 20 times. This value can be changed with the --tries option.
What is the wget ?
Wget is a free, widely-used, non-interactive command-line tool for retrieving files from the web. It supports HTTP, HTTPS, and FTP protocols, as well as retrieval through HTTP proxies. Wget is a useful tool for automating the download and processing of files from the Internet, allowing users to quickly and efficiently retrieve large amounts of data. Wget features recursive download, conversion of links, support for proxies, support for restarting downloads, and support for resuming downloads that have been interrupted. It is platform-independent and is available for Windows, Mac, and Linux operating systems. With its various features, Wget is a great tool for quickly and easily downloading files from the web.
To learn more about wget
https://brainly.com/question/26986135
#SPJ4
what is a danger that the creators of stuxnet have created for other industrial counties, including the united states? what is the greatest fear created by stuxnet?
The danger that the creators of Stuxnet have created for other industrial countries, including the United States, is the potential for cyberattacks on critical infrastructure.
What is Stuxnet?
Stuxnet is a highly sophisticated computer worm that was discovered in 2010 and is widely believed to have been developed by the US and Israel to target the Iranian nuclear program.
The greatest fear created by Stuxnet is the vulnerability of industrial control systems (ICS) and the potential for significant harm to national security and public safety. Stuxnet showed that ICS can be targeted and manipulated, potentially causing physical damage to equipment and disruption to essential services such as power plants, water treatment facilities, and transportation systems.
Additionally, the sophistication and level of customization of Stuxnet has set a precedent for future state-sponsored cyberattacks, leading to a higher likelihood of similar attacks targeting critical infrastructure in other countries. This creates fear and uncertainty about the security and reliability of ICS, and raises concerns about the need for increased investment in cyber defense measures.
To learn more about Stuxnet:
https://brainly.com/question/29214295
#SPJ4
write a python program that prompts the user to enter the side of a hexagon and displays its area.
Answer:
import math
side = float(input("Enter the side length of the hexagon: "))
area = (3 * math.sqrt(3) * (side ** 2)) / 2
print("The area of the hexagon is", area)
Explanation:
This program uses the math module to perform the square root operation, and the input function to prompt the user for input. The input is then converted to a float for computation. The formula for the area of a hexagon is used to calculate the result and the final answer is printed to the screen.
A collection of Python statements that have been carefully chosen to accomplish a certain task is the simplest definition of a program.
What is python program?A collection of Python statements that have been carefully chosen to accomplish a certain task is the simplest definition of a program. A program is even our basic hello.py script. Even though it only has one line and isn't really helpful, it is a Python program by the strictest definition. Children aged 12 and up should use Introduction to Python.Children begin by studying the principles of coding, including variables, loops, and if/then expressions. Learning the basics of Python typically takes between two and six months. But in just a few minutes, you can pick up enough knowledge to create your own brief program. It can take months or years to fully understand Python's enormous collection of libraries.import math
side = float(input("Enter the side length of the hexagon: "))
area = (3 * math.sqrt(3) * (side ** 2)) / 2
print("The area of the hexagon is", area)
To learn more about python program refer to:
https://brainly.com/question/26497128
#SPJ4
during the meeting, one of the committee members asks how you will monitor the progress of the app's development and test its features along the way to ensure it does what you're expecting it to. what tool can you use to see how the app will perform on android devices
The CPU profiler in Android Studio. Businesses should connect and also use data centers as sizable data stores to run a number of applications monitor.
what tool can you use to see how the app will perform on android devices?While you engage with your app, the Android Studio CPU profiler inspects its CPU utilization and thread activity in real time. Details in recorded method traces, function traces, and system traces can also be examined. The System tracing utility is an Android app that logs device activity and saves it to a trace file.
The Memory Profiler is an Android Profiler component that assists you in identifying memory leaks and memory churn, which can cause stuttering, freezing, and even app crashes. It displays a real-time graph of your application’s memory usage and allows you to capture a heap dump, force garbage collection, and track memory allocations.
To know more about CPU visit:
https://brainly.com/question/6075729
#SPJ4
Please describe components of data dictionaries and data sets?
Detailed information on a dataset or database's contents, such as the names of measured variables, their data types or formats, and text descriptions, is provided by a data dictionary.
A data dictionary offers a clear manual for comprehending and utilizing the data. A data dictionary typically has three primary components. The label for the attribute is "Attribute Name," and it is present. Before saving the record, the phrase "Optional or Required" indicates if the data in an attribute is necessary. The "Attribute Type" section describes the kind of data that can be entered in the field.
You may want to include additional notes on each item of data in addition to these components of the data dictionary. This could contain the source of the data, the location of the attribute inside the table, the field name of the actual database, the field's length, and any additional default settings.
To know more about data dictionary:
brainly.com/question/29790086
#SPJ4
before you install an rpm package, you want to verify the authenticity of the package and check the digital signature to ensure that it has not been altered. which rpm option should you use?
The option you should use is "rpm --checksig". This command will verify the digital signature of a specified RPM package and verify that it has not been altered.
What is the RPM ?RPM stands for “Revolutions Per Minute” and is a measure of the speed at which a rotating object turns. It is commonly used to measure the speed of a motor, as well as the speed of a vehicle’s wheels when it is in motion. It is also used to measure the speed of a record player’s turntable and the speed of a fan. RPM is a measure of the number of rotations an object makes in one minute. It is often used in engineering and manufacturing to ensure that a machine is running at the correct speed for its specific application. RPMs can be used to compare the speed of two different motors or machines. RPMs are also used to determine how much power is being generated by an engine or motor.
To learn more about RPM
https://brainly.com/question/13107800
#SPJ4
TRUE/FALSE. data analysis is the various elements that interact with one another in order to provide, manage, store, organize, analyze, and share data.
False. Data analysis is the process of inspecting, cleaning, transforming, and modeling data with the goal of discovering useful information, informing conclusions,
What is transforming ?Transforming is the process of changing something from one form to another. This could involve changing the physical shape or form of something, changing its characteristics, or changing its purpose. Transforming can also involve changing the way something is perceived or thought about. For example, in business, transforming can refer to the process of taking a company from one state of operations to another, such as from a startup to a successful business.
Transforming can also involve changing the way something is produced, such as taking a manual process to a more automated process. In the world of technology, transforming can refer to the process of taking a product from its existing form to a newer, more improved form such as a mobile app. In conclusion, transforming is the process of changing something from one form to another.
To learn more about transforming
https://brainly.com/question/30167532
#SPJ1
given the importance of registers, what is the rate of increase in the number of registers in a chip over time?
1) Decrease: as the advances of new technology, CPU actually needs fewer registers than before. 2) No change: the number of registers is less likely to change because the instruction set architecture has been well studied and finalized. 3) Very slow increase: since programs are usually distributed in the language of the computer, so the number of registers increases only as fast as new instruction sets become viable. 4) Very fast increase: as fast as Moore's Law, which predicts doubling the number of transistors on a chip every 18 months.
The number of registers in a chip has been steadily rising over time, but due to constraints imposed and complexity, it has also been slowing in recent years.
How registers increase the rate over time ?Due to physical restrictions and the growing complexity of designing and manufacturing chips with a significant number of registers, the rate of rise in the number of registers in a chip over time has been gradually slowing in recent years. Demands for bettering the performance, efficiency, and functionality of chips have driven the rate of rise, but it is also influenced by technological developments and manufacturing costs. Instead of expanding the overall number of overall registers, the current trend is towards adding more specialised registers to carry out specific functions and optimise performance.
To know more about technological visit :-https://brainly.com/question/9171028
#SPJ4
which of the following oversees research for the internet?a. World Wide Web Consortium (W3C)b. FTP serverc. Cable Modemd. DSL
World wide web consortium (W3C) oversees research for the internet. It directs research and establishes norms and rules for numerous Internet-related domains.
The World Wide Web Consortium created a new public-interest non-profit corporation to kick off 2023. The new organization keeps our member-driven model, current global outreach, and cooperation while allowing for new partners outside of Europe and Asia. By creating open web standards as a single worldwide organization with input from World Wide Web Consortium members, staff, and the global community.
"Today, I am proud of the profound impact World Wide Web Consortium has had, its many achievements achieved with our Members and the public, and I look forward to the continued empowering enhancements W3C enables as it launches its own public-interest non-profit organization, building on 28 years of experience," said our director Tim Berners-Lee.
To know more about world wide web consortium:
https://brainly.com/question/4339297
#SPJ4
aircraft dispatcher review test questions
To ensure the safe, swift, and efficient turnaround of aircraft from the moment they land to the time they depart, flight dispatchers coordinate all activities on the ground at an airport.
They are also referred to as flight operations officers or turn around coordinators (TCOs). Effective communication, decisiveness, deliberate consideration, and a meticulous disposition are four key traits of a competent airplane dispatcher. The proficiency of an aviation dispatcher in these four areas will determine if they are a good, poor, or great dispatcher. Before taking off, an airplane needs the dispatcher to give the all-clear. Any region that the aircraft dispatcher judges dangerous may result in the flight being completely canceled.
Learn more about communication here-
https://brainly.com/question/29338740
#SPJ4
when information is encoded in molecules, the reproduction cost is _____ than it would be if the information were encoded in bits.
when information is encoded in molecules, the reproduction cost is higher than it would be if the information were encoded in bits.
When information is encoded in molecules, such as DNA or RNA, the cost of reproduction is higher than it would be if the information were encoded in bits, as in computer data storage. This is because the process of reproducing information encoded in molecules is much more complex and energy-intensive than the process of reproducing information stored in binary form. The replication of DNA, for example, requires the precise assembly of nucleotides into long chains, a process that requires the presence of specific enzymes and a significant amount of energy. In comparison, reproducing digital data simply requires copying the binary code from one storage device to another, which can be done quickly and efficiently.
To know more about information encoded in molecules, visit:https://brainly.com/question/30487646
#SPJ4
what is the most important asset on netflix’s balance sheet (exhibit i) and how does it differ from the assets we have discussed so far in class?
The most significant asset included on Exhibit I of Netflix's balance sheet, and how does it compare to the other assets our class has covered thus far? prepaid content, current content library, and current content library on the internet. Digital assets fall under this category, and they can be both current and non-current.
The market value of equity is its market capitalization, or what the company is worth in the equity market, as opposed to the book value of equity, which is the value of what the firm is worth based on its balance sheet. Though conceptually identical, the two quantities are measured very differently. Calculate Netflix's Market-to-Book Ratio (Market value to Book value of Equity). Identify the reasons behind the discrepancy between Netflix's Market-to-Book Ratio (Market value to Book value of Equity).
To learn more about Netflix from the given link:
https://brainly.com/question/29385268
#SPJ4
a list of all the characters in the wild robot
The correct answer is RICOs are three robots that fly in. The sinking cargo ship's robots and pieces are all supposed to be recovered by them, and they want Roz to bring them back.
Three robots (K-VRC, XBOT 4000, and 11-45-G) roam through a post-apocalyptic city many years after humanity has perished, attempting to comprehend how people lived using what little they know about them and the objects they left behind. His fascination with Will is a result of Will's capacity to set Robot free from his programming. Will went to SAR and made an effort to reason with him in the hopes that he could alter his programming similarly to how the Robot had. But SAR informed him that he was to blame for the Robot Builders' demise.
To learn more about Three robots click on the link below:
brainly.com/question/15468013
#SPJ4
the first e-mail mailing lists appeared on military and education research networks. question 4 options: true false
The statement is True. Email mailing lists first emerged in the late 1970s on networks like ARPANET and BITNET.
Email mailing lists first emerged in the late 1970s on networks like ARPANET and BITNET, allowing users to exchange messages, announcements, and information on topics of interest. Initially, these lists were mainly used by military and educational researchers, but their popularity soon spread to other sectors, such as business, finance, and entertainment. By the 1990s, email mailing lists had become a widely-used tool for communication and collaboration.
Learn more about e-mail: https://brainly.com/question/24506250
#SPJ4
How many outcomes are possible in this control structure?
forever
A. One
B. Two
C. Four
D. Three
In this control system, just one conceivable outcome can occur.
What exactly is a control structure?
The sequence in which statements, instructions, or function calls are performed at the conclusion of a programme is known as the control structure. In computer programming, it is a fundamental idea that outlines how a programme will carry out its operations and choose which instructions to carry out. Control structures are used to particular specify the order in which operations in a system should be performed, to reactivities a predetermined number of times or until a predefined condition is satisfied, and to choose what operations to run based on preset criteria.
To know more about control structure
https://brainly.com/question/15008951
#SPJ1