edhesive assignment 7 calendar

Answers

Answer 1

Answer:

def leap_year(y):

 if y % 4 == 0:

     return 1

 else:

     return 0

def number_of_days(m,y):

 if m == 2:

     return 28 + leap_year(y)

 elif m == 1 or m == 3 or m == 5 or m == 7 or m == 8 or m ==10 or m == 12:

     return 31

 elif m == 4 or m == 6 or m == 9 or m == 11:

     return 30

def days(m,d):

 if m == 1:

     return 0 + d

 if m == 2:

     return 31 + d

 if m == 3:

     return 59 + d

 if m == 4:

     return 90 + d

 if m == 5:

     return 120 + d

 if m == 6:

     return 151 + d

 if m == 7:

     return 181 + d

 if m == 8:

     return 212 + d

 if m == 9:

     return 243 + d

 if m == 10:

     return 273 + d

 if m == 11:

     return 304 + d

 if m == 12:

     return 334 + d

def days_left(d,m,y):

 if days(m,d) <= 60:

     return 365 - days(m,d) + leap_year(y)

 else:

     return 365 - days(m,d)

print("Please enter a date")

day=int(input("Day: "))

month=int(input("Month: "))

year=int(input("Year: "))

choice=int(input("Menu:\n1) Calculate the number of days in the given month.\n2) Calculate the number of days left in the given year.\n"))

if choice == 1:

 print(number_of_days(month, year))

if choice == 2:

 print(days_left(day,month,year))

Explanation:

Hoped this helped

Answer 2

The program is an illustration of functions.

Functions are groups of code segments that are executed when called or evoked

The calendar program

The calendar program in Python, where comments are used to explain each line is as follows:

#This checks for leap year

def leap_year(y):

   if y % 4 == 0:

       return 1

   else:

       return 0

#This returns the number of days in the month

def number_of_days(m,y):

   if m == 2:

       return 28 + leap_year(y)

   elif m == 1 or m == 3 or m == 5 or m == 7 or m == 8 or m ==10 or m == 12:

       return 31

   elif m == 4 or m == 6 or m == 9 or m == 11:

       return 30

#This returns the number of days left in the month

def days(m,d):

   dayList = [0,31,59,90,120,151,181,212,243,273,304,334]

   return dayList[m-1] + d

#This returns the number of days left in the year

def days_left(d,m,y):

   if days(m,d) <= 60:

       return 365 - days(m,d) + leap_year(y)

   else:

       return 365 - days(m,d)

#The main begins here

#This next three lines gets input for date

day=int(input("Day: "))

month=int(input("Month: "))

year=int(input("Year: "))

#This gets the choice from the user

menu=int(input("Press 1 to calculate the number of days in the given month.\nPress 2 to calculate the number of days left in the given year.\nChoice: "))

#This prints the number of days in the month

if menu == 1:

   print(number_of_days(month, year))

#This prints the number of days left in the year

elif menu == 2:

   print(days_left(day,month,year))

Read more about Python functions at:

https://brainly.com/question/14284563


Related Questions

Your car performs a(n) ____ called OPERATE WIPERS when you send a message by moving the proper control.
a. method c. command
b. instance d. objective

Answers

c. command, Your car performs a command called OPERATE WIPERS when you send a message by moving the proper control.

The term "command" refers to a specific instruction or order given to a machine or system, in this case, a car's wiper system. When the driver moves the control to operate the wipers, they are sending a command to the car's system to initiate the action. This command is a specific instruction that the car's system can understand and execute, allowing the wipers to turn on and perform the desired function of clearing the windshield. Your car performs a command called OPERATE WIPERS when you send a message by moving the proper control.  In summary, when the driver moves the wiper control in their car, they are sending a command to the car's system to operate the wipers, which is a specific instruction that the system can understand and execute.

learn more about OPERATE WIPERS here:

https://brainly.com/question/30168560

#SPJ11

A process called _____ examines the data packets that flow through a system and its associated devices to identify the most frequently used devices.

Answers

A process called traffic analysis examines the data packets that flow through a system and its associated devices to identify the most frequently used devices.

What is traffic analysis and why is it vital?

Network traffic analysis (NTA) is known to be a kind of a way or a method that is often used in the monitoring network availability and it is also seen as an activity that one is engaged in so as  to know or see anomalies, such as security and operational issues.

Note that the Common use are in regards to cases such as in the Collecting of what we call the real-time and historical record of the things that are happening on your network, and also in the Detecting malware such as ransomware issues or works..

Hence, A process called traffic analysis examines the data packets that flow through a system and its associated devices to identify the most frequently used devices.

Learn more about traffic analysis from

https://brainly.com/question/27227256

#SPJ1

A common business practice is to include a worksheet named Documentation that contains a description of the workbook, the name of the person who prepared the workbook, and the date it was created. _________________________

Answers

A common business practice is to include a worksheet named Documentation that contains a description of the workbook, the name of the person who prepared the workbook, and the date it was created: True.

What is a worksheet?

A worksheet is also known as a spreadsheet and it can be defined as a type of document which comprises cells that are arranged in a tabulated format (rows and columns).

In Computer technology, some of the common business practice include the following:

Creating a worksheet named Documentation with a description of the workbook.The name of the person who prepared the workbook.The date it was created.

Read more on worksheet here: https://brainly.com/question/4965119

#SPJ1

HTML stands for
-Hyperlink Tools Main Language
-Hypertools Main Linguistics
-Hypertools Markup Linguistics
-Hypertext Markup Language

Answers

The abbreviation of HTML stands for Hypertext Markup Language.

HTML (Hypertext Markup Language) is a coding language used to build web pages and make them appear on the internet. HTML is the language used to create web pages, and it stands for Hypertext Markup Language. HTML's key feature is that it enables users to insert images, videos, hyperlinks, and other digital elements into a web page. HTML files can be constructed and edited with a simple text editor or a specialized HTML editor. It's simple to master the basics of HTML, and it's a good place to start if you want to learn about web development. In summary, the answer to the question is, "Hypertext Markup Language."

Learn more about language:https://brainly.com/question/10585737

#SPJ11

O cannot open app package publisher: microsoft corporation version: 1. 18. 2691. 0 his app package is not supported for installation by app installer because it uses certain restricted capabilities. X

Answers

Execute the troubleshooter: Press the Start button, choose Settings > Update & Security > Troubleshoot, choose Windows Store apps from the list, and then press Run the troubleshooter.

How can I activate the Microsoft App Installer protocol?

Once the Desktop App Installer policy has been downloaded, open the Local Group Policy Editor and go to Computer Configuration > Administrative Templates > Windows Components > Desktop App Installer. Then, select "Enable App Installer ms-appinstaller protocol." to activate the functionality.

How can a Microsoft app be fixed?

Choose the app you wish to update. The Advanced options link will be under the app's name; some apps won't have this option. If Repair is an option on the new page, choose it. Choose Reset if it's unavailable or doesn't resolve the issue.

To know more about troubleshooter visit :-

https://brainly.com/question/30048504

#SPJ4

which of the following was found to be true about lying in online dating profiles?

Answers

Studies have found that individuals tend to lie in their online dating profiles. This can include lying about their age, height, weight, occupation, and relationship status, among other things. One study found that 81% of people using online dating sites lied about at least one characteristic in their profile.


Research has shown that lying in online dating profiles is a common occurrence. People tend to present themselves in the best possible light to attract potential partners. In many cases, individuals may slightly exaggerate or downplay certain aspects of their lives to make their online profile more appealing. Common areas where people might be dishonest include their age, height, weight, job, and interests.
It is important to keep in mind that not all users lie on their profiles, and the severity of the dishonesty can vary greatly. Some may make only minor adjustments, while others might create entirely false personas. In general, individuals should approach online dating with caution and be prepared to verify information as they get to know potential matches. To minimize the risk of being deceived, it is essential to communicate openly and honestly with potential partners and to trust one's instincts when something seems off.

Learn more about information here:

https://brainly.com/question/31059452

#SPJ11

(03.05 LC) Match the term with its description. (4 points) Column A 1. Acid : Acid 2. Alkaline : Alkaline 3. pH : pH 4. Ion : Ion Column B a. An atom or molecule that has a positive or negative charge b. A value from 0 to 14 that is used to specify how acidic or basic a compound is when it is dissolved in water c. A compound that increases hydrogen ions (H+) when it is dissolved in a solution d. A compound that increases the hydroxide ions (OH-) when it is dissolved in a solution

Answers

Answer:

Follows are the matching to this question:

Explanation:

Column  A            Column B

     1                           c

     2                          d

     3                          b

     4                          a

Description of the matching:

In 1(Acid) the correct choice is (c) because the acid (HCl) dissociates to both the H+ ion and the Cl- ion as a solution.  In 2(Alkaline ) the correct choice is (d) because alkaline NaOH is a solution that differentiates between the ions ( OH-) and Na+.  In 3(pH ) the correct choice is (b) because for an A compound of less than 7 is an acid and an alkaline pH compound of more than 7. For neutral compounds, a pH of 7 is applicable.In 4(Ion) the correct choice is (a) because Na+ ion is loaded positive, and Cl-ion is loaded negatively.

Answer:

Acid-A compound that increases hydrogen ions (H+) when it is

Base-A compound that increases the hydroxide ions (OH−) when it is  dissolved in a solution

Ions- An atom or molecule that has a positive or negative charge

pH-A value from 0 to 14 that is used to specify how acidic or basic a  compound is when it is dissolved in water

Explanation:

plz give brainly

Different Betweens in SRAM and DRAM !






Thank!
\( \: \: \: \)

Answers

Answer:

Explanation:

Application Differences:

SRAM

SRAM stands for Static Random Access Memory  DRAM stands for Dynamic Random Access Memory

Faster access is due to the usage of transistors to store single bit of data  

SRAMs are used for cache memories due to faster access time  

DRAM

DRAM stands for Dynamic Random Access Memory

DRAMs are used for main memories due to comparatively slower access time.

DRAMs use capacitor to store bits where each capacitor holds a single bit

Parameter differences  

Speed: SRAMs are faster due to presence of transistors. DRAMs are slower due to presence of capacitors

Size: Due to complexity involved in the internal circuits, SRAMs are smaller in capacity for same size of the chip. DRAMs are larger as compared to SRAMs since their capacity for a given physical size is more.

Cost: SRAMs are costlier and the per bit storage cost is more than that of the DRAMs. DRAMs are cheaper and the per bit storage cost is less than that of the SRAMs

SRAM :

SRAM has lower access time, so it is faster compared to DRAM.SRAM is costlier then DRAM.SRAM requires constant power supply, which means this type of memory consumes more power.Due to complex internal circuitry, less storage capacity is available compare to the same physical size of DRAM memory chip. SRAM has low packaging density.

DRAM :

DRAM has higher access time, so it is lower than SRAM. DRAM costs less compair to the SRAM.DRAM offers reduced power consumption, due to the fact that the information is stored in capacitor.Due to the small internal circuitry in the one-bit memory cell of DRAM, the large storage capacity is available.DRAM has high packaging density.

Hope Helps!!

please answer the question in excel use the solver.Thanks
Alice makes two types of accessories (Product 1 and 2) for selling in the handcraft market. Each of them requires various units of Acrylic, Metal, and Nylon. The unit costs of Acrylic, Metal, and Nylon are $5, $10, and $3 respectively. Now, she wants to determine the number of Product 1 and 2 to be made to maximize the total profit. For each unit of Product 1, three units of Acrylic, one unit of Metal, and two units of Nylon are required. For each unit of Product 2, one units of Acrylic, and four units of Nylon are required. The supplier has 300 units of Acrylic, unlimited Metal, and 200 units of Nylon. Amy decides to set the unit price of Product 1 as $80, and $60 for Product 2. After analysing the demand of each product, she decides to produce at least 10 units of Product 2 but no more than 50 units.

a. Identify the decisions to be made, the constraints on these decisions, and the overall measure of performance for the decisions.
b. Convert descriptions of constraints and measure of performance into quantitative expressions in terms of the data and decision variables.
c. Formulate and solve a linear programming model for this problem on a spreadsheet.
d. Explain the answers.

Answers

In this problem, Alice needs to determine the number of Products 1 and Product 2 to maximize the total profit while considering the constraints on the available resources.

The decisions to be made are the quantities of Product 1 and Product 2 to produce. The constraints include the availability of Acrylic, Metal, and Nylon, as well as the minimum and maximum production limits for Product 2. The overall measure of performance is the total profit.

To convert the constraints and measure of performance into quantitative expressions, we can use the following:

1. Decision Variables:

  - Let x be the number of units of Product 1 to produce.

  - Let y be the number of units of Product 2 to produce.

2. Constraints:

  - Acrylic constraint: 3x + y ≤ 300 (availability of Acrylic)

  - Metal constraint: x + y ≥ 0 (unlimited Metal)

  - Nylon constraint: 2x + 4y ≤ 200 (availability of Nylon)

  - Product 2 production limit: 10 ≤ y ≤ 50

3. Objective Function:

  - Profit = 80x + 60y (unit price multiplied by the quantity)

Using these expressions, we can formulate the linear programming model on a spreadsheet. By setting up the decision variables, constraints, and objective function, we can use Excel's Solver add-in to find the optimal values of x and y that maximize the total profit while satisfying the constraints. The explanation of the answers will involve interpreting the solution obtained from the linear programming model. It will provide insights into the optimal quantities of Product 1 and Product 2 to produce, the maximum total profit, and how the constraints are being satisfied. It will demonstrate how the decision variables and constraints interact to achieve the best possible outcome.

Learn more about linear programming here:

https://brainly.com/question/15762941

#SPJ11

Reagan is working on her homework on a touchscreen laptop which has Windows® 10 operating system. Reagan wants to zoom in on the screen to see the text of a document better. Which of the following touch screen gestures should she use to zoom in on the screen? Stretch Stretch Pinch Pinch Drag and slide Drag and slide Press and hold Press and hold

Answers

Reagan should use the pinch gesture to zoom in on the screen. Reagan is working on her homework on a touchscreen laptop which has Windows® 10 operating system.

Reagan wants to zoom in on the screen to see the text of a document better. To zoom in on the screen, Reagan can use the pinch gesture. Pinch is a touch screen gesture used to zoom in or out of a page, an image, or to minimize or maximize a window. The pinch gesture is made by placing two fingers on the screen and then moving them closer together or farther apart. For instance, to zoom in, Reagan should place her thumb and forefinger on the screen and then move them apart.

On the other hand, to zoom out, Reagan can place her thumb and forefinger on the screen and then move them closer together. Stretch is a similar gesture to the pinch but is made by moving the fingers apart from each other, thereby making the page or image bigger. This gesture is often used in conjunction with drag and slide to move the screen in different directions.

Drag and slide involves moving one or more fingers on the screen in any direction to move a page or an image in the same direction. Lastly, Press and hold is a gesture that is made by placing a finger on the screen and holding it there for a few seconds. It can be used to access a menu or activate an app. In conclusion, Reagan should use the pinch gesture to zoom in on the screen.

Learn more about operating system :

https://brainly.com/question/31551584

#SPJ11

Comments File Home Insert Draw Page Layout Formulas Data Review View Help ▼ K7 X✓ fx B A с D E F G H K M N O P 1 Reid Furniture Store Financing 2 In range G9:G115 enter a formula to calculate the

Answers

In range G9:G115, the formula to calculate the monthly payment for a loan in the Reid Furniture Store Financing worksheet is as follows: =PMT(G5/12,G6,-G4)

Here, the PMT function is used to calculate the monthly payment for a loan.

The arguments required for this function are the interest rate per period, the number of periods, and the present value of the loan.

In this case, the arguments are as follows: Interest rate per period = G5/12Number of periods = G6

Present value of the loan = -G4 (since this value is a negative amount)

Therefore, the complete formula is = PMT(G5/12,G6,-G4).

The range G9:G115 is the area where the formula is being entered, and it will show the results for each customer in that range.

Learn more about Microsoft Excel here:

https://brainly.com/question/11154250

#SPJ11

Differentiate between a real integer and exponential form in a double quote.

At least 5 differences please

Answers

A real integer is a whole number without any fractional or decimal part, expressed in standard numerical form while the exponential form represents a number in the form of a base raised to an exponent.

What is the difference between real integer and exponential form in numbers?

Real integers are represented as standard numerical values without any fractional or decimal parts such as 1, 2, 3, -4, or 0. They can be positive, negative, or zero.

The exponential form is a way of expressing numbers using a base and an exponent. In exponential form, a number is written as the product of a base raised to a power or exponent. For example, \(10^2\) represents 10 raised to the power of 2 which is equal to 100.

Read more about double quote

brainly.com/question/28643982

#SPJ1

which of the following is another term for a subfolder​

Answers

Answer:

below

Explanation:

subdirectory

Explanation:

Subdirectory is the another name of sub folderwhich is the small folder of files created withing a main folder.

Java Coding help please this is from a beginner's class(PLEASE HELP)

Prior to completing a challenge, insert a COMMENT with the appropriate number.

Java Coding help please this is from a beginner's class(PLEASE HELP)Prior to completing a challenge,

Answers

Given in the images are the completed method  that one can be able to use for a linear search on an array:

What is the Java Coding?

The given text  provides several programming code that bear completing the work of different styles.

Note tnat Each system has a specific set of conditions that need to be met in order to give the anticipated affair.

Therefore,  code range from simple codes similar as performing a direct hunt on an array or publishing a board with a given size and pattern, to more complex codes similar as checking if one array contains another array in a successive and ordered manner.

Learn more about Java Coding from

https://brainly.com/question/18554491

#SPJ1

See text below



1) Complete the method: public static int simpleSearch(int[] nums, int value), that performs a linear (sequential) search on the array parameter, and returns the index of the first occurrence the of value parameter. Return -1 if value doesn't exist in nums.

simpleSearch(new int[] {8, 6, 7, 4, 3, 6, 5), 7) >>> 2

//2 is index of the value 7

2) Complete the method: public static void squareBoard(int num), that prints an num by num board with a '#' character in every position.

squareBoard(2) >>>

3) Complete the method: public static void checkerBoard(int num), that prints an num by num board with a '# character in every position in a 'checkerboard' fashion.

checker Board(3) >>>

4) Complete the method: public static void printPow2(int num), that prints num powers of 2 (including O), given the supplied number. Use String concatenation to print like this:

//with a call of printPow2(4):

Here are the first 4 powers of 2:

2^8 = 1

2^1 = 2

2^2 = 4

238

5) Complete the method: public static double convertTemp/double temp, boolean isF), that performs a Celsius to Fahrenheit conversion (and vice versa) when called. The parameter isF will be supplied as true if temp is in Fahrenheit.

6) Complete the method: public static boolean isArmstrong(int num), that returns true if the supplied number is an "Armstrong number". An Armstrong number is a number for which the sum of the cubes of its digits is equal to the number itself. Modulus and integer division will help.

IsArmstrong (371) >>> true //3*3*3+7*7*7+ 1*1*1 == 371

7) Difficulty level HIGH: Complete the method: public static boolean contains(int[] alpha, int[] beta). that returns true if the sequence of elements in beta appear anywhere in alpha. They must appear consecutively and in the same order. You'll need nested loops for this.

contains(new int[] {1, 2, 1, 2, 3), new int[] {1, 2, 3}) >>> true

contains (new int[] 1, 2, 1, 2, 3, 1), new intf (1, 1, 3, 1)) >>> false

Java Coding help please this is from a beginner's class(PLEASE HELP)Prior to completing a challenge,
Java Coding help please this is from a beginner's class(PLEASE HELP)Prior to completing a challenge,
Java Coding help please this is from a beginner's class(PLEASE HELP)Prior to completing a challenge,

What type of audio codec is installed in sunsdr2 dx?.

Answers

The audio codec that is installed in SunSDR2 DX is a high-quality stereo audio codec that is designed to deliver high-quality audio on a wide range of platforms. The audio codec is designed to work with a variety of different audio formats, including MP3, AAC, and WMA.



The SunSDR2 DX is a top-of-the-line SDR transceiver that is designed to provide the user with exceptional performance and flexibility. The SunSDR2 DX is built using the latest SDR technology and includes a powerful processor that is capable of running a wide range of different software applications.

In summary, the SunSDR2 DX is a high-performance SDR transceiver that is designed to deliver exceptional performance and flexibility. The audio codec that is installed in the SunSDR2 DX is designed to provide high-quality audio with a wide range of different frequencies and sampling rates. It is designed to work with a variety of different audio formats, making it a versatile and powerful tool for any audio professional.

To know more about quality visit:

https://brainly.com/question/32332409

#SPJ11

Web-based applications are application software which operate and can be accessed through.

Answers

Main Answer:Web-based applications are application software which operate and can be accessed through a web browser.

Sub heading:

what is web browser?

Explanation:

1.web browser  is application software for accessing the world wide web.

REFERENCE LINK:

https://brainly.com

Hashtag:

#SPJ4

Please help me answering this Python questions
1} Which data structure is best suited to store and update different data structures?
A) Boolean
B) Integer
C) List
D) String

2} Which of the following would be an optimal data structure for an algorithm to update and change information?
A) Dictionary
B) Integer
C) List
D) String

3 }What is one of the common characteristics of an efficient program?
A) Containing complicated functions and including a lot of useful variables
B) Containing the fewest number of steps required to solve the problem
C) Looking neat and being easy to read
D) Requiring effective computers to run efficiently

4} Which of the following best describes why an IDLE is useful for programming in Python?
A) IDLEs are laid out well.
B) IDLEs can help identify mistakes at early stages of programming.
C) It is possible to program in different languages with the same IDLE.
D) It is possible to use more libraries with IDLEs than with other editors.

5} Which of the following is a main characteristic of procedural programming?
A) Being inefficient
B) Containing only functions
C) Focusing on objects and modularization
D) Focusing on processes and methods

6} Write pseudocode for a program to get ready for bed.

Answers

Answer:

1.A 2.D 3.D 4.C 5.D

Explanation:

6. im not sure

Cisco uses the term the power of in-person to describe the ability of what technology to improve access to subject matter experts and to open doors for small business people?.

Answers

Cisco uses the term the power of in-person to describe the ability of Telepresence technology to improve access to subject matter experts and to open doors for small business people.

CISCO stands for Commercial & Industrial Security Corporation. The American international technological conglomerate firm Cisco Systems, Inc., also known as Cisco, has its corporate headquarters in San Jose, California. Cisco creates, produces, and markets networking tools, computer software, telecommunications gear, and other high-tech services and goods.

Cisco Systems is an IT and networking company with a focus on switches, routers, cybersecurity, and IoT. Its logo can be seen on virtually every conference or office phone. Internationally active American technology business Cisco Systems is best recognised for its computer networking solutions.

Cisco's "Infrastructure Platforms" division is by far the largest, bringing in over 27.1 billion dollars in revenue for the company's fiscal year 2021. Networking technology solutions from Cisco, including switching, routing, wireless, and data centre equipment, are included in the company's "Infrastructure Platforms" business.

Learn more about Cisco:

https://brainly.com/question/27961581

#SPJ4

given a binary search tree, find which value is the median value, and delete that value.

Answers

To find the median value in a binary search tree (BST) and delete it, we need to follow a specific set of steps.

First, let's understand the concept of the median in a BST. In a BST, the median value is the middle value when the elements are sorted in ascending order. If the number of elements in the BST is odd, the median will be the middle element. If the number of elements is even, the median will be the average of the two middle elements.

To find the median value in a BST, we can perform an in-order traversal of the tree, which visits the nodes in ascending order. During the traversal, we keep track of the values in a list or array. Once we have all the values in the list, we can determine the median based on the length of the list.

Once we have identified the median value, we can proceed to delete it from the BST. Deleting a node in a BST involves finding the node to be deleted and adjusting the tree structure accordingly. We need to consider three cases for deletion:

1. If the node to be deleted is a leaf node (has no children), we can simply remove it from the tree.

2. If the node to be deleted has one child, we can replace the node with its child.

3. If the node to be deleted has two children, we need to find its in-order successor (the smallest node in the right subtree) or in-order predecessor (the largest node in the left subtree). We then replace the node with the successor or predecessor and delete that node instead.

After deleting the median value, the BST will still maintain the binary search tree property. The time complexity for finding the median and deleting it from the BST is O(n), where n is the number of nodes in the tree, as we need to traverse the entire tree.

Learn more about Median :

https://brainly.com/question/2292804

#SPJ11

Write two example of an operating ystem please give fast answer

Answers

Answer:

microsoft windows

Linux

Ios

Android

Explanation:

Please mark me as brainlist.

This action allows workflow items to automatically reroute to a selected Member based on the process ID and transaction type.

Answers

The action you're referring to is called "Automatic Routing." It enables workflow items to be efficiently rerouted to a designated member based on the process ID and transaction type, streamlining the workflow process and increasing overall productivity.

The action you are referring to is called "Dynamic Routing." This feature enables the system to automatically reroute workflow items to a specific member based on the process ID and transaction type. With Dynamic Routing, organizations can streamline their workflow processes and ensure that the right people are handling the appropriate tasks at the right time. This can help to improve efficiency and reduce errors in the workflow process.

The action you're referring to is called "Automatic Routing." It enables workflow items to be efficiently rerouted to a designated member based on the process ID and transaction type, streamlining the workflow process and increasing overall productivity.

To learn more about Automatic Routing, click here:

brainly.com/question/30846998

#SPJ11

what is a private secure path across a public network

Answers

A private secure path across a public network is known as a virtual private network (VPN).

A virtual private network is a network technology that allows the establishment of a private network through a public network such as the Internet.

VPNs provide secure communication by encrypting data that is transmitted over the network, allowing users to establish a secure connection to a remote network over the internet.

VPNs provide an encrypted connection between the sender and the receiver and can be used to access content that may be blocked in a particular country or region by providing a virtual location.

Learn more about network at

https://brainly.com/question/31831893

#SPJ11


A programmer has a need to round many numeric values to the nearest integer. Which of the following best explains the benefit of using a list as a data abstraction in this situation

Answers

Answer:

Keeping the numeric values in a list makes it easier to apply the same computation to every data element.

Explanation:

A list or array in programming is a data structure, that has the location for each item it holds indexed. It eliminates the need to constantly create a variable to compute items of the same data types.

The list can store items of the same data type and iterate over them to compute the same calculation on each of them.

Lists are values which are seperated by commas and populated within square brackets. They are mutable and values could be easily accessed, appended, deleted or replaced. Hence, the use of a list for data abstraction is beneficial in that the round function could be easily applied to all the values in the list.

Rounding the values in the list coukd be easily done using for loop which takes each value in the list one at a time, rounds them to the nearest integer and places them into another list.

Using the a python list comprehension thus:

Given a list of numeric Values :

my_list = [1.2, 1.4, 1.5, 1.7]

rounded_int = [round(x) for x in my_list]

Learn more : https://brainly.com/question/20533392

which of the following is not true when recording a macro? a shortcut is required. the description displays as a comment in the vba code. if you make an error, correct it. after you click the stop recording button, delete the data or undo commands that were completed while recording the macro.

Answers

The statement "a shortcut is required" is not true when recording a macro.

When recording a macro, you can choose to assign a shortcut key to run the macro later, but it is not a requirement. The other options listed in the question are all true. The description you enter while recording the macro will display as a comment in the VBA code. If you make an error while recording the macro, you can correct it before stopping the recording. And it is a good practice to delete any unnecessary data or undo commands that were completed while recording the macro, to avoid any confusion when running the macro later.

While assigning a shortcut key can make it easier to run the macro later, it is not a requirement and you can still run the macro from the Macros dialog box or from the Developer tab on the ribbon.

To know more about shortcut visit:-

https://brainly.com/question/6460806

#SPJ11

In the planning process of the product development life cycle, what is it important to inventory?

Answers

Answer:

The product life cycle is represent to the various stages of the market such as growth, introduction, decline and maturity.

Explanation:

Product development life cycle is the process of a product in which there are different stages.  From the side of inventory there are management viewpoint is very important. It works according to season.

Every product goes under the life cycle and it is important for the primary optimization.

It is seen that at the inventory level the life cycle may be dwarfed by the pattern.

Thus at the inventory level the management is very important.

what is a type of system software that allows a user to perform maintenance type tasks​

Answers

Answer:

Computer

Explanation:

The type of system software that allows a user to perform maintenance-type tasks​ is a computer.

A computer has many programs and operating systems.

why do most operating systems let users make changes

Answers

By these changes you most likely are thinking of the term 'Over Clocking'
Over Clocking is used on most Operating Systems to bring the item your over clocking to the max.
Over Clocking; is mostly used for Crypto mining and gaming.

2.3 pseudocode exercise on edhesive

Answers

Answer:

a=int(input("Enter a numerator: "))

b=int(input("Enter a divisor: "))

quotient=a/b

remainder=a%b

print("Quotient is: " + str(int(quotient)))

print("Remainder is: " + str(int(remainder)))

That's 2.3 question 1

a_ft = int(input("Enter the Feet: "))

a_inc = int(input("Enter the Inches: "))

b_ft = int(input("Enter the Feet: "))

b_inc = int(input("Enter the Inches: "))

sum_inc = a_inc + b_inc

# select the whole and the fractional part

inc_to_ft = sum_inc // 12

rem_from_div = sum_inc % 12

sum_ft = a_ft + b_ft + inc_to_ft

print("Feet: {} Inches: {}".format(sum_ft, rem_from_div))

That's 2.3 question 2

Explanation:

I wasn't sure which one you needed so I added both.

You received an email from someone who claims to be a representative from your school. The email asked you to click on a link to reset your password. You should process with caution because the email may be a ​

Answers

Answer:

Phishing

Explanation:

Phishing = Link to a site, usually a fake replica of a legitimate site but with added implements that can be used to spy on you (how people become victims of identity theft

I am looking for code HS 3.4.5 in Technology

Answers

Answer (Code):

penup()

backward(100)

def bottom_line():

left(120)

color("red")

forward(100)

def triangle():

left(120)

color("blue")

forward(50)

left(120)

color("green")

forward(50)

pendown()

pensize(5)

color("red")

forward(50)

for i in range(4):

triangle()

bottom_line()

Other Questions
A company has three product lines, one of which reflects the following results: Sales HK$215,000 125,000 Variable expenses Contribution margin. 90,000 130,000 Fixed expenses Net loss HK$ (40,000) this product line is eliminated, 60% of the fixed expenses can be eliminated and the other 40% will be allocated to other product lines. If management decides to eliminate this product line, the company's net income will O increase by HK$40,000. O decrease by HK$90,000. O decrease by HK$12,000. O increase by HK$12,000. which of the market structure price their product by finding the equilibrium price on the classic demand and supply curve? How many atoms of barium are in274.66 g of Ba? What is the volume of a box that is 6 decimeters wide, 9 decimeters tall and 7 decimeters long? PLEASE HELP WITH THE STEPS The annual interest rate on a credit card is 15.30% cm. If a payment of$300.00 is made each month, how many months will it take to pay off anunpaid balance of $2,590.67? (Round to 1 decimal place)Assume that no new purchases are made with the credit card.The number of months is _______ Graph the line that passes through the points (6,3) and (5,3) and determine the equation of the line. Steve races to the nearest taco stand at lunchtime and sees that his pedometer recorded his peak speed at 108.9 cm/s. What was Steve's peak speed in kilometers per hour? Which anatomical division of the nervous system consists of the brain and spinal cord?. Find C that is 1/5 the distance from A(4, 2) to B(8, 7). Two groups went hiking, leaving at the same time and arriving back at the same time. While one group moved away at the speed 6 mph and then moved back at the speed 4 mph, the other group moved all the way with the same speed. What was the speed of this second group, if both groups covered the same total distance, 24 miles? Which of the following body functions are made possible by the skeletal system?Check all that apply.A) give form and structure to the bodyB) protect vital organsC) connect the brain to the nerves in extremities such as fingers and toesD) produce blood cellsE) store nutrientsF) provide blood flow to the organsG) allow the body to move list the sides from shortest to longest Explain the types of surveillance in criminal investigations:The 4 principal methods for conducting a moving surveillance on foot are one-officer surveillance; two-officer surveillance; the ABC method; and the progressive or leapfrog method.What are the principal methods in conducting foot surveillance? Which is the most effective? state two ways by which the principles of osmosis are applied in life Question 20 20) The tables correspond to two lines drawn on a graph. Based on the tables, what is the solution of the 2 lines? Line 1 Line 2 y 3 -2 O 5 -1 4 -2 7 0 1 -4 9 1 A (-2, 7) (0, 1) C (0, 5) D (-4, 9) A student mixes aqueous solutions of NISO4 and NaOH. What will be the correct formula of the precipitate that is formed what is mathematics? Match the phrase with the correct health condition.caused by extra estrogen in women: can damage the blood pump in the body: bacteria that can grow in your breathing areas: a group of cells that grow very fast: can happen when the blood pump in the body is weak: a blood clot in the brain: can damage parts of the brain or even cause death: .Increased global temperatures that lead to more water evaporation and more heat-trapping water-vapor in the air would be considered:a.a positive feed back loopb.a negative feedback loopc.neither of the above 1. Pretend that in a certain city the number of new cases of a virus was reported to be 800 new cases on Sunday. Lets pretend that the number of new cases grows by 15% on Monday, grows by 5% on Tuesday, and then falls 10% on Wednesday, and finally falls again 10% on Thursday.a. What will the number of new cases be on Thursday after all of this growth and falling?