Answer:
Some cameras have something called “shutter lag” which is the time it takes from the instant the shutter is pressed, until the instant the picture is taken. This can be very disruptive to the photographer, and although it is not possible to eliminate this delay, it is possible to minimize it a lot.
Explanation:
One of the main causes of shutter lag in dSLR cameras is the mirror that allows you to preview the image, since it needs to be raised in order for the light to reach the sensor. This time is minimal, however, and varies from camera to camera.
The focus delay exists in professional cameras as well and needs to be avoided in the same way, but the time it takes for the lens to clear the image, in these cases, is slightly less. Another factor that contributes to the photographer is the use of manual focus, completely eliminating this type of shutter lag.
Another type of delay that occurs is the image processing time by the sensor. This is not really a shutter lag, since it occurs after the photo was taken, but it can hinder the capture of sequential photos, as many cameras spend several seconds processing the same image.
why is the sellfish difficult to catch?
Answer:
I dont know if this is supposed to be a joke, or an improper spelling of "Shellfish" but they aren't hard to catch, all you need is to find a muddy estuary, grab a crowbar or other tool, and start digging
Explanation:
What is the main reason for assigning roles to members of a group?
It speeds up the time it takes to do a task.
It provides a way for the group to meet on a regular basis.
It allows one person acting in the role of the facilitator to take charge and do all the work.
It creates leadership and direction for the team, making it easier to work together for a common purpose.
Answer: it creates leadership and direction for the team, making it easier to work together for a common purpose.
Explanation:
The reason for assigning roles to members of a group is that it creates leadership and direction for the team, making it easier to work together for a common purpose.
When roles are delegated to the members of a group, each person gets his or her own part of the job or project. This makes it easier to work together and as a team. It also ensures that the project is handled well and faster as it creates a direction.
Answer:
D. It creates leadership and direction for the team, making it easier to work together for a common purpose.
Explanation:
Which of the following if statements uses a Boolean condition to test: "If you are 18 or older, you can vote"? (3 points)
if(age <= 18):
if(age >= 18):
if(age == 18):
if(age != 18):
The correct if statement that uses a Boolean condition to test the statement "If you are 18 or older, you can vote" is: if(age >= 18):
In the given statement, the condition is that a person should be 18 years or older in order to vote.
The comparison operator used here is the greater than or equal to (>=) operator, which checks if the value of the variable "age" is greater than or equal to 18.
This condition will evaluate to true if the person's age is 18 or any value greater than 18, indicating that they are eligible to vote.
Let's analyze the other if statements:
1)if(age <= 18):This statement checks if the value of the variable "age" is less than or equal to 18.
However, this condition would evaluate to true for ages less than or equal to 18, which implies that a person who is 18 years old or younger would be allowed to vote, which is not in line with the given statement.
2)if(age == 18):This statement checks if the value of the variable "age" is equal to 18. However, the given statement allows individuals who are older than 18 to vote.
Therefore, this condition would evaluate to false for ages greater than 18, which is not correct.
3)if(age != 18):This statement checks if the value of the variable "age" is not equal to 18.
While this condition would evaluate to true for ages other than 18, it does not specifically cater to the requirement of being 18 or older to vote.
For more questions on Boolean condition
https://brainly.com/question/26041371
#SPJ8
4.16 LAB: Count characters:
Ex: If the input is:
n Monday
the output is:
1 n
Ex: If the input is:
z Today is Monday
the output is:
0 z's
Ex: If the input is:
n It's a sunny day
the output is:
2 n's
Case matters.
Ex: If the input is:
n Nobody
the output is:
0 n's
c++
Note that an example C++ code that counts the number of occurrences of a given character in a string:
#include <iostream>
#include <string>
int main() {
char target_char;
std::string input_str;
std::getline(std::cin, input_str);
std::cin >> target_char;
int count = 0;
for (char c : input_str) {
if (c == target_char) {
count++;
}
}
std::cout << count << " " << target_char << "'s" << std::endl;
return 0;
}
What is the explanation for the above response?
This code reads a line of input from the user and a target character to search for.
It then iterates through each character in the input string and increments a counter if the character matches the target character. Finally, it prints out the count and the target character. Note that this code is case-sensitive.
Learn more about characters at:
https://brainly.com/question/14683441
#SPJ1
A local company is expanding its range from one state to fifteen states. They will need an advanced method of online communication and someone to design an advanced and thorough database to store a lot of information. Who should they hire to assist with both these goals?
a Database Architect and a Computer System Analyst who focuses in interactive media
a Computer Hardware Engineer and a Software Developer who focuses in interactive media
a Software Developer and a Web Developer who focuses in programming and software development
a Web Administrator and a Computer System Analyst who focuses in information support and services
Answer:
the answer is C,a a Software Developer and a Web Developer who focuses in programming and software
Brainlist me if im right
Answer:
C is correct
Explanation:
What is the most efficient solution to keep personal and work emails separate, even if they are in a single email box
Separate your emails into different folders. adding filters to your email accounts is a smart idea because they will automatically sort your emails into the correct folder. Using a strategy like this will help you stay organized and make managing many email accounts much easier.
What is email ?
Email, or electronic mail, is a communication technique that sends messages via electronic devices across computer networks. The term "email" can apply to both the method of delivery and the specific messages that are sent and received.
Since Ray Tomlinson, a programmer, invented a mechanism to send messages between computers on the Advanced Research Projects Agency Network in the 1970s, email has existed in some form (ARPANET). With the introduction of email client software (like Outlook) and web browsers, which allow users to send and receive messages via web-based email clients, modern versions of email have been widely accessible to the general public.
To know more about Email, check out:
https://brainly.com/question/28802519
#SPJ1
Computer one on network A, with IP address of 10.1.1.8 want to send a package to computer to with IP address of 10.1.1.205. Taking in consideration that computer one is sending an FTP request to computer to the store support on computer one is 21086, which of the following contains the correct information for the first TCP segment of data
Note that the right information for the first TCP segment of data in the given scenario is -
Source Port - 21086Destination Port - 21Sequence Number - 1 Acknowledgment Number - 2 Why is this so?Since Computer 1 is sending an FTP request to Computer 2, the source port on Computer 1 would be 21086,the destination port would be 21 (FTP default port),the sequence number would start at 1, and the acknowledgment number would be 2.
A TCP segment is a unit of data encapsulatedin a TCP /IP packet used for communication between devices over a network.
Learn more about TCP at:
https://brainly.com/question/18956070
#SPJ1
Full Question:
Although part of your question is missing, you might be referring to this full question:
Computer 1 on network A, with IP address of 10.1.1.8, wants to send a packet to Computer 2, with IP address of 10.1.1.205. Taking in consideration that computer 1 is sending a FTP request to computer 2, and the source port on computer 1 is 21086, which of the following contains the correct information for the first TCP segment of data?
Source Port: 5000
Destination Port: 80
Sequence Number: 1
Acknowledgment Number: 2
Source Port: 21086
Destination Port: 21
Sequence Number: 1
Acknowledgment Number: 2
Source Port: 21
Destination Port: 21
Sequence Number: 4
Acknowledgment Number: 1
Source Port: 80
Destination Port: 5000
Sequence Number: 1
Acknowledgment Number: 1
Answer:
Explanation:
Note that the right information for the first TCP segment of data in the given scenario is -
Source Port - 21086
Destination Port - 21
Sequence Number - 1
Acknowledgment Number - 2
Why is this so?
Since Computer 1 is sending an FTP request to Computer 2, the source port on Computer 1 would be 21086,the destination port would be 21 (FTP default port),the sequence number would start at 1, and the acknowledgment number would be 2.
A TCP segment is a unit of data encapsulatedin a TCP /IP packet used for communication between devices over a network.
You need to create the app service plans for the web apps.
What is the minimum number of app service plans that should be created?
Given that you need to create the app service plans for the web apps.
In this situation, each App Service Plan on the App Service Environment will require a minimum of three instances in order to be distributed across zones.
What is a web app?A web application is software that can be accessed using a web browser. Web apps are supplied to users with an active network connection over the World Wide Web.
Mobile applications must be downloaded from the app store, however web applications may be accessed via any browser and hence do not require installation. Mobile applications can be accessible even while not connected to the internet, however online applications cannot be used without an internet connection.
Learn more about web apps. at:
https://brainly.com/question/28431103
#SPJ1
How does one take personal responsibility when choosing healthy eating options? Select three options.
1 create a log of what one eats each day
2 increase one’s consumption of fast food
3 critique one’s diet for overall balance of key nutrients
4 identify personal barriers that prevent an individual from making poor food choices
5 eat only what is shown on television advertisements
The three options to a healthier eating culture are:
create a log of what one eats each daycritique one’s diet for overall balance of key nutrientsidentify personal barriers that prevent an individual from making poor food choicesHow can this help?Create a log of what one eats each day: By keeping track of what you eat, you become more aware of your eating habits and can identify areas where you may need to make changes. This can also help you to monitor your intake of certain nutrients, and ensure that you are getting enough of what your body needs.
Critique one’s diet for overall balance of key nutrients: A balanced diet should include a variety of foods from different food groups. By assessing your diet, you can determine whether you are consuming enough fruits, vegetables, whole grains, lean proteins, and healthy fats. If you find that you are lacking in any of these areas, you can adjust your eating habits accordingly.
Read more about healthy eating here:
https://brainly.com/question/30288452
#SPJ1
Maya and Darius are using the software development life cycle to develop a career interest app. They wrote the program pseudocode and have a mock-up of how the software will look and how it should run. All their work at this step has been recorded in a design document. What should the team do next?
Analyze the scope of the project
Design the program by editing pseudocode
Identify bugs and document changes
Write the program code
Answer:
write the program code
Explanation:
PLZ ANSWER WORTH 20 POINTS!! URGENT!
To use Office 365 and
OneDrive, you need ____.
A. to pay for online storage space
B. the latest version of Microsoft Office on your device
C. a registered Microsoft account
D. be logged on a school computer
Spring 2021 Post TLC CA
Answer:
C. a registered Microsoft Account
Answer:
B:the latest version of Microsoft Office on your device
Explanation:
I got it from the internet.
"Write a program that calculates the balance of a savings account at the end of a period of time. It should ask the user for the annual interest rate, the starting balance, and the number of months that have passed since the account was established. A loop should then iterate once for every month, performing the following: Ask the user for the amount deposited into the account during the month. (Do not accept negative numbers.) This amount should be added to the balance. Ask the user for the amount withdrawn from the account during the month. (Do not accept negative numbers.) This amount should be subtracted from the balance. Calculate the monthly interest. The monthly interest rate is the annual interest rate divided by 12. Multiply the monthly interest rate by the balance, and add the result to the balance. After the last iteration, the program should display the ending balance, the total amount of deposits, the total amount of withdrawals, and the total interest earned. The program should write the following data to an .txt file: ending Balance amount of deposits amount of withdrawal and the amount of interest earned Once the file has been written, display to the user that the 'Report written to Report.txt" c++
Answer:
Explanation:
Here's an example program in Python that fulfills the requirements:
# Get user inputs
annual_interest_rate = float(input("Enter the annual interest rate: "))
starting_balance = float(input("Enter the starting balance: "))
months = int(input("Enter the number of months since the account was established: "))
# Initialize variables
balance = starting_balance
total_deposits = 0.0
total_withdrawals = 0.0
total_interest_earned = 0.0
# Iterate through each month
for i in range(months):
# Get amount deposited and add to balance
deposit = float(input("Enter the amount deposited for month {}: ".format(i+1)))
while deposit < 0:
deposit = float(input("Amount deposited cannot be negative. Please enter again: "))
balance += deposit
total_deposits += deposit
# Get amount withdrawn and subtract from balance
withdrawal = float(input("Enter the amount withdrawn for month {}: ".format(i+1)))
while withdrawal < 0:
withdrawal = float(input("Amount withdrawn cannot be negative. Please enter again: "))
balance -= withdrawal
total_withdrawals += withdrawal
# Calculate monthly interest and add to balance
monthly_interest_rate = annual_interest_rate / 12
monthly_interest = balance * monthly_interest_rate
balance += monthly_interest
total_interest_earned += monthly_interest
# Write results to file
report_file = open("Report.txt", "w")
report_file.write("Ending Balance: ${:.2f}\n".format(balance))
report_file.write("Total Deposits: ${:.2f}\n".format(total_deposits))
report_file.write("Total Withdrawals: ${:.2f}\n".format(total_withdrawals))
report_file.write("Total Interest Earned: ${:.2f}\n".format(total_interest_earned))
report_file.close()
# Display message to user
print("Report written to Report.txt")
Note that the program validates user inputs to ensure that deposit and withdrawal amounts cannot be negative. The final results are written to a file named "Report.txt". The program prints a message to the user indicating that the report has been written.
pleas help with this
Answer:
points = dict(Harris=24, Butler=11, Embiid=31, Simmons=15, Reddick=9, Scott=8, Ennis=7, Marjanovic=4, Bolden=1, McConnell=2)
total_points = 0
highest_scorer = ""
highest_score = 0
for player, score in points.items():
print(player + ": " + str(score) + " points")
total_points += score
if score > highest_score:
highest_score = score
highest_scorer = player
print("Total points: " + str(total_points))
print("Highest scorer: " + highest_scorer + " (" + str(highest_score) + " points)")
why we choose abattis consulting service ?
People may choose abattis consulting service due to their excellent quality and timely service delivery.
Why we choose abattis consulting service ?When selecting a consulting service, it is main to consider determinants such as the experience and knowledge of the consultants, the opinion of the company, the quality and purview of the services presented, the cost and value of the services, and the rapport and alignment of the advisory service with the needs and aims of your organization.
Abattis Consulting, in particular, offers advisory services in the extents of cybersecurity, risk management, compliance, and solitude. They provide a range of aids, including cybersecurity assessments, etc.
Learn more about consulting service from
https://brainly.com/question/26417203
#SPJ1
Chassis intrusion detection is an option that can be enabled/disabled in the BIOS setup utility (if a BIOS comes equipped with this feature).Coupled with a hardware sensor mounted insided the computer case, this functionality can be used to check if the case was opened and display a notification alert during next boot.
a. True
b. False
Answer: True
Explanation:
Chassis intrusion detection is simply a vital security feature which is used typically by large corporate networks. It's simply an intrusion detection method which can be used in alerting a system administrator when there's a situation whereby a person opens a computer case which can then be investigated in order to know if the computer hardware has been tampered with.
It should also be noted that the chassis intrusion detection can then be either enabled or disabled in the BIOS setup utility if a BIOS comes equipped with this feature.
The correct option is True.
What are three reasons developers might choose to use GitHub to work on a
project together?
A. It permits developers to schedule their work calendars, vacation
time, and sick leave around one another.
B. It helps reduce the number of errors in a project and allows
developers to update projects often.
C. It allows developers or the team to review new sections before
they are recombined with the main project.
D. It allows developers to work on a branch or section of code
without affecting the entire project.
SUBMIT
Answer:
B. It helps reduce the number of errors in a project and allows
developers to update projects often.
C. It allows developers or the team to review new sections before
they are recombined with the main project.
D. It allows developers to work on a branch or section of code
without affecting the entire project.
Developers might choose to use GitHub to work on a project together because it allows them to:
A. Reduce errors in a project and update it frequently.
C. Review new sections before recombining them with the main project.
D. Work on a branch or section of code without affecting the entire project.
Therefore, options A, C, and D are correct.
GitHub is a web-based platform that serves as a collaborative sanctuary for software developers, akin to an interconnected digital realm. It empowers developers to host, review, and manage code repositories, fostering seamless teamwork and version control.
This virtual sanctuary functions as a haven where developers can contribute to projects, propose changes, and work collectively without disrupting the main codebase.
With its versatile tools, GitHub offers a captivating arena for developers to explore, collaborate, and unleash the full potential of their projects in a harmonious symphony of coding brilliance.
Therefore, options A, C, and D are correct.
Learn more about GitHub here:
https://brainly.com/question/30911741
#SPJ7
Sandi wants to check the average grades in her classroom. Which loop or algorithm should she use?
A. While loop
B. For loop
C. Nested loops
D. Maximum-minimum algorithm
Answer:
D
Explanation:
Maximum-minimum algorithm will help Sandi check the average grades in her classroom.
Have a great day
The current annual interest rate is 5 percent, and you are taking out a 20-year loan with a monthly end-of-month payment. If you can afford monthly payments of $3000 per month, what is the most you can borrow?
Answer:
720k.
Explanation:
what does the record of a spreadsheet run
The record in a spreadsheet refers to a row of data that contains information about a specific entity or item within the spreadsheet. It represents a single entry or observation in the dataset being managed. Each record typically consists of multiple fields or columns that hold different attributes or properties related to the entity being represented.
In a spreadsheet, records are organized vertically in a tabular format, with each record occupying a separate row. The fields within a record are aligned horizontally across the columns of the spreadsheet. For example, if you are managing a sales spreadsheet, each record may represent a specific sales transaction and the corresponding fields could include information such as the date, customer name, product sold, quantity, price, and total amount.
The record of a spreadsheet is essential for organizing and managing data effectively. It allows you to store and track individual units of information in a structured manner. With records, you can easily locate and reference specific data points, perform calculations, analyze patterns, and generate reports.
Moreover, the records in a spreadsheet are highly flexible and dynamic. You can add new records as new data becomes available, modify existing records to update information, or delete records that are no longer relevant. This flexibility enables you to maintain an up-to-date and accurate dataset.
The record of a spreadsheet is crucial for performing various data manipulation tasks, such as filtering, sorting, and performing calculations. By working with records, you can extract specific subsets of data based on certain criteria, sort records based on different fields, and perform calculations or analysis on selected records.
In summary, the record of a spreadsheet represents a single entry or observation in a dataset. It consists of multiple fields that hold specific attributes or properties related to the entity being represented. Records are essential for organizing, managing, and analyzing data within a spreadsheet, allowing for effective data manipulation and analysis.
for more questions on spreadsheet
https://brainly.com/question/26919847
#SPJ11
I am sorting data that is stored over a network connection. Based on the properties of that connection, it is extremely expensive to "swap" two elements. But looping over the elements and looking at their values is very inexpensive. I want to minimize swaps above all other factors. Choose the sorting algorithm we studied that will perform the best:
Answer: Provided in the explanation section
Explanation:
The question to this problem says;
Question:
I am sorting data that is stored over a network connection. Based on the properties of that connection, it is extremely expensive to "swap" two elements. But looping over the elements and looking at their values is very inexpensive. I want to minimize swaps above all other factors. Choose the sorting algorithm we studied that will perform the best:
ANSWER
1. Merge Sort
Because merge sort uses additional memory instead of swapping the elements.
2. Merge Sort and Quick Sort both can be used with multi processor.
cheers i hope this helps !!!
in this exercise your goal is to improve the blackjack game we created in the videos. here are a few possible extensions you can implement: 1) insurance - a side bet if the dealer shows an ace 2) splitting - if two cards are the same, split them into two hands and double the bet. 3) double down - double the bet and get one more card 4) checking to make sure the bet is not bigger than the bankroll.
As mentioned in the exercise, there are a few possible extensions that you can implement in the blackjack game.
These include insurance, splitting, double down, and checking to make sure the bet is not bigger than the bankroll.To explain further, here are brief descriptions of each extension:1. Insurance: This is a side bet that can be placed if the dealer shows an ace. The player can choose to bet that the dealer has a blackjack, and if they do, the insurance bet pays out at 2:1.2. Splitting: If two cards are the same, they can be split into two separate hands and the bet is doubled. Each new hand is played separately.3. Double down: If the player has a strong hand, they can double their bet and receive one more card. After receiving the additional card, the player cannot receive any more cards.4. Checking the bankroll: Before placing a bet, the game should check to ensure that the bet is not larger than the player's bankroll.These extensions can make the game more exciting and add new strategies to the gameplay.
learn more about game here:
https://brainly.com/question/3863314
#SPJ4
zyDE 1.4.2: Fixing syntax errors.
Click run to compile, and note the long error list. Fix only the first error, then recompile. Repeat that process (fix first error, recompile)
until the program compiles and runs. Expect to see misleading error messages as well as errors that occur before the reported line
number.
Using the knowledge of computational language in JAVA it is possible to write a code that Fixing syntax errors Click run to compile, and note the long error list.
Writting the code:public class BeansInJars {
public static void main(String[] args) {
int numBeans;
int numJars;
int totalBeans;
numBeans = 500;
numJars = 3;
System.out.print(numBeans + " beans in ");
System.out.print(numJars + " jars yields ");
totalBeans = numBeans * numJars;
System.out.println(totalBeans + " total");
}
}
See more about JAVA at brainly.com/question/12975450
#SPJ1
In order to average together values that match two different conditions in different ranges, an excel user should use the ____ function.
Answer: Excel Average functions
Explanation: it gets the work done.
Answer:
excel average
Explanation:
Which core business etiquette is missing in Jane
Answer:
As the question does not provide any context about who Jane is and what she has done, I cannot provide a specific answer about which core business etiquette is missing in Jane. However, in general, some of the key core business etiquettes that are important to follow in a professional setting include:
Punctuality: Arriving on time for meetings and appointments is a sign of respect for others and their time.
Professionalism: Maintaining a professional demeanor, dressing appropriately, and using appropriate language and tone of voice are important in projecting a positive image and establishing credibility.
Communication: Effective communication skills such as active listening, clear speaking, and appropriate use of technology are essential for building relationships and achieving business goals.
Respect: Treating others with respect, including acknowledging their opinions and perspectives, is key to building positive relationships and fostering a positive work environment.
Business etiquette: Familiarity with and adherence to appropriate business etiquette, such as proper introductions, handshakes, and business card exchanges, can help establish a positive first impression and build relationships.
It is important to note that specific business etiquettes may vary depending on the cultural and social norms of the particular workplace or industry.
Which one of the statements is true about cryptocurrency?
Cryptocurrency controls blockchain technology.
Cryptocurrency is a type of digital asset that can be owned.
Cryptocurrency is a type of hash that gives value to a block of data.
Cryptocurrency gets its value based on how many blocks of data it is made of.
Cryptocurrency is a type of digital asset that can be owned.
The true statement about cryptocurrency is that it is a type of digital asset that can be owned.
Thus option B is correct.
Here,
Cryptocurrency is a digital or virtual currency that uses cryptography (the practice of secure communication) for security and operates independently of a central bank. It is decentralized and can be used to make transactions without the need for an intermediary such as a bank.
Cryptocurrency can be owned and stored in digital wallets, just like traditional money. Its value is determined by market demand and supply, meaning that the price of cryptocurrency can be highly volatile.
Cryptocurrency is not a type of hash or a control of blockchain technology.
Know more about cryptocurrency,
https://brainly.com/question/31646159
#SPJ6
________ is software that is needed to run and maintain the functionality of a computer and its parts.
An operating system (OS) is a piece of software that executes other applications and programs on a computer while controlling and coordinating the hardware components. It is the core component of the system software, and without it, a computer cannot operate.
What is computer ?A computer is a device that may be configured to automatically perform series of mathematical or logical operations (computation). Modern digital computers are capable of running programmes, which are generalised sets of operations. These apps give computers the ability to carry out a variety of tasks. A computer is a minimally functional computer that contains the peripheral devices, system software (primary software), and hardware required for proper operation. This phrase may also apply to a collection of connected computers that work as a unit, such as a network or group of computers. The sole purpose of early computers was to perform computations. Since ancient times, simple manual tools like the calculator have supported humans in performing computations.
To know more about computer visit:
https://brainly.com/question/21474169
#SPJ1
Suppose the size of process is 10000 bytes and the relocation register is loaded with value 5000 which of the following memory address this process can access
Answer:
The page field is 8-bit wide, then the page size is 256 bytes.
Using the subdivision above, the first level page table points to 1024 2nd level page tables, each pointing to 256 3rd page tables, each containing 64 pages. The program's address space consists of 1024 pages, thus we need we need 16 third-level page tables. Therefore we need 16 entries in a 2nd level page table, and one entry in the first level page table. Therefore the size is: 1024 entries for the first table, 256 entries for the 2nd level page table, and 16 3rd level page table containing 64 entries each. Assuming 2 bytes per entry, the space required is 1024 * 2 + 256 * 2 (one second-level paget table) + 16 * 64 * 2 (16 third-level page tables) = 4608 bytes.
A software repository, also known as a 'repo', is:
Answer:
A software repository, or “repo” for short, is a storage location for software packages.
Create the logic for a program that prompts a user for 10 numbers and stores them in an array. Pass the numbers to a method that reverses the order of the numbers. Display the array in the main module after invoking the method.
The logic of the program that prints a reversed list is:
def reverse_list(my_list, lent):
my_list.reverse()
return my_list
my_list = []
for i in range(10):
my_list.append(int(input()))
print(reverse_list(my_list, 10))
How to determine the logic of the program?From the question, we have the following parameters that can be used in our computation:
Logic 1:
Get 10 integer inputs for a listPass this list to a methodLogic 2
Get the integer inputs for the list from logic 1Reverse the listPass the reversed list to the main methodLogic 4
Get the reversed integer inputs from logic 3Print the reversed listThere are several ways to do this:
One of them is the following code segment
#Logic 2
def reverse_list(my_list, lent):
my_list.reverse()
return my_list
#Logic 1
my_list = []
#Logic 3
for i in range(10):
my_list.append(int(input()))
print(reverse_list(my_list, 10))
Read more about code segments at
https://brainly.com/question/20734416
#SPJ1
what is the introduction of an algorithm and programming and how does it work?
Answer:
A programming algorithm is a procedure or formula used for solving a problem. It is based on conducting a sequence of specified actions in which these actions describe how to do something, and your computer will do it exactly that way every time. An algorithm works by following a procedure, made up of inputs. Explanation: