Write a program that generates a random number between 33 and 126, representing an ASCII code.

Answers

Answer 1

Using the knowledge in computational language in python it is possible to write a code that  that generates a random number between 33 and 126, representing an ASCII code.

Writting the code:

import random

# generating random number between 33 and 126

num = random.randint(33,126)

# finding the character associated with the number.

# finding hexadecimal version of the number

hexNum = hex(num)

# finding binary version of the number.

binaryNum = bin(num)

# printing the result.

print("Random number generated is ",num)

print("Character associated with the number is ",ascii)

print("Hexadecimal equivalent of the number  is ",hexNum)

print("Binary equivalent of the number is ",binaryNum)

See more about phyton at brainly.com/question/18502436

#SPJ1

Write A Program That Generates A Random Number Between 33 And 126, Representing An ASCII Code.

Related Questions

20. The safest way to pay online is with a
A. check.
B. debit card.
C. credit card.
D. wired transfer.

Answers

It is C. Credit cards….Credit card transactions are encrypted, which means the details are jumbled up and encoded.

Which category of elements is commonly used to make computer chips and solar cells due to their ability to conduct electricity only under certain conditions?.

Answers

The category of elements used to make computer chips and solar cells due to their ability to conduct electricity is metalloids

What are metalloids?

With no standard definitaion and concrete agreement on which element a metalloid is, metalloids are said to be a type of chemical which has a preponderance of properties in between, or that are a mixture of, those of metals and nonmetals.

Metalloids are widely used as alloys, biological agents, catalysts, glasses and optical storage media. Metalloids are also known to have applications in optoelectronics, semiconductors, pyrotechnics, and electronics etc.

Learn more on metalloids from:

https://brainly.com/question/6422662?referrer=searchResults

#SPJ4

use the xlookup function to look up the employee name in cell a20 (wagner) in the payroll data and return the specified information in row 20. ensure the return array includes overtime pay, gross pay, taxable pay, federal tax, fica and net pay.

Answers

The first match it discovers is what the XLOOKUP function delivers after searching a range or an array. XLOOKUP can return the closest (approximate) match if there isn't a match.

*XLOOKUP returns any blank cells it finds in the lookup array if it is omitted. XLOOKUP cannot return a reference to an entire table made up of numerous rows and columns; it can only return a reference to a single cell, row, or column. Additionally, it is restricted to users of Excel for Microsoft 365. While XLOOKUP defaults to an exact match, VLOOKUP defaults to the closest match. In VLOOKUP, you must enter FALSE as the fourth input to remedy that. One approach to obtain XLOOKUP is to upgrade to Office 365 since it is likely that only Office 365 customers will have access to it.

Learn more about Office here-

https://brainly.com/question/24187001

#SPJ4

​2. stadium seating there are three seating categories at a stadium. for a softball game, class a seats cost $15, class b seats cost $12, and class c seats cost $9. write a program that asks how many tickets for each class of seats were sold, then displays the amount of income generated. solving the stadium seating problem from ticket sales. format your dollar amount in a fixed-point notation with two decimal points and make sure the decimal point is always displayed.

Answers

When I was researching this online, I read that the total cost should be presented as $30.00 something rather than $300.00 if you enter (ticketsA = 10, ticketsB = 8, ticketsC = 6).


The decimal point is the dot that appears between the parts of a whole number and a fraction. The second place to the right of the decimal point, or the hundredths place, is used to round a decimal value to two decimal places.

#include <iostream>

#include <iomanip>

using namespace std;

int main()

{

   float A, B, C, ticketsA, ticketsB, ticketsC, total;

   A = 15;

   B = 12;

   C = 9;

   cout << "Enter how many class A tickets were sold" << endl;

   cin >> ticketsA;

   cout << "Enter how many class B tickets were sold" << endl;

   cin >> ticketsB;

   cout << "Enter how many class C tickets were sold" << endl;

   cin >> ticketsC;

   total = (A * ticketsA) + (B * ticketsB) + (C * ticketsC);

   cout << setprecision(2) << fixed;

   cout << "The total amount of income generated is $" << total << endl;

   return 0;

}

Learn more about ticket here-

https://brainly.com/question/14001767

#SPJ4

not answered 8.not answered 9.not answered 10.not answered 11.not answered 12.not answered question workspace check my work you've decided to build a new gaming computer and are researching which power supply to buy. which component in a high-end gaming computer is likely to draw the most power?

Answers

room to review my work You've made the decision to construct a new gaming PC and are looking into power supplies. VGA card The component that draws the most power on a high-end gaming PC is usually the +12V rail.

A graphics card, also known as a video card, display card, graphics adapter, GPU, VGA card or VGA card, video adapter, or display adapter, is an extension card that creates an output image feed for a display device, like a computer monitor. To distinguish them from integrated graphics, graphics cards are occasionally referred to as standalone or dedicated graphics cards. The main component of a graphics card is a graphics processing unit, however, the term "GPU" is occasionally used to refer to the graphics card as a whole.

Most graphics cards are not just limited to output for simple displays. Additional processing can be done on the graphics processing unit, which lightens the load on the central processor unit.

Learn more about VGA cards here:

https://brainly.com/question/15394336

#SPJ4

Which program is used to open files with an extension of PDF?

A.
any browser

B.
Microsoft PowerPoint

C.
a proprietary photo editor

D.
iTunes

Answers

Answer:

A. any browser

Explanation:

Microsoft PowerPoint opens and creates only .pptx files.

iTunes is obviously for music.

Complete the sentence

The protocol governing how a browser should handle web content is

HTML

HTTP​

Answers

Answer:i think html

Explanation:

hope it’s right

Answer:

HTTP

Explanation:

People in which computer science career design and supervise the manufacture and installation of computer systems? Pls, I have till tomorrow.

a
Programmer

b
Hardware engineer

c
User interface designer

d
Cybersecurity analyst

Answers

the answer to this question is b.

Answer:

A) Programmer

Explanation:

your company has hired an outside security firm to perform various tests of your network. during the vulnerability scan you will provide that company with logins for various systems to aid in their scan. what best describes this?

Answers

A privileged scan describes providing the company with logins for various systems to aid in their vulnerability scan.

What is vulnerability?

Vulnerability simply refers to any form of weakness, flaw, or defect that is found in a computer system, website, network, or software application, which can be exploited by an attacker or a hacker, in order to gain an unauthorized access and privileges to sensitive user data (information) that are stored in a computer system.

In Computer technology, a privileged scan can be defined as a process which involves granting the testers login details in order to enable them carry out a proper scan of their computer system, website, network, or software application (programs).

Read more on vulnerability here: https://brainly.com/question/17094626

#SPJ1

Complete Question:

Your company has hired an outside security firm to perform various tests of your network. during the vulnerability scan you will provide that company with logins for various systems to aid in their scan. what best describes this?

A white-box test

A privileged scan

An authenticated user scan

Creators of open source software usually encourage _____.
A. encryption
B. secrecy
C. green packaging
D. developers to improve the product

Answers

Answer:

D

They wouldn't make the software if the product included what's in the software

what are the similarities and differences between the internet protocol (ip) and the addressing rules our class made? would rules like ours or the ip work if they were secret?

Answers

The the similarities and differences between the internet protocol (ip) and the addressing rules our class made are:

Every computer and device connected to the Internet uses IP to connect and communicate.IP addresses are special numbers that are given to devices and translated to binary sequences.For devices on various networks to still be able to interact, all devices format the sender and receiver information in the same way.

What are Internet Protocol and protocol?

Known as a protocol or set of guidelines for routing, the Internet Protocol (IP).

The Internet Protocol (IP) is a protocol, or collection of guidelines, for addressing and routing data packets so they can move between networks and reach their intended location. The Internet divides data into smaller units known as packets for transmission.

Therefore, These consensus guidelines are known as protocols. These protocols are used to communicate over networks and make up the Internet as we know it.

Learn more about internet protocol from

https://brainly.com/question/17820678
#SPJ1

how could the seven-segment display driver be designed using a 4-to-16 decoder and logic gates rather than multiplexers?

Answers

A digital combinational logic circuit known as a digital or binary decoder can change one kind of digital code into another.

A particular decoder called a BCD to 7-segment display decoder may change binary coded decimals into a format that can be easily viewed on a 7-segment display. Four binary weighted address inputs (A0 to A3) are decoded to produce sixteen mutually exclusive outputs (Y0 to Y15). The device has two inputs that are input enable (E0 and E1). The outputs are forced to be HIGH when either input is HIGH. In order to break down any combination of inputs into a set of terms that are all set to "0" except for one term, decoders are just a group of logic gates that are organized in a specified fashion.

Learn more about input here-

https://brainly.com/question/13014455

#SPJ4

the internet protocol (ip) includes a rule that each message must include a source ip address and a destination ip address. what are the likely consequences of a computer sending a message that does not follow that ip rule? \text{i}istart text, i, end text. the administrator of the device will receive a message from the internet protocol authority (ipa) reminding them of the proper addressing format. \text{ii}iistart text, i, i, end text. the message will arrive at its destination more slowly since it will be forced to travel along slower network connections for violating the rules. \text{iii}iiistart text, i, i, i, end text. the message may not arrive at its destination at all.

Answers

Option 3 repercussions for a computer transmitting a message that violates that internet protocol (IP) regulation It's possible for the message to never reach its intended recipient.

An online or local network device can be recognized by its IP address, which is a special address. "Internet Protocol," or IP, is the name given to the set of guidelines defining the format of data transferred via a local or wide-area network.

IP addresses, which are used to identify devices on a network and provide location information and communication access, are essentially the means by which data may be transmitted between them. Various computers, routers, and websites need to be able to be distinguished on the internet. The way the internet functions depends heavily on IP addresses, which give a mechanism to do this. IP addresses can be categorized, and there are various sorts of IP addresses for each category.

Learn more about internet protocol (IP) here:

https://brainly.com/question/17820678

#SPJ4

How is the browser doing now?

Answers

it is doing well now

you have decided to install a new ethernet network adapter in your windows 11 desktop computer. after installing the card and booting to windows, you notice that you have no network connection. after looking in device manager, you see that the new network card was detected, but windows doesn't know what it is.

Answers

The new network card was discovered in device management, but since Windows doesn't recognize it, we need to boot into Safe Mode and remove the network driver. Is the better tool to make Windows properly load

Only the bare minimum background services necessary for Windows to boot and run are initialized when a machine boots in Safe Mode. You can then identify and remove the problematic driver from this mode. The BIOS/UEFI settings interface on some systems will allow you boot into Safe Mode, but you are unable to delete the driver that caused your computer to crash from there. Start-up Repair will check your computer for issues like damaged or missing system files, but it won't let you remove the problematic device driver, which will result in a crash. You may roll back your computer's restoration using System Restore.

Learn more about Windows here:

https://brainly.com/question/13502522

#SPJ4

multiple client switches and routers have been set up at a small military base. the network team decided to implement terminal access controller access-control system plus (tacacs ), along with kerberos, and an external lightweight directory access protocol (ldap) service. what is the primary reason tacacs was chosen for this?

Answers

To enable other administrators to effectively control numerous switches and routers on the local area network, a network administrator implemented a Terminal Access Controller Access Control System Plus (TACACS+) system (LAN).

These elements consist of: something you are aware of, such a personal identification number, password, or catchphrase (PIN) something you possess, like a smartcard or token. anything you are, like a fingerprint or other biometric. An authentication protocol called Terminal Access Controller Access Control System (TACACS) is used for remote communication with any server located within a UNIX network. The first certification is for the ticket that grants admission (known as the TGT). The ticket-granting service generates a second credential for the server the user is requesting access to after decrypting the first one.

Learn more about administration here-

https://brainly.com/question/28034788

#SPJ4

for any element in keyslist with a value greater than 40, print the corresponding value in itemslist, followed by a comma (no spaces). ex: if the input is: 32 105 101 35 10 20 30 40 the output is: 20,30,

Answers

Import the class indicated in the query, java.util.Scanner.

Arrays Key Value is a public class that is mentioned in the query.

Specified in the question. public static void main (String [] args)

as specified in the question, final int SIZE LIST = 4.

given in the query, int[] keysList = new int[SIZE LIST].

as specified in the question, int[] itemsList = new int[SIZE LIST].

the question's int I /citation.

keysList[0] = 13; / referred to in the query.

keysList[1] = 47; / referred to in the query.

listed in the question, keysList[2] = 71.

59; / Mentioned in the question, keysList[3]

items

List[0] = 12; /included in the answer choices

Listed in the question, List[1] = 36.

cited in the question, itemsList[2] = 72.

the answer is as follows: for(i=0;i(keysList.length);i++) /Loop to access all the elements of keysList array variable. itemsList[3] = 54; /other line to complete the solution.

Learn more about Query here-

https://brainly.com/question/16349023

#SPJ4

What do CAD, CAM, and 3D animation all have in common?

A.
they are all specific hardware that help to solve a problem in the business industry

B.
they are all specialized software that help to solve a problem in the business industry

C.
they are all specific software programs that are used strictly for entertainment purposes

D.
they are all specialized pieces of hardware that are used strictly for entertainment purposes

Answers

CAD, CAM, and 3D animation all are common as they are all specialized software that help to solve a problem in the business industry. The correct option is B.

What is CAD?

CAD, or computer-aided design and drafting (CADD), is a design and technical documentation technology that automates manual drafting.

CAD is an abbreviation for Computer-Aided Design, and CAM is an abbreviation for Computer-Aided Manufacturing, both of which are used to create things.

CAD/CAM software is used to create prototypes, finished products, and product production runs.

CAD, CAM, and 3D animation are all related because they are all specific software programs used in business industry.

Thus, the correct option is B.

For more details regarding CAD, visit:

https://brainly.com/question/12605103

#SPJ1

write down the features of spread sheet package​

Answers

Answer:

Features of Spreadsheet

Microsoft Excel is easy to learn and thus, it does not require any specialised training programme.

MS Excel basically provides an electronic spreadsheet where all the calculations can be done automatically through built in programs

Spreadsheets are required mainly for tabulation of data . It minimizes manual work and provides high degree of accuracy in results

It also provides multiple copies of the spreadsheets

It presents the information in the form of charts and graphics.

Uses

By default, it creates arrangement of data into columns and rows called cells .

The data that is input into the spreadsheet can be either in the form of numbers, strings or formulae.

The inbuilt programs allow you to change the appearance of the spreadsheet, including column width, row height, font colour and colour of the spreadsheet very easily .

You can choose to work with or print a whole spreadsheet or specify a particular area, called a range

What are the advantages of Algorithms?
Select one:
a. Algorithm follows a predefined path
b. It is independent of any programing language
c. All of the above
d. Easy to understand

Answers

The advantages of Algorithms is option c. All of the above

a. Algorithm follows a predefined path.b. It is independent of any programing languaged. Easy to understand.

What are the advantages of an algorithm?

The benefits that an algorithm offer is that It is simple to comprehend. A solution to a problem is represented step-by-step in an algorithm. Since the problem is divided into smaller components or steps when using an algorithm, it is simpler for the programmer to turn the algorithm into a working program.

Note that Algorithmic or computational thinking offers us a distinctive method for problem-solving, self-awareness, and the creation of novel and enhanced systems.

Learn more about Algorithms from

https://brainly.com/question/15802846
#SPJ1

Allie has noticed that people at her company spend a lot of time researching the reasons for and correcting errors in the data they must use for their job functions. Usually when a mistake is discovered, it has already been propagated into multiple places, requiring a considerable clean-up effort. Allie realizes that improving the quality of the data at her firm would change this situation by _____.

Answers

From the information given, it is right to infer that Allie realizes that improving the quality of the data at her firm would change this situation by increasing productivity.

What is the relationship between the quality of data and the level of productivity?

When quality improves, productivity improves as well. This is because waste and rework are eliminated, and inputs are used to their full potential. Higher productivity allows a company to lower its prices and obtain a competitive edge in terms of both price and quality.

This link extends to data-driven enterprises where choices are made 95% of the time based on metrics.

This suggests that the better the metrics or data, the better the decision-making quality, which leads to improved productivity.

Learn more about data and productivity:
https://brainly.com/question/25617823
#SPJ1

what are the three sections inside the parentheses of a for loop header typically used for? describe what each clause does to control the execution of the for loop.

Answers

Answer:

The first section initializes a loop variable

The second section puts an upper limit on the value of this loop counter to control the number of times the loop is executed

The third section determines how much the loop counter should be incremented by for the next iteration of the for loop

Explanation:

I presume this relates to C, C++, Java etc because Python has a totally different loop header structure

The first section initializes a loop variable

The second section puts an upper limit on the value of this loop counter to control the number of times the loop is executed

The third section determines how much the loop counter should be incremented by for the next iteration of the for loop

Ex:
for(int i = 0; i < 10; i++){

}
First section i =0 initializes the loop counter variable to 0
Second section i < 10 tells the loop to keep executing until loop counter becomes 9 because the next iteration will be at the value of 10 and loop terminates

The third section increments the loop counter by 1 for the next iteration of the loop

The loop will execute 10 times for each of the loop counter values 0, 1, 2,3, ,4 ,5, 6, 7, 8, 9

this project will create 2 classes: point2d and rectangletype. point2d represents a 2d-point with x and y values. rectangletype represents a rectangle with 2 points which represent opposite corners of a rectangle.

Answers

An abstract or user-defined data type is a class, as opposed to a built-in fundamental type like an int or a double.

/* The Point class Header file (Point.h) */

#ifndef POINT_H

#define POINT_H

class Point {

private:

  int x, y;  // Private data members

public:

  Point(int x = 0, int y = 0); // Constructor with default arguments

  int getX() const;  // Getter

  void setX(int x);  // Setter

  int getY() const;

  void setY(int y);

  void setXY(int x, int y);

  void print() const;

};

#endif

Learn more about Class here-

https://brainly.com/question/28212543

#SPJ4

as windows 10 is loading, assuming it is enabled, what will happen when f8 is pressed? a. gives the command prompt b. boot in safe mode with networking c. boot in safe mode d. advanced boot options screen appears

Answers

Answer:

D. Advanced boot options screen appears

As Windows 10 is loading, assuming it is enabled, advanced boot options screen appears. Hence option D is correct.

What is Windows 10?

Windows 10 is defined as a Microsoft operating system for laptops, tablets, embedded technology, and internet-connected gadgets. The user interface of Windows 10 is intended to change depending on the type of device being used and the various input methods. It provides two different user interface settings: a mouse and keyboard-optimized interface and a touchscreen-specific "Tablet mode."

From the Windows 11 or Windows 10 login screen, start Windows in Safe Mode. Launch the computer again. Click Power > Restart while holding down the Shift key at the sign-in screen. Select Troubleshoot > Advanced Options > Startup Settings > Restart from the Choose an Option screen that appears after the machine restarts.

Thus, as Windows 10 is loading, assuming it is enabled, advanced boot options screen appears. Hence option D is correct.

To learn more about Windows 10, refer to the link below:

https://brainly.com/question/28847407

#SPJ5

design a area class that has three overloaded methods to calculate the areas of circles, rectangles, and cylinders, and other methods necessary in the coding. assume that data for circles and cylinders are all doubles and data for rectangles are integers. code a test program areaapp by creating at least two different hard-coded data for each object for testing and display the object fields, and the computing result by calling tostring() or proper method. must understand what method overloading is before you start to work on this part. you may use static or no-static for method overloading.

Answers

Output is:

The square has a surface area of 16.0 sq units.

The rectangle's surface area is 120.0 square units.

The circle has an area of 94.985 square units.

The square of the circle's radius multiplied by PI's value produces the area of the circle. The square's area equals the sum of its sides.

Java program that uses method overloading to calculate the areas of triangles, rectangles, and circles Main

{

the driver code

void public static main (String[] args)

{

new CalculateArea(); CalculateArea ob; ob.area(4); ob.area(10,12); ob.area(5.5);

}

}

calculate-area in class

{

Space there (float x)

{

"The surface area of the square is "+Math.pow(x, 2)+" sq units,"

System.out.println;

}

Space there (float x, float y)

{

"The surface area of the rectangle is "+x*y+" sq units," says System.out.println;

}

Space there (double x)

{

double z=3.14*x*x*x;

"The surface area of the circle is "+z+" sq units," says System.out.println;

}

}

Learn more about rectangle here-

https://brainly.com/question/15019502

#SPJ4

Daniel's physician has told him that he needs to spend less time in his office chair because sitting for so long is causing him to have back pain. What ergonomic solution could help him?

Question 3 options:

wearing a wrist brace


a standing desk


moving his monitor closer to his eyes


using a speakerphone more often

Answers

Answer: a standing desk

Explanation: a standing desk would allow him variation between sitting and standing throughout his day, rather than just sitting all day.

high-level programming languages communicate with computers by interpreting or compiling program code sending text messages to specific computers translating machine code into program code using morse code and encrypted messages

Answers

High-level programming languages communicate with computers by A. interpreting or compiling program code

What is a High-Level Language?

This refers to the type of language that is used in computer programming that accepts inputs or commands from the programmer in human-readable form and then translates it to machine-readable code.

Hence, we can see that some examples of high-level languages are:

JavaPythonC++, etc

With this in mind, it is clear to see that the way in which high-level programming languages communicate with computers is through the medium of translation which involves the translation of the program code into machine code.

This translation involves the interpreting and compiling of the code and thus, it can be seen that option A is the correct answer as the high-level languages such as Java, Ruby, Python, C++, etc perform the function of interpreting the human code in a way that the machine or computer would understand.

Read more about high-level languages here:

https://brainly.com/question/27820939

#SPJ1

you will be installing windows server 2019 for a company that plans to consolidate many of their existing servers onto new servers that will run hyper-v. the old servers will be decommissioned and the services they hosted will run as vms on the new virtualization servers. you might be running dozens of vms on each hyper-v server. which edition of windows server 2019 should you install on the new virtualization servers?

Answers

The edition of windows server 2019 that you should install on the new virtualization servers is Datacenter.

What does "datacenter" mean?

This is known to be the division of an organization responsible for housing and maintaining the organization's mainframes, servers, and databases is known as the data center.

Note that When big, centralized IT operations were said to be prevalent, this division as well as all of the systems were housed in a single physical location, thereby giving rise to the moniker that is called "data center."

Therefore, it is used to store, move, as well as access digital information, data centers contain real or virtual servers that are connected internally and externally by networking and communication equipment. Like a personal computer but with higher power, each server has a processor, storage, as well as memory.

Learn more about Datacenter from

https://brainly.com/question/13441094
#SPJ1

i need help please with this sheet , i cant understand, please help me​

Answers

1. A Force that makes things move in a mechanical system
3. Magnitude and Direction
4. Velocity
5. A steel will will float on water If a piece of steel is less dense than water, it will float on the water. A bar of steel will sink because it has a greater density than water
6. Inertia
7. It is equivalent to the sum of the object's mass and its acceleration
8. Equilibrium
9. Weight - The force that gravity applies to an object
Mass- Mass is the amount of matter in an object
11. Buoyancy - The ability of something to float or rise when submerged in a fluid

I have been given a motherboard where the processor has a number of cores, how can i use the hog program to find out how many cpu cores are on the board?

Answers

To launch Task Manager, press Ctrl + Shift + Esc. To find out how many cores and logical processors your PC has, choose the Performance tab.

However, the judges' decision is as follows if you must have a champion but are too busy: For gaming, purchase the 6-core. If you wish, you can purchase an 8-core processor, but you shouldn't use it for gaming; you should have other plans for it that will make use of those extra cores. For gaming, six-core CPUs are ideal; they are also affordable and reliable for office work. Eight-core CPUs excel at every task. great for intense gaming and productivity work. Because ten or more core CPUs are very expensive, we only suggested them for people who rely on productivity work.

Learn more about Processor here-

https://brainly.com/question/28255343

#SPJ4

Other Questions
What happened to the population of cities in the period between the Civil War and the 1920s? It fluctuated, declining at first and then growing. It declined due to disease. It remained about the same. It grew because of job opportunities. Part a and part B help please its all one question that goes together incase the pic is confusing Calculate the volume of the cuboid shown below. Give your answer in cm. If your answer is a decimal, then round it to 1 d.p. Some industries or lower-order commodities are less sensitive to swings in capital cycles. Explain briefly why there is more risk and sensitivity to swings in the capital cycle with real estate. A research center poll showed that % of people believe that it is morally wrong to not report all income on tax returns. What is the probability that someone does not have this belief?. If x is a solution to the equation 3x12=24, select all the equations that also have x as a solution. Multiple select question. A) 15x60=120 B) 3x=12 C) 3x=36 D) x4=8 E) 12x12=24 Which two excerpts create a dreary mood in the passage? A wire is stretched so that its resistance becomes 16 times the initial value before stretching . The radius of the wire after stretching will be _____A) 1/4th of the initial value B) 4 times the initial valueC) 2 times the initial valueD) 1/2 times the initial value A delivery truck is transporting boxes of two sizes: large and small. The combined weight of a large box and a small box is 80 pounds. The truck is transporting 65 large boxes and 55 small boxes. If the truck is carrying a total of 4850 pounds in boxes, how much does each type of box weigh?Large box:____PoundsSmall box:____Pounds THE RAFFLE QUEEN1000 raffle tickets are sold for $3.00 each.There is one grand prize for $750 and twoconsolation prizes of $200 each. What is theexpected value of one ticket?STcoW given the following data and a 4-period weighted moving average. t at 1 13 2 20 3 14 4 17 5 19 supposed the weights of the four periods are 4, 5, 8, 11 for the oldest to newest periods, respectively. compute the 4-period weighted moving average in period 5. group of answer choices Two planes start from the same point and fly in opposite directions. The first plane is flying 30 mph slower than the second plane. In 3 h, the planes are 810 mi apart. Find the rate of each plane. hat he thinks that poverty is just a personal choice because we all have equal opportunities to succeed. john is engaging in group of answer choices justification of effort. counterattitudinal advocacy. dissonance reduction. seeking external justifications. which expression is equal to (-7)^2 x (-7)^5 c (-7)^-9 Hooke's Law for an elastic spring states that the distance a spring stretches varies directly as the force applied. If a force of 180 newtons stretches a spring 5 cm, how much will a force of 270 newtons stretch the same spring? find the coordinates of the midpoint of ab for a(2 5) and b(6 9) If the food handler has an infected wound or boil that is uncovered you must _____________________________.only utilize them in the kitchen, but do not allow them in the front of the houserestrict the foodhandler from working with any food or contact surfacesassign them to food preparation duties onlysend them home indefinitely Lao lives in china, where he has resided with his family for his entire life. Recently, he has begun experiencing symptoms of depression. Which symptom would he most likely demonstrate, given the cultural influences of his surroundings?. You will now plan your narrative essay using the Narrative Organizer, and you will write the introduction.Narrative Topic: In the short story "The Cask of Amontillado," the reader is never told what the exact insult was that caused Montresor to seek revenge against Fortunato. Write to tell what happened before the story begins in "The Cask of Amontillado." Please help!!!!!!!!!