What will be the output after the following code is executed and the user enters 75 and -5 at the first two prompts?

def main():

try:

total = int(input("Enter total cost of items? "))

num_items = int(input("Number of items "))

average = total / num_items

except ZeroDivisionError:

print('ERROR: cannot have 0 items')

except ValueError:

print('ERROR: number of items cannot be negative')

main()

Nothing, there is no print statement to display average. The ValueError will not catch the error.

Answers

Answer 1

The output after the code is executed and the user enters 75 and -5 at the first two prompts will be an error message.

Let's break down the code to understand why this happens:

The `main()` function is defined, which is the entry point of the code.Inside the `try` block, the code prompts the user to enter the total cost of items and the number of items. The inputs are converted to integers using the `int()` function.The code then calculates the average by dividing the total cost by the number of items.If there is a `ZeroDivisionError`, meaning the user entered 0 as the number of items, the code will execute the `except ZeroDivisionError` block and print the message "ERROR: cannot have 0 items".If there is a `ValueError`, meaning the user entered a negative number as the number of items, the code will execute the `except ValueError` block and print the message "ERROR: number of items cannot be negative".Finally, the `main()` function is called to start the code execution.

In this case, when the user enters -5 as the number of items, a `ValueError` will occur because the code expects a positive number. Therefore, the `except ValueError` block will be executed, and the message "ERROR: number of items cannot be negative" will be printed.

Since there is no print statement to display the calculated average, nothing will be displayed for the average value. To summarize, the output will be the error message "ERROR: number of items cannot be negative".

Learn more about code https://brainly.com/question/28992006

#SPJ11


Related Questions

Your office is moving from one floor of a building to another, and you are part of the moving crew. When moving computer equipment, which of the following are good procedures to follow? (Choose two.)
A. Lift by bending over at the waist.
B. Carry monitors with the glass face away from your body.
C. Use a cart for heavy objects.
D. Ensure that there are no safety hazards in your path.

Answers

When moving computer equipment, the two good procedures to follow are to use a cart for heavy objects and ensure that there are no safety hazards in your path.

Explanation:

During the process of moving computer equipment, some procedures have to be followed to ensure that both the moving crew and the equipment is safe. Among the good procedures to follow include; Using a cart for heavy objects This procedure should be followed when there are heavy equipment that needs to be transported. A computer is an example of heavy equipment that needs to be transported using a cart instead of lifting it. Lifting it may lead to back pains or even equipment damage. Using a cart also ensures that the equipment is transported to the right place, reducing the risk of losing any equipment.

Ensure that there are no safety hazards in your path Before moving equipment, one should ensure that there are no safety hazards in the path to where they are going. This will help reduce the chances of accidents and also ensure that the equipment is safe during the move. Safety hazards such as electric cables and exposed wires can cause damage to the equipment or even to the personnel moving it. Lifting by bending over at the waist and carrying monitors with the glass face away from your body are not good procedures to follow when moving computer equipment.

For more such questions micro-computer visit:

brainly.com/question/26497473

#SPJ11

Discussion Question:
When scheduling a project, why is it important to
understand the activity precedence prior to creating a
network?
(min. 100 words, max. approximately 300 words):

Answers

When scheduling a project, it is important to understand the activity precedence prior to creating a network as this helps to ensure that the project is completed successfully. This allows the project manager to create a realistic schedule that accounts for all the necessary activities and ensures that they are completed in the correct order.


Activity precedence refers to the order in which the different activities in a project need to be completed. This order is determined by the dependencies that exist between the activities. For example, if one activity cannot be started until another activity is completed, then the first activity is said to be dependent on the second activity.When creating a network for a project, the activity precedence needs to be understood so that the network can accurately reflect the dependencies that exist between the different activities. This helps to ensure that the project is scheduled realistically and that all the necessary activities are accounted for.

One of the key benefits of understanding activity precedence is that it helps to avoid delays and other issues that can occur when activities are not completed in the correct order. By identifying the dependencies that exist between activities, project managers can ensure that each activity is completed in the right sequence and that there are no unnecessary delays that can impact the overall project timeline.Overall, understanding activity precedence is critical when scheduling a project, as it helps to ensure that the project is completed successfully. By identifying the dependencies between activities, project managers can create a realistic schedule that accounts for all the necessary activities and ensures that they are completed in the correct order.

To know more about network visit:

https://brainly.com/question/13102717

#SPJ11

Using C language to design an algorithm that is equal O(n*logn) time complexity to solve the following question
Given an array of integers nums and an integer target, return indices of the two numbers such that they add up to target.
int* twoSum(int* nums, int numsSize, int target){
}
Example 1:
Input: nums = [2,7,11,15], target = 9
Output: [0,1]
Explanation: Because nums[0] + nums[1] == 9, we return [0, 1].
Example 2:
Input: nums = [3,2,4], target = 6
Output: [1,2]
Example 3:
Input: nums = [3,3], target = 6
Output: [0,1]

Answers

To solve the problem of finding two numbers in an array that add up to a given target using C language, you can design an algorithm with a time complexity of O(n*logn).

Design an algorithm in C language with a time complexity of O(n*logn) to solve the Two-Sum problem?

1. Sort the input array `nums` using an efficient sorting algorithm like QuickSort, which has an average time complexity of O(n*logn).

2. Initialize two pointers, `left` and `right`, pointing to the start and end of the sorted array, respectively.

3. While `left` is less than `right`, calculate the sum of `nums[left]` and `nums[right]`.

4. If the sum is equal to the target, return the indices `[left, right]`.

5. If the sum is less than the target, increment `left` to consider a larger element.

6. If the sum is greater than the target, decrement `right` to consider a smaller element.

7. Repeat steps 3-6 until the solution is found or `left` becomes greater than or equal to `right`.

8. If no solution is found, return an appropriate result indicating that there are no two numbers in the array that add up to the target.

Learn more about: C language

brainly.com/question/30101710

#SPJ11

Please code in HTML
You must create a personal website that features information about you. Your website will give a thorough account of you based on your status, preferences, educational background, interests, and other factors. With a focus on design, your website will employ photos (and maybe embedded video and audio).
You require to:
1. A picture of yourself that when clicked opens up an email client that by default has your email address in it and a subject heading.
2. Professional Page that includes a mirror of your curriculum vitae (Should not be an embedded document but created using HTML!!)
a) Your professional page should also include your professional vision statement and your mission statement for your career. [A vision defines where you want to be in the future. A mission defines where you are going now, describing your raison d’être. Mission equals the action; vision is the ultimate result of the action.]
3. Personal Page showcasing your traits and emotions. Likes, dislikes, hobbies etc. are used to show the world your character.
a) Provide a personal quote from a person you look up to the most. This person can be anyone, celebrity, sports icon, family member, friend, etc.
4. Should include at least one bookmark and one external hyperlink

Answers

Above is a basic structure of HTML that can be used to create a personal website with a picture of yourself that when clicked opens up an email client that by default has your email address in it and a subject heading.

A Professional Page is also included that includes a mirror of your curriculum vitae (Should not be an embedded document but created using HTML!!). Your professional page should also include your professional vision statement and your mission statement for your career.

The Personal Page showcases your traits and emotions. Likes, dislikes, hobbies etc. are used to show the world your character. A personal quote from a person you look up to the most should also be provided. Lastly, at least one bookmark and one external hyperlink should be included.

To know more about html visit:

https://brainly.com/question/33631980

#SPJ11

Compare the advantages and disadvantages of machine code, assembly language and
C/C++ programming language.

Answers

Machine code, assembly language, and C/C++ programming language have distinct advantages and disadvantages. Machine code offers direct hardware control but is low-level and difficult to program. Assembly language provides more abstraction and readability but is still low-level. C/C++ programming language is higher-level, offers portability, and supports modular programming, but can be complex and less efficient than lower-level languages.

Machine code is the lowest-level programming language that directly corresponds to the instructions understood by the computer's hardware. Its primary advantage is that it provides complete control over the hardware, allowing for maximum performance and efficiency. However, machine code is extremely low-level and lacks readability, making it challenging to write and understand. Programming in machine code requires a deep understanding of the computer's architecture and can be error-prone.

Assembly language is a step up from machine code as it uses mnemonic codes to represent machine instructions, making it more readable and easier to understand. Assembly language allows for more abstraction and simplifies the programming process compared to machine code. It provides direct access to the computer's hardware and offers flexibility for low-level optimizations. However, it still requires a good understanding of computer architecture and can be time-consuming to write and debug.

C/C++ programming language is a higher-level language that provides even more abstraction and portability compared to assembly language. It offers a wide range of built-in libraries and tools, making development faster and more efficient. C/C++ supports modular programming, allowing developers to break down complex tasks into smaller, manageable modules. It also provides portability across different platforms, enabling code reuse. However, C/C++ is more complex than assembly language, requires a compiler, and may not offer the same level of low-level control and performance as lower-level languages.

In summary, machine code offers maximum hardware control but is difficult to program, assembly language provides more readability and abstraction but is still low-level, and C/C++ programming language offers higher-level abstraction, portability, and modular programming but can be more complex and less efficient than lower-level languages.

Learn more about Abstraction

brainly.com/question/30626835

#SPJ11

In quantum computing, the equivalent of a bit of information is often called:
O Qubit
De-Bit
DarkBit
Al-Bit

Answers

In quantum computing, the equivalent of a bit of information is often called qubit.  unit of quantum information that is the equivalent of a classical bit used in conventional computing.

In quantum computing, qubits are represented using quantum systems, such as individual atoms, ions, or superconducting circuits. A qubit can exist in any superposition of its basis states, as opposed to a classical bit, which can only exist in one of two states (0 or 1) at any given time. :A quantum bit (qubit) is a fundamental building block of quantum information.

It can be implemented with a two-level quantum system, such as the spin of an electron or the polarization of a photon. Because of the counterintuitive nature of quantum mechanics, qubits can exist in superpositions of the two basis states, leading to phenomena like quantum entanglement, which is the basis of many quantum algorithms.

To know more about quantum visit:

https://brainly.com/question/33631146

#SPJ11

wreg contains the value 0x86. what will be the content of the wreg (in hex notation) and the states of the status bits z and c after executing the following instruction? (3 pt.)

addlw 0x33

WREG = [?]

Z = [?]

C = [?]

Answers

The content of WREG after executing the "addlw 0x33" instruction with an initial value of 0x86 will be 0xB9. The Z bit will be 0, indicating a non-zero result, and the C bit will also be 0, indicating no carry occurred during the addition.

The instruction "addlw 0x33" adds the immediate value 0x33 to the contents of the WREG register. Given that the initial value of WREG is 0x86, the addition would yield a result of 0xB9 in hexadecimal notation.

After executing the "addlw" instruction, we need to determine the states of the Z (zero) and C (carry) status bits. The Z bit indicates whether the result of the addition is zero, while the C bit indicates whether a carry occurred during the addition.

In this case, since the result of the addition is 0xB9, which is non-zero, the Z bit will be set to 0, indicating that the result is not zero. As for the C bit, it will also be set to 0 since no carry occurred during the addition.

To summarize, after executing the "addlw 0x33" instruction with an initial WREG value of 0x86, the content of WREG will be 0xB9, the Z bit will be 0, and the C bit will be 0.

Learn more about instruction

brainly.com/question/19570737

#SPJ11

Objectives - To learn basic elements of the assembly language. - To learn the difference between data and code segments. 1 Problems (20 points) - Write a program that contains a definition of each of the following data types: BYTE, SBYTE, WORD, SWORD, DWORD, SDWORD, QWORD, TBYTE. Initialize each variable to a value that is consistent with its data type. (10 points) - Write a program that defines symbolic names for several string literals (characters between quotes). Use each symbolic name in a variable definition

Answers

Program that contains a definition of each of the following data types: BYTE, SBYTE, WORD, SWORD, DWORD, SDWORD, QWORD, TBYTE.

Initialize each variable to a value that is consistent with its data type. Data Segment BYTE1 DB 01110001b ; BYTE1 stores binary value in one byte SBYTE1 DB -25 ; SBYTE1 stores 8-bit signed data WORD1 DW 0444h ; WORD1 stores a 16-bit binary data SWORD1 DW -12345 ; SWORD1 stores a 16-bit signed binary data DWORD1 DD 0BAADDAAh ; DWORD1 stores a 32-bit binary data SDWORD1 DD -1000000 ; SDWORD1 stores a 32-bit signed binary data QWORD1 DQ 1234567812345678h ; QWORD1 stores a 64-bit binary data TBYTE1 DT 11.2223 ; TBYTE1 stores a 80-bit packed BCD real number code ends ;end of data segment  .

Code Segment  start: mov ax, data ;load data segment into AX register mov ds, ax ;copy data segment from AX register to DS register   ;code ends end startProgram that defines symbolic names for several string literals (characters between quotes). Use each symbolic name in a variable definition. Data Segment STR1 DB "John" STR2 DB "Marry" STR3 DB "Smith" code ends  Code Segment start: mov ax, data ;load data segment into AX register mov ds, ax ;copy data segment from AX register to DS register mov ah, 9 ;used to print string message stored in data segment. lea dx, STR1 ;load effective address of string message to DX register int 21h ;print message lea dx, STR2 ;load effective address of string message to DX register int 21h ;print message lea dx, STR3 ;load effective address of string message to DX register int 21h ;print message  ;code ends end start.

To know more about program visit:-

https://brainly.com/question/30613605

#SPJ11

An organization has a main office and three satellite locations.
Data specific to each location is stored locally in which
configuration?
Group of answer choices
Distributed
Parallel
Shared
Private

Answers

An organization has a main office and three satellite locations. Data specific to each location is stored locally in a private configuration.

A private configuration refers to a computing system in which there are separate physical components that are not shared. Each physical component is self-contained and separated from the other components. All of the resources that a private configuration needs are kept within the confines of the individual component that it is connected to. Hence, it is designed to meet specific user needs for specific uses.

In the given scenario, an organization has a main office and three satellite locations. Data specific to each location is stored locally in a private configuration. Therefore, "Private".  The data is stored locally at each location so it can't be shared among other locations; thus, it is stored in a private configuration.

To know more about Data specific visit:

https://brainly.com/question/32375174

#SPJ11

Write a function that computes MPG for a car. To test your function prompt the user to enter the number of miles driven and the number of gallons used. Use appropriate type conversion function to convert user inputs to a numerical type. Then call the function and pass user inputs to the function. Print a message with the answer.

Answers

Here's a function that computes the MPG (miles per gallon) for a car based on user inputs:

def calculate_mpg(miles, gallons):

   mpg = miles / gallons

   return mpg

def main():

   # Prompt the user for inputs

   miles = float(input("Enter the number of miles driven: "))

   gallons = float(input("Enter the number of gallons used: "))

   # Calculate MPG

   mpg = calculate_mpg(miles, gallons)

   # Print the result

   print("The MPG for the car is:", mpg)

# Call the main function

if __name__ == "__main__":

   main()

In this code, the calculate_mpg function takes two parameters: miles and gallons. It calculates the MPG by dividing the number of miles driven by the number of gallons used and returns the result.

The main function prompts the user to enter the number of miles driven and the number of gallons used, converts the inputs to numerical types using float, calls the calculate_mpg function with the user inputs, and then prints the calculated MPG.

Make sure to use float type conversion function to handle decimal values for miles and gallons if needed.

You can learn more about function at

https://brainly.com/question/18521637

#SPJ11

in conducting a computer abuse investigation you become aware that the suspect of the investigation is using abc company as his internet service provider (isp). you contact isp and request that they provide you assistance with your investigation. what assistance can the isp provide?

Answers

ISPs can provide assistance in a computer abuse investigation by disclosing user information, providing connection logs, email records, internet usage data, network logs, and complying with legal processes.

What assistance can the ISP provide?

When we contact an internet service provider for help in a case of computer abuse investigation, they can help us through;

1. User Information: Using ISP, it can help to expose the information of the subscriber that is connected to the suspect's account. This can help track the suspect.

2. Connection Logs: This can help to keep records of internet connections which includes the IP addresses, timestamps and the duration of the sessions.

3. Email and Communication Records: It can also help to provide the content of the suspect email record and the timestamps between each message.

4. Internet Usage Data: It also help to track down the internet usage of the suspect such as browsing details, bandwidth usage etc.

5. Network Logs and Monitoring: In some cases, ISPs may have network monitoring systems in place that can capture traffic data, including packet captures, to help investigate network-related abuses or attacks. They can provide relevant logs or assist in analyzing network traffic.

6. Compliance with Legal Processes: ISPs must comply with lawful requests for assistance in investigations.

Learn more on ISP here;

https://brainly.com/question/19561587

#SPJ4

The component of the information system that is described as raw, unprocessed facts, including text, numbers, images, and sounds, is called _______.
Data


Answers

The component of the information system described as raw, unprocessed facts is called data.

The statement is correct. The component of an information system that consists of raw, unprocessed facts is called data. Data can take various forms, including text, numbers, images, and sounds. It represents the basic building blocks of information and is typically collected, stored, and organized for further processing and analysis.

Data in its raw form lacks context and meaning. It becomes meaningful and valuable when it is processed, interpreted, and transformed into useful information. This processing involves organizing, structuring, and analyzing the data to extract insights, make informed decisions, and support various business operations.

In an information system, data is typically captured from various sources, such as sensors, databases, user inputs, or external systems. It serves as the foundation upon which information is derived and knowledge is gained. Effective management and utilization of data are crucial for businesses and organizations to leverage their information systems for decision-making and problem-solving.

Learn more about databases here:

https://brainly.com/question/30163202

#SPJ11

Name the system that monitors computer systems for suspected attempts at intrusion. Explain how it works.

Answers

The system that monitors computer systems for suspected attempts at intrusion is called Intrusion Detection System (IDS). IDS is a software or hardware tool that works in real-time to detect malicious activity and violations of computer security policies.

The main purpose of IDS is to detect and alert about attacks or unauthorized access attempts on the network.

IDS can monitor the system in two different ways:

Network-based intrusion detection systems (NIDS) and Host-based intrusion detection systems (HIDS).NIDS monitors the entire network, analyzing traffic as it flows from one node to another. It uses various detection methods, such as signature-based detection, anomaly-based detection, and protocol-based detection. In contrast, HIDS monitors a single host and its system logs to detect security issues such as configuration changes, login attempts, or access control changes.

The IDS works by analyzing the network traffic, looking for signatures of known attacks, or unusual traffic patterns that may indicate an attack. IDS uses different techniques to identify the threats, such as pattern matching, rule-based, or heuristic-based methods. Once the IDS detects any malicious activity, it raises an alert to the network administrator or security team.

The alert could be a log entry, email notification, or SMS message, providing critical information about the attack, such as the attacker's IP address, the type of attack, and the destination of the attack.

By monitoring the system, IDS helps organizations to identify and respond to security incidents before they can cause damage to the network or data. IDS is an essential tool for any organization that aims to protect its digital assets from cyber-attacks, data breaches, and other security incidents.

To know more about activity visit :

https://brainly.com/question/31904772

#SPJ11

A table of observed statistics for counting the set flags in captured TCP packets.
can you give an example

Answers

In network security and packet analysis, TCP flags provide information about the state and behavior of TCP connections. The flags are set within the TCP header and are used to control the flow of data and manage the connection between the sender and receiver.

TCP Flag Number of Packets

SYN           1500

ACK  2000

FIN           500

RST    100

PSH   800

URG  50

In this example, we have observed and counted the occurrences of different TCP flags in a set of captured TCP packets. The table displays the TCP flag types (SYN, ACK, FIN, RST, PSH, URG) and the corresponding number of packets in which each flag was set.

The table provides a summary of the observed statistics, allowing for easy analysis and understanding of the distribution of TCP flags in the captured packets.

Learn more about TCP flags https://brainly.com/question/14377589

#SPJ11

When using two GPS receivers (e.g. a base and a rover) to collect positional data for later differential correction by post processing

Question 15 options:

O both receivers must be of the same manufacture

O both must be at a known location

O both receivers must have at least 12 channels

O both receivers must be tracking the same satellites at the same time

O all of these are requirements

Answers

In the scenario of using two GPS receivers (base and rover) to collect positional data for later differential correction by post-processing, the requirement is that both receivers must be tracking the same satellites at the same time. Option d is correct.

This is crucial for accurate differential correction, as it allows for the calculation of the precise positioning differences between the base and rover receivers.

Having both receivers track the same satellites ensures that they receive the same signals and can later be differentially corrected to improve the accuracy of the collected positional data.

While the other options (same manufacturer, known location, and minimum 12 channels) may be beneficial or practical considerations, they are not absolute requirements for the differential correction process.

Therefore, d is correct.

Learn more about GPS receivers https://brainly.com/question/32247160

#SPJ11

Implement function Sum_Digits() that takes a three-digit integer as input and returns the integer obtained by summing its digits. For example, if the input is 123, your function should return 6 ( 1+2+3) . You are not allowed to use the string data type operations to do this task. Your program should simply read the input as an integer and process it as an integer using operators such as // and %. You may assume that the input integer does not end with the 0 digit.

Answers

The Sum_Digits() function takes a three-digit integer as input, extracts the digits using division and modulus operations, and returns the sum of the digits.

Here's the Python code implementation of the Sum_Digits() function:

def Sum_Digits(num):

   # Extract the hundreds, tens, and one's digits

   hundreds = num // 100

   tens = (num // 10) % 10

   ones = num % 10    

   # Calculate the sum of the digits

   digit_sum = hundreds + tens + ones    

   # Return the sum

   return digit_sum

In this implementation, the function takes a three-digit integer as input (num). It uses integer division (//) and modulus (%) operators to extract the hundreds, tens, and one's digits from the input number. Then, it calculates the sum of these digits and returns the result (digit_sum).

Please note that this implementation assumes that the input integer is a three-digit number and does not end with a 0 digit, as mentioned in the problem statement.

Learn more about functions in Python: https://brainly.com/question/28966371  

#SPJ11

Write a C++ program that does the following: Define a class myInt that has as its single attribute an integer variable and that contains member functions for determining the following information for an object of type myInt: A. Is it multiple of 7,11 , or 13. B. Is the sum of its digits odd or even. C. What is the square root value. D. Is it a prime number. E. Is it a perfect number ( The sum of the factors of a perfect number is equal to the number itself - for example : 1+2+ 4+7+14=28, so 28 is a perfect number ). Write a interface that tests your functions

Answers

Here is a C++ program that defines a class named myInt and has member functions for determining whether it's a multiple of 7, 11, or 13, whether the sum of its digits is odd or even, what its square root value is, whether it's a prime number, and whether it's a perfect number:```#include
#include
using namespace std;
class myInt {
private:
   int n;
public:
   myInt(int x) {
       n = x;
   }
   bool isMultipleOf(int x) {
       if (n % x == 0) {
           return true;
       }
       return false;
   }
   bool isMultipleOf7() {
       return isMultipleOf(7);
   }
   bool isMultipleOf11() {
       return isMultipleOf(11);
   }
   bool isMultipleOf13() {
       return isMultipleOf(13);
   }
   bool isSumOfDigitsOdd() {
       int sum = 0;
       int x = n;
       while (x > 0) {
           sum += x % 10;
           x /= 10;
       }
       if (sum % 2 == 0) {
           return false;
       }
       return true;
   }
   double getSquareRoot() {
       return sqrt(n);
   }
   bool isPrime() {
       if (n < 2) {
           return false;
       }
       for (int i = 2; i <= sqrt(n); i++) {
           if (n % i == 0) {
               return false;
           }
       }
       return true;
   }
   bool isPerfect() {
       int sum = 1;
       for (int i = 2; i <= sqrt(n); i++) {
           if (n % i == 0) {
               sum += i;
               if (i != n / i) {
                   sum += n / i;
               }
           }
       }
       if (sum == n) {
           return true;
       }
       return false;
   }
};
int main() {
   int n;
   cout << "Enter an integer: ";
   cin >> n;
   myInt x(n);
   cout << "Multiple of 7: " << x.isMultipleOf7() << endl;
   cout << "Multiple of 11: " << x.isMultipleOf11() << endl;
   cout << "Multiple of 13: " << x.isMultipleOf13() << endl;
   cout << "Sum of digits is odd: " << x.isSumOfDigitsOdd() << endl;
   cout << "Square root: " << x.getSquareRoot() << endl;
   cout << "Prime: " << x.isPrime() << endl;
   cout << "Perfect: " << x.isPerfect() << endl;
   return 0;
}```

Know more about C++ here,

https://brainly.com/question/30101710

#SPJ11

# This RegEx is for the phone number. It'ss set for (XXX)-XXX-XXXX - don't change it!
pReg = re.compile(r'\d{3}-\d{3}-\d{4}')
# Now make two regexes of your own. One is for the email addresses and another
# is for dates.
# The dates will follow the MM/DD/YYYY format. Note that some dates may not
# need to use all of their possible characters. For example, 2/2/2020 fits the
# format, but would get missed by a RegEx looking for MM/DD/YYYY EXPLICITLY.
# Now, the .txt file needs to be checked using the regexes we created. I will
# give you the one for phone numbers to get you started.
# Remember to copy the search file to the clipboard before running the program.
info = str(pyperclip.paste())
matchlist = []
matchObject = pReg.findall(info)
print()
print('Phone numbers:')
for x in matchObject:
print(x)
print()
# Now that you have been given this example, search the text on the
# clipboard for emails and dates using your own regexes. Print the
# results to the screen.
print ('\nHmmm ... I wonder what\'s significant about the dates.') # DO NOT CHANGE.

Answers

The updated version of the code that includes regular expressions for email addresses and dates is:

import re

import pyperclip

# Regular expression for phone numbers (already provided)

pReg = re.compile(r'\d{3}-\d{3}-\d{4}')

# Regular expression for email addresses

emailReg = re.compile(r'\b[A-Za-z0-9._%+-]+(at)[A-Za-z0-9.-]+\.[A-Za-z]{2,}\b')

# Regular expression for dates (MM/DD/YYYY format)

dateReg = re.compile(r'\b\d{1,2}/\d{1,2}/\d{4}\b')

# Retrieve the text from the clipboard

info = str(pyperclip.paste())

# Find phone numbers in the text

matchObject = pReg.findall(info)

print('Phone numbers:')

for x in matchObject:

   print(x)

print()

# Find email addresses in the text

matchObject = emailReg.findall(info)

print('Email addresses:')

for x in matchObject:

   print(x)

print()

# Find dates in the text

matchObject = dateReg.findall(info)

print('Dates:')

for x in matchObject:

   print(x)

print()

In this updated code, I've added two more regular expressions: emailReg for matching email addresses and dateReg for matching dates in the MM/DD/YYYY format. The code uses the findall method to find all occurrences of matches for each regular expression in the text retrieved from the clipboard.

After finding matches for each pattern, the code prints the results to the screen. Phone numbers are printed first, followed by email addresses, and then dates.

You can copy the text you want to search to the clipboard and then run the program to see the phone numbers, email addresses, and dates that match the respective regular expressions.

Note change 'at' with its symbol before running

You can learn more about regular expressions at

https://brainly.com/question/27805410

#SPJ11

What is an information system? 2. Explain Computer-based information systems 3. Differentiate between Electronic and Mobile Commerce

Answers

An Information System (IS) can be defined as a system that includes the collection, storage, analysis, and distribution of information. Computer-Based Information SystemComputer-based Information Systems (CBIS) are those information systems that rely on the use of computers and technology for their operation.

Computer-Based Information SystemComputer-based Information Systems (CBIS) are those information systems that rely on the use of computers and technology for their operation.

They rely on databases, software applications, and networking for storing, processing, and distributing information. They help organizations in making decisions, providing information, and communicating with other organizations.

Difference between Electronic and Mobile CommerceElectronic Commerce (e-commerce) refers to the buying and selling of goods and services over the internet. E-commerce transactions can be conducted using various technologies such as email, online catalogs, shopping carts, and payment gateways.

Mobile Commerce (m-commerce) refers to the buying and selling of goods and services using mobile devices such as smartphones, tablets, and other portable devices. M-commerce transactions can be conducted using mobile applications or mobile browsers.

In conclusion, Information Systems (IS) are systems that are used to collect, store, analyze, and distribute information. Computer-Based Information Systems (CBIS) rely on computers and technology for their operation, while Electronic Commerce (e-commerce) refers to the buying and selling of goods and services over the internet, and Mobile Commerce (m-commerce) refers to the buying and selling of goods and services using mobile devices such as smartphones, tablets, and other portable devices.

To know more about software applications visit:

brainly.com/question/14612162

#SPJ11

Implement an object named: Name
It has two attributes: firstName and lastName
They are private instance variables, of type String
Default for firstName should be "Ruby"; the lastName should be "Jewel"
Have setters and getters: setFirstName(), getFirstName(), setLastName(), getLastName()
Write the method toString() that returns "firstName lastName"
Write the method lastFirst() that returns "lastName, firstName"
Provide two constructors: Name() and Name(String firstName, String lastName).
Optionally a constructor Name(Name name).
>>>>>>>>>>>>>Write a main method to test the class.
PROBLEM #2: (2 points)
Implement an object named: Student
It has attributes: name (Name), id (int), major (String)
They are private instance variables
Default for id is 99999, major "Computer Science"
Have setters and getters: setName(), getName(), setId(), getId(), setMajor(), and getMajor()
Write the method toString() that returns
Student Name: firstName lastName
Student ID: id
Student Major: major
HINT: new line "\n"
Provide three constructors:
Student()
Student(Name name, int id, String major)
Student(String firstName, String lastName, int id, String major)
>>>>>>>>>>>>>>>>Write a main method to test the class.
PROBLEM #3 (6 points)
Add a class variable named size, to the Student class that counts the number of students created
private static int size = 0; //Reference: To distinguish between instance and static variables and methods ( chapter 9 section 7).
Create a class Address
addressLine1: String
addressLine2: String
Default for addressLine1 is "123 Success Street" and addressLine2 is "Goldville CA 91111"
setters and getters OR mutators and accessors: setAddressLine1(), get AddressLine1(), setAddressLine2(), get AddressLine2()
Constructors - no arguments constructor AND a constructor that takes in 2 Strings.
toString()
Add the attribute Address to the Student class
Re-write the Constructors to include address; update all other methods; and test your code
Write a Test class (the Main class if using repl.it) to test all three classes. The Name, Student and Address.

Answers

The implementation of the classes Name, Student, and Address, along with a main method to test them:

```java

public class Main {

   public static void main(String[] args) {

       // Testing the Name class

       Name name = new Name();

       System.out.println(name.toString());

       System.out.println(name.lastFirst());

       // Testing the Student class

       Student student1 = new Student();

       System.out.println(student1.toString());

       Student student2 = new Student(new Name("John", "Doe"), 12345, "Computer Science");

       System.out.println(student2.toString());

       Student student3 = new Student("Jane", "Smith", 67890, "Mathematics");

       System.out.println(student3.toString());

       // Testing the Address class

       Address address = new Address();

       System.out.println(address.toString());

       Address customAddress = new Address("456 Success Avenue", "Silverville CA 92222");

       System.out.println(customAddress.toString());

   }

}

```

The main method is implemented to test the classes: Name, Student, and Address. It creates instances of these classes and calls their methods to verify their functionality.

For the Name class, it creates a Name object and prints the full name using the `toString()` method and the last name followed by a comma and the first name using the `lastFirst()` method.

For the Student class, it creates three instances of students: one using the default constructor, one with a custom Name object, ID, and major, and one with separate first name, last name, ID, and major. It then prints the student information using the `toString()` method.

For the Address class, it creates two instances: one using the default constructor and one with custom address lines. It then prints the address information using the `toString()` method.

The main method allows us to test the functionality of the implemented classes. It ensures that the constructors, setters, getters, and other methods work correctly and produce the expected outputs. By executing the main method, you can observe the outputs of the class instances, including names, IDs, majors, and addresses.

Learn more about Implementation  

brainly.com/question/13194949

#SPJ11

This incomplete program is used by the staff at an Idaho state park to calculate fees for overnight stays. The park offers basic campsites, RV campsites (with water and electric hook-ups), and cabins. Campsites and cabins that have a river view cost more than those with a prairie view as shown in the table below. If a visitor pays to stay 5 nights or more, there is a 10\% discount applied for all nights of their stay. The program assumes that the staff inputs correct values. However, if the stay type or view type is invalid, an error will print and no price will be printed. " Parallel Lists of stay types, prairie view prices, and river_view_prices stay_types = ["Basic", "RV", "Cabin"] praitie viow prices ={12,24,50} river_view prices =[21,31,60] disc pet =0.1 \& 108 discount for 5 days of more I Get user inputs for camp_site, view type, and stay length camp_site = input ("What type of campsite would you like (Basic, RV, (Cabin) ?") view type = input ("Would you like a river view (R) or a prairie view (E) ?") 1 Ask user how many nights they plan to stay and store in stay_length ?2? Answer A ??? total price =0 # Initialize total price to confirm a price was calculated " Seareh through stay_types list to find user's camp_site and calculate prices for c, a stay in enumerate (stay_types): it camp site a a_stay: # check for mateh 2?? Answer B ?p? # Prairie View # Parallel Lists of stay_types, prairie_view prices, and river_view prices stay types = ["Basic", "RV", "Cabin"] prairie, view prices =[12,24,50] river_view_prices =[21,31,60] disc pct =0.1 # 10% discount for 5 days or more # Get user inputs for camp site, view type, and stay length camp site = input ("What type of campsite would you like (Basic, RV, Cabin)?") view type = input("Would you like a river view (R) or a prairie view (P) ?") \# Ask user how many nights they plan to stay and store in stay length ??? Answer A ??? total price =0 # Initialize total price to confirm a price was calculated # Search through stay types list to find user's camp site and calculate prices for c, a stay in enumerate(stay types): if camp site = a stay: # check for match ??? Answer B ??? # Prairie view elif view type == "R": # River view total price ??? Answer C ??? if stay length >=5 : # Eor a stay of 5 days or more apply discount ??? Answer D ??? if total price ==0: # Inputs did not match and no price was calculated print ("Please recheck your inputs and try again") else: # Print price to the nearest dollar due to national coin shortage print ("Total Price for this stay is \$" ??? Answer E ??? ". ")

Answers

The program allows the user to input their campsite type, view type, and stay length, and calculates the total price based on the provided information.

Here is the modified and completed version of the program:

# Parallel Lists of stay types, prairie view prices, and river_view_prices

stay_types = ["Basic", "RV", "Cabin"]

prairie_view_prices = [12, 24, 50]

river_view_prices = [21, 31, 60]

discount_pct = 0.1  # 10% discount for 5 days or more

# Get user inputs for camp site, view type, and stay length

camp_site = input("What type of campsite would you like (Basic, RV, Cabin)? ")

view_type = input("Would you like a river view (R) or a prairie view (P)? ")

stay_length = int(input("How many nights do you plan to stay? "))

total_price = 0  # Initialize total price to confirm a price was calculated

# Search through stay_types list to find user's camp_site and calculate prices

for i, stay in enumerate(stay_types):

   if camp_site.lower() == stay.lower():  # check for match (case-insensitive)

       if view_type.lower() == "p":  # Prairie view

           total_price = prairie_view_prices[i] * stay_length

       elif view_type.lower() == "r":  # River view

           total_price = river_view_prices[i] * stay_length

       else:

           # Invalid view type

           print("Invalid view type. Please choose either 'P' or 'R'.")

           break

       if stay_length >= 5:

           # Apply discount for a stay of 5 days or more

           total_price -= total_price * discount_pct

       # Print price to the nearest dollar due to national coin shortage

       print(f"Total Price for this stay is ${round(total_price)}.")

       break

else:

   # Inputs did not match and no price was calculated

   print("Please recheck your inputs and try again.")

The program prompts the user for the campsite type, view type, and stay length.

It then searches for a match in the stay_types list and calculates the total price based on the corresponding prices and user inputs.

If the view type is invalid, an error message is printed.

If the stay length is 5 or more, a discount is applied.

The total price is then printed to the nearest dollar.

The program allows the user to input their campsite type, view type, and stay length, and calculates the total price based on the provided information. It also handles invalid inputs and applies discounts for longer stays.

To know more about Program, visit

brainly.com/question/30783869

#SPJ11

The AeroCar class is derived from Carand it overrides the setSpeed(double) member function. In the AeroCar setSpeed function, how can the Car setSpeed function be called?
a) ::setSpeed(newSpeed)
b) The Car setSpeed function cannot be called from the AeroCar::setSpeed function.
c) Car::setSpeed(newSpeed)
super::setSpeed(newSpeed)
d) Car::setSpeed()

Answers

It is possible to invoke the setSpeed function of the Car from inside the setSpeed function of the AeroCar by using the syntax "Car::setSpeed(newSpeed)".

When a derived class in C++ overrides a member function of its base class, it has the option to explicitly call the base class's version of that method. This is because both versions of the function are stored in the object's memory. In this example, since the AeroCar class is derived from the Car class and overrides the setSpeed method, it is able to invoke the setSpeed function of the Car class by using the scope resolution operator "::" together with the name of the base class and the name of the function. In other words, the AeroCar class is able to call the setSpeed function of the Car class.

As a result, the appropriate response is choice (c), which is "Car::setSpeed(newSpeed)". The setSpeed method that is defined in the Car class may be called from the AeroCar class using this syntax. The new speed can be sent in as an argument to the setSpeed function. By using this method, the AeroCar class is able to make use of the functionality that is offered by the setSpeed function that is supplied by the Car class, while at the same time implementing its own unique behaviour in the setSpeed override that is provided by the AeroCar class.

Learn more about object's memory here:

https://brainly.com/question/17329735

#SPJ11

key stretching is a mechanism that takes what would be weak keys and stretches them to make the system more secure against ma in the middle attacks.

Answers

Key stretching is a technique used in cryptography to make a possibly weak key, such as password or passphrase, more secure against a brute-force attack by increasing the resources it takes to test each possible key.

Passwords or passphrases created by humans are often short or predictable enough to allow password cracking, and key stretching is intended to make such attacks more difficult by complicating a basic step of trying a single password candidate. Key stretching techniques generally work by feeding the initial key into an algorithm that outputs an enhanced key. The enhanced key should be of sufficient size to make it infeasible to break by brute force (e.g. at least 128 bits). The overall algorithm used should be secure in the sense that there should be no known way of taking a shortcut that would make it possible to calculate the enhanced key with less processor work than by using the key stretching algorithm itself.

Key stretching techniques provide significant protection against offline password attacks, such as brute force attacks and rainbow table attacks. Bcrypt and PBKDF2 are key stretching techniques that help prevent brute force and rainbow table attacks. Bcrypt is a key stretching technique designed to protect against brute force attempts and is the best choice of the given answers. Another alternative is Password-Based Key Derivation Function 2 (PBKDF2). Both salt the password with additional bits. Passwords stored using Secure Hash Algorithm (SHA) only are easier to crack because they don’t use salts.

In summary, key stretching is a mechanism used in cryptography to convert short keys into longer keys, making it more difficult for attackers to crack passwords or passphrases. It is a technique used to increase the strength of stored passwords and prevent the success of some password attacks such as brute force attacks and rainbow table attacks. Key stretching techniques generally work by feeding the initial key into an algorithm that outputs an enhanced key, which should be of sufficient size to make it infeasible to break by brute force. Bcrypt and PBKDF2 are key stretching techniques that help prevent brute force and rainbow table attacks.

learn more about passwords here:

https://brainly.com/question/32892222

#SPJ11

dchp does not require each individual network to have a server. instead, a dhcp forwards requests and responses between a client and the server.

Answers

DHCP does not require each individual network to have a server.

How does DHCP handle requests and responses between clients and servers?

DHCP (Dynamic Host Configuration Protocol) operates by using a client-server model, where DHCP servers are responsible for providing IP addresses and network configuration information to clients. However, it is not necessary for each network to have a dedicated DHCP server. Instead, DHCP servers can be deployed at strategic points within a network infrastructure.

When a client needs an IP address or network configuration, it sends a DHCP request message. This message is broadcasted to the local network, and any available DHCP servers within the network receive the request. The DHCP server that receives the request then responds with a DHCP offer, providing the client with an available IP address and other configuration details.

The client selects one offer and sends a DHCP request message to accept the offer. Finally, the DHCP server acknowledges the client's request by sending a DHCP acknowledgment message, completing the process.

In this way, DHCP acts as an intermediary, forwarding requests and responses between clients and servers, ensuring efficient and dynamic allocation of IP addresses and network configuration information.

Learn more about DHCP

brainly.com/question/31678478

#SPJ11

which of the following is a characteristic of the best enterprise systems, according to experts? a. completely redesign user workflows b. eliminate the biggest pain points c. require drastic changes to user input and output d. customized, one-of-a-kind software

Answers

The best enterprise systems, according to experts, are characterized by b. eliminating the biggest pain points.

Enterprise systems are designed to streamline and optimize business processes, and one of their primary objectives is to address pain points that hinder productivity and efficiency. By identifying and eliminating the most significant pain points, organizations can enhance their operations and achieve better results.

When enterprise systems eliminate pain points, they often introduce improvements such as automation, integration of disparate systems, and real-time data analysis. These enhancements help minimize manual tasks, reduce errors, and provide valuable insights for decision-making.

Moreover, by focusing on pain points, enterprise systems can address the specific needs and challenges of an organization. They provide tailored solutions that target the areas where the business faces the most difficulties, leading to a more effective and impactful implementation.

In summary, the best enterprise systems prioritize the elimination of the biggest pain points to enhance productivity and efficiency, automate processes, integrate systems, and provide valuable insights for decision-making.

Learn more about Enterprise systems

brainly.com/question/32634490

#SPJ11

Self-assignment not permitted
firstStudent: 134 id number
copyFirstStudent: 5 id number
Destructor called
Destructor called
#include
using namespace std;
class Student {
public:
Student();
~Student();
void setIdNumber(int newIdNumber);
void Print() const;
Student& operator=(const Student& studentToCopy);
private:
int* idNumber;
};
Student::Student() {
idNumber = new int;
*idNumber = 0;
}
Student::~Student() {
cout << "Destructor called" << endl;
delete idNumber;
}
/* Your code goes here */ {
if (this != &studentToCopy) {
delete idNumber;
idNumber = new int;
*idNumber = *(studentToCopy.idNumber);
}
else {
cout << "Self-assignment not permitted" << endl;
}
return *this;
}
void Student::setIdNumber(int newIdNumber) {
*idNumber = newIdNumber;
}
void Student::Print() const {
cout << *idNumber << " id number" << endl;
}
int main(){
int idNumber;
Student firstStudent;
Student copyFirstStudent;
cin >> idNumber;
firstStudent.setIdNumber(idNumber);
firstStudent = firstStudent; // Test self-assignment
copyFirstStudent = firstStudent;
firstStudent.setIdNumber(134);
cout << "firstStudent: ";
firstStudent.Print();
cout << "copyFirstStudent: ";
copyFirstStudent.Print();
return 0;
}

Answers

The main issue in the given code is that it does not handle self-assignment properly. In the line "firstStudent = firstStudent;", the code performs self-assignment, which can lead to unexpected behavior and memory leaks. To fix this, a self-assignment check should be added to the assignment operator function. By comparing the memory addresses of the current object and the object being assigned, self-assignment can be detected and avoided. If self-assignment is detected, the function should simply return without performing any operations.

The provided code defines a class called "Student" that represents a student with an ID number. The class has a constructor, a destructor, member functions to set and print the ID number, and an assignment operator overload.

However, the code does not handle self-assignment properly in the assignment operator overload. When the line "firstStudent = firstStudent;" is executed, the assignment operator is called with the same object on both sides of the assignment. This results in self-assignment, which can lead to issues such as memory leaks and incorrect behavior.

To fix this, a self-assignment check should be added to the assignment operator function. This check ensures that the assignment is only performed when the objects being assigned are distinct. By comparing the memory addresses of the current object (referred to by "this") and the object being assigned (referred to by "studentToCopy"), self-assignment can be detected. If self-assignment is detected, the function should simply return without performing any operations.

By adding the self-assignment check, the code will avoid unnecessary operations and prevent potential issues that can arise from self-assignment.

Learn more about code

brainly.com/question/2094784

#SPJ11

Implement the following program to apply the key concepts that provides the basis of current and modern operating systems: protected memory, and multi-threading. a. 2 Threads: Player " X ", Player "O"; no collision/deadlock b. Print the board every time X or O is inside the mutex_lock c. Moves for X and O are automatic - using random motion d. Program ends - either X or O won the game: game over e. Use C \& Posix;

Answers

Implement two threads for Player "X" and Player "O" in C and POSIX ensuring thread safety and synchronized board printing. Enable automatic moves using random motion and terminate the program upon a win by either X or O.

To apply the key concepts of protected memory and multi-threading in this program, we will use C and POSIX. First, we create two threads, one for Player "X" and the other for Player "O". These threads will run concurrently, allowing both players to make moves simultaneously.

To prevent any conflicts or deadlocks between the threads, we need to use synchronization mechanisms such as mutex locks. We can use a mutex lock to ensure that only one thread can access and modify the game board at a time. Every time Player "X" or "O" makes a move, we print the updated board while inside the mutex lock to maintain consistency.

The moves for Player "X" and "O" are automatic and determined by random motion .This adds unpredictability to the game and simulates real gameplay scenarios. The program continues until either Player "X" or "O" wins the game, resulting in the termination of the program.

Learn more about POSIX

brainly.com/question/32265473

#SPJ11

We are given a binary tree. The task is to transform every left child node odd by subtracting one and even child node even by adding one to it. We have to write solutions in linear time complexity and constant space.
We are given an array of sizes ‘N’. The task is to count greater elements on the left side of each array element.

Answers

To count the number of greater elements on the left side of each element in the given array, we can use a Binary Search Tree (BST) to iterate through the array and maintain a count.

We can solve this problem efficiently by utilizing the properties of a Binary Search Trees (BST. The idea is to construct a BST while iterating through the array. For each element, we insert it into the BST and maintain a count of the number of elements greater than the current element encountered so far.

Initially, the count is zero. We start iterating from the leftmost element of the array. For each element, we insert it into the BST. If the element is greater than the current node in the BST, it means there are elements to the left of the current node that are smaller than the current element.

So, we increment the count by one. If the element is smaller than the current node, we move to the left subtree. If the element is equal to the current node, we move to the right subtree. We repeat this process until we reach the end of the array.

By following this approach, we can count the number of greater elements on the left side of each array element in a linear time complexity, as each element is inserted into the BST only once. The space complexity is constant because we are using the BST to keep track of the count, and it does not require additional space proportional to the size of the array.

Learn more about Binary Search Trees (BST)

brainly.com/question/31604741

#SPJ11

after reviewing the prohibited items list, do you feel that it is sufficient in preventing another attack?

Answers

The prohibited items list is an essential component in preventing cyber attacks, but it alone is NOT sufficient.

How  is this so?

Factors like TSA agent training, technology, and passenger vigilance contribute to airport security.

The TSA has implemented measures like increased screening, random searches, and armed officers.

However, terrorists may find ways to circumvent security. Passengers should report suspicious activity and be vigilant.

Other prevention methods include law enforcement cooperation, intelligence gathering, public awareness campaigns, and education. Taking a comprehensive approach strengthens security against terrorist attacks.

Learn more about attack at:

https://brainly.com/question/27665132

#SPJ4

Implement four versions of a function funProd that takes a positive integer n as input and returns the product of n and the sum of integers from 1 to and including n, using a for loop in funProd1, using a while loop in funProd2, using a do-while loop in funProd3, and using recursion in funProd4. Your output for the included test code should be:
funProd1(10) = 550
funProd2(10) = 550
funProd3(10) = 550
funProd4(10) = 550

Answers

The function `funProd` can be implemented in four different ways to calculate the product of a positive integer `n` and the sum of integers from 1 to `n`. These implementations can be done using a for loop (`funProd1`), a while loop (`funProd2`), a do-while loop (`funProd3`), and recursion (`funProd4`). The desired output for `funProd1(10)`, `funProd2(10)`, `funProd3(10)`, and `funProd4(10)` is 550.

To implement these versions of `funProd`, follow the steps below:

1. funProd1 using a for loop:

Initialize a variable `sum` to 0.Use a for loop to iterate from 1 to `n`.Within each iteration, add the current number to the `sum`.After the loop, return the product of `n` and `sum`.

2. funProd2 using a while loop:

Initialize a variable `sum` to 0 and a counter variable `i` to 1.Use a while loop with the condition `i <= n`.Within each iteration, add `i` to the `sum` and increment `i` by 1.After the loop, return the product of `n` and `sum`.

3. funProd3 using a do-while loop:

Initialize a variable `sum` to 0 and a counter variable `i` to 1.Use a do-while loop.Within each iteration, add `i` to the `sum` and increment `i` by 1.Continue the loop until `i` is greater than `n`.After the loop, return the product of `n` and `sum`.

4. funProd4 using recursion:

Define a recursive function `funProd4` that takes `n` as an argument.Base case: If `n` is 1, return 1.Recursive case: Return the product of `n` and the recursive call to `funProd4` with `n-1` as the argument.

The four versions of `funProd` can be implemented using different loop structures and recursion to calculate the product of `n` and the sum of integers from 1 to `n`. These implementations provide the same desired output of 550 for `funProd1(10)`, `funProd2(10)`, `funProd3(10)`, and `funProd4(10)`.

Learn more about Integer :

https://brainly.com/question/31067729

#SPJ11

Other Questions
Peter tries to avoid going to a party which he was invited to. To justify his absence he flips a coin and if the coin shows heads he goes. Otherwise, he rolls a die to give the party yet another chance. If the die lands on 6 , he goes. Otherwise, he stays home. If Peter ends up being at the party, what is the probability that the coin he flipped showed Heads? Which of the four following Lewis structures is expected to be the dominant Lewis structure for the CF2 molecule? O F--C--FO F--C--FO F--C--FO F==C--F Write a program that detects whether a given input is a PALINDROME assuming all spaces and punctuation are removed. A palindrome is the same both forwards and reversed For example "Madam, I'm Adam" is a palindrome. Notice capital letters do not matter also. Use Python. is an asymmetric cryptographic protocol that allows two parties to establish a shared key over an insecure channel. which of the following energy sources does the body rely on during short-term activities such as sprinting and resistance training? a)choline b)carbohydrates c)creatine phosphates d)fatty acids 2. Let L be the line in R 3 passing through the origin in the direction of the vector u=(2,1,0). Consider the following two linear transformations S:R 3 R 3given by the projection onto the xy-plane. That is, S(x,y,z)=(x,y,0). T:R 3 R 3given by the reflection along the line L. (a) Find the standard matrix for S. (b) Find the standard matrix for T. (c) Find the standard matrix for the composition TS of the linear transformation S followed by T. blem Cash budget-part 1 PrimeTime Sportswear is a custom imprinter that began operations six months ago. Sales have exceeded management's most optimistic projections. Sales are made on account and collected as follows: 60% in the month after the sale is made 14-4,and 35% in the second month after sale. Merchandise purchases and operating expenses are paid as follows: PrimeTime Sportswear's income statement budget for each of the next four months, newly revised to reflect the success of the firm, follows: Cash on hand June 30 is estimated to be $75,000. Collections of June 30 accounts receivable were estimated to be $40,000 in July and $30,000 in August. Payments of June 30 accounts payable and accrued expenses in July were estimated to be $48,000. Required: a. Prepare a cash budget for July. b. What is your advice to manaqement of PrimeTime Sportswear? n Cash budget The monthly cash budgets for the second quarter of 2022 follow (\$000 omitted) for Tuscano Mfg. Co. A minimum cash balance of $15,000 is required to start each month, and a $50,000 line of credit has been arranged with a local bank at a 16% interest rate. Required: Calculate the missing amounts. (Hint: The total cash available includes collections from customers for all three months, plus the beginning cash balance from January 1, 2022.) Omega Company purchased an office building in cash at a cost of $800,000 on January 1, 2015. Omega estimated that the building's life would be 20 years and the scrap value at the end of 20 years would be \$15,000. On January 1, 2016, the company made several expenditures; walls painted, floors refinished for $20,000, and installed additional pollution-control devices in the building for $45,000. With the new device, the life of the building extended by an additional 6 years. In 2019 , the company sold the factory building for $500,000 in cash. Make necessary journal entries for each case (assume the company uses double declining balance method) Direct Materials and Direct Labor Variance Analysis Shasta Fixture Company manufactures faucets in a small manufacturing facility. The faucets are made from brass, Manufacturing has 60 empiovees. Fach employee presently provides 35 hours of labor per week. Information about a production week is as follows: Required: Total standard cost per unit aboc. Round the cost per unit to two decimal places. - navarmine the direct materials pnce variance, direct materials ceantity vatance, and total direct ruterigls coit variance. Mound your anawers to the aeerest a negative number using a minus sign and an unfoverable variance as a postive number Problem 4. Determine a rule for generating the terms of the pequence that begins \( 1,3,4,8,15,27,50,92, \ldots, 5 \) and find the next four terms of the sequence. Looking at the below code snippet, is this code crror free and if so, what will it print to the console? If the code does have errors, then describe all syntax, run-time, and logic errors and how they may be fixed. (10pts) int [] array = new array [10]; for(int i=0;i { array [i]=12; for (int 1=0;i Energy from GTP drives translation. How many GTP molecules are hydrolyzed in the addition of one amino acid to a growing polypeptide chain during the elongation phase of translation? In which steps is this input of energy required? Show that the class of context free languages is closed under the concatenation operation (construction and proof). The construction should be quite simple. Using R code please.Calculate the sum j=0nr j, where r has been assigned the value 1.08, and compare with (1r n+1)/(1r), for n=10,20,30,40. Repeat for r=1.06. 2 Referring to the above question, use the quick formula to compute j=0nr j, for r=1.08, for all values of n between 1 and 100 . Store the 100 values in a vector. What is the volume of a container that contains 14.3 g of a substance having a density of 0.988 g/cm 3? A. 0.0691 cm 3B. 14.5 cm 3C. 14.1 cm 3D. 141 cm 3E. 691 cm 3Click Save and Submit to save and submit. Click Save All Answers to save all answers. Advanced C++) I need help to rewrite the following loop, so it uses square bracket notation (with [ and ] ) instead of the indirection operator.forr(inttxx==00;;xx Given template sequence [1,3,2] and [1,3,2], compute correlation with input sequence of 1,3,2,2,6,4,1,3,2,0,1,3 to produce output sequence. jane has a constant fear that she may be getting ill and is constantly preoccupied with her health. jane most likely has QUESTION TWO [25] 2.1 Describe the benefits of implementing Enterprise Risk Management and discuss the barriers / hindrances to the successful implementation of Enterprise Risk Management. 2.2 Analyse the significance of building survival in relation to business risk management. the name ""impressionism"" derives from a critics derogatory remark about a painting by a) claude monet. b)edgar degas. c)pierre-auguste renoir. d)mary cassatt.