Answer:
She shuld help her dad
Explanation:
Building a Prototype is the first step Lonni should take in the design process by helping.
What is a design process?You can use the design process as a method to divide complicated tasks into more manageable stages. Due to its role in enabling businesses to offer final products that clients need and require, it is widely used in construction, construction, and production.
It frequently uses new textures than the finished product, and it is typically less polished. While assisting her father with the unloading of groceries, Lonnie spills anything.
Prototypes are an important phase in the creation of an ultimate result. In order to better preserve the eggs, she chooses to create a new kind of carton, which will also allow the architect to test the effectiveness of the solution.
Learn more about design process, Here:
https://brainly.com/question/28221020
#SPJ2
Please try and solve this
How many 1/4 - inch divisions would there be in 1/2 inch?
How many 1/8 - inch divisions would there be in 1/4 inch?
How many 1/16 - inch divisions would there be in 1/4 inch?
Answer:
Many students coming into Woodworking 108 are bewildered by “all those little marks ... Parts of an inch will be referred to in fraction form instead of its decimal equivalent. ... on divisions of 2: 1” 2= ½”. ½” 2= ¼”. ¼” 2= 1/8”. 1/8” 2= 1/16”. 1/16” 2= 1/32” ... way is to realize there are 16/16 in an inch and count back 3 of the 1/16 ...
Explanation:
orphan record example?
Answer:
If we delete record number 15 in a primary table, but there's still a related table with the value of 15, we end up with an orphaned record. Here, the related table contains a foreign key value that doesn't exist in the primary key field of the primary table. This has resulted in an “orphaned record”.
Suppose users share a 1-Gbps link. Also, suppose each user requires 200 Mbps when transmitting, but each user only transmits 30 percent of the time.
a. (5 pts.) When circuit switching is used, how many users can be supported?
b. (5 pts.) For the remainder of this problem, suppose packet switching is used. What is the maximum number of users that can be supported if the required blocking probability is strictly less than 0.05 and what is the blocking probability with the determined maximum number of users?
Answer:
The answer is "5 users and 1 block".
Explanation:
In Option a:
Bandwidth total [tex]= 1-Gbps \times 1000[/tex]
[tex]= 1,000 \ Mbps[/tex]
Any User Requirement [tex]= 200 \ Mbps[/tex]
The method for calculating the number of approved users also is:
Now, calculate the price of each person for overall bandwidth and demands,
[tex]\text{Sponsored user amount} = \frac{\text{Bandwidth total}}{\text{Each user's requirement}}[/tex]
[tex]=\frac{1000}{200}\\\\=\frac{10}{2}\\\\= 5 \ users[/tex]
In Option b:
[tex]\text{blocking probability} = \frac{link}{\text{1-Gbps} = 10^9 \frac{bits}{sec}}[/tex]
[tex]\ let = 0.05 = \frac{100}{20} \\\\\text{blocking probability} = \frac{ 200 \times 10^6}{\frac{100}{20}}[/tex]
[tex]= \frac{ 200 \times 10^6 \times 20 }{100}\\\\= \frac{ 2 \times 10^6 \times 20 }{1}\\\\= 40 \times 10^6 \\\\[/tex]
mean user [tex]= 25 \times \frac{1}{20} \\\\[/tex]
[tex]= 1.25[/tex]
max user [tex]= \frac{10^9}{40 \times 10^6} \\\\[/tex]
[tex]= \frac{10^9}{4 \times 10^7} \\\\ = \frac{10^2}{4} \\\\ = \frac{100}{4} \\\\= 25 \\\\ =\ \ 1 \ \ block \\\\[/tex]
John’s father specifically asked him to get a magnetic disk from the store in his neighborhood. What should John buy?
what are three common operating systems
Types of operating systems
The three most common operating systems for personal computers are Microsoft Windows, macOS, and Linux.
Answer:Microsoft Windows, macOS, and Linux.
Explanation:
Sorry couldn’t bring down both group of answers
Answer:
the second one
Explanation:
check your URL
Really need help ASAP
Answer:
D
was there a picture cause that question is dumb if there wasn
Explanation:
What are some commands found in the Sort dialog box? Check all that apply.
add level
rename level
edit level
delete level
copy level
move up or down
Answer:
A. add level
D. Delete level
E. Copy level
F. Move up or down
Explanation:
I just did it on edg. 2020
Answer:
A, D, E, F
Explanation:
state two features of a word processor
Answer:
Some of the functions of word processing software include:
Creating, editing, saving and printing documents.
Copying, pasting, moving and deleting text within a document.
Formatting text, such as font type, bolding, underlining or italicizing.
Creating and editing tables.
Hope it will help you! !!!!!!!
What is the CPO of video games
Answer:
(Chief Privacy Officer) An individual who manages the privacy issues within an organization. Arising out of the privacy regulations in finance and healthcare in the late 1990s, the CPO position eventually crossed over to all industries. The CPO, typically an attorney, is involved with setting privacy policy which determines how much information should be collected and how much can be shared both inside and outside of the company. An organization's privacy policy is often stated on its website. See privacy and P3P.
Explanation:
Identify these devices based on whether they provide the user with input or output, or both.
Monitor
Projector
Touchscreen
Mouse
Keyboard
Answer:
Monitor - Output
Projector - Output
Touchscreen - Both
Mouse - Input
Keyboard - Input
Explanation:
A persuasive letter should begin with
facts and examples
a clear statement of position
expert opinions
counterarguments
Answer:
B.) A clear statement of position
im almost failing computer class✨✨ does anybody know the mistakes in all this code?
Answer:
I think it's the fact that the orange red color isn't a color code OR that's it's one word
Explanation:
which image type is a animated loop
A GIF is an animated loop.
Need help with this
Answer:
13:a. 15:c. 14:Unknown answer
VNNH in py story format?
Answer:
LIBBY
Explanation:
open ended format
5.4.7 Teenagers Code HS
Can someone help me with this? i currently have
if (age = 13){
println("Yes, you are a teenager.");
}else{
if (age <= 19){
println ("No, you are not a teenager.");
}
and anytime I type anything it always says yes so I'm confused.
Answer:
var teen = readInt("Are you a teen, if so what is your age? " );
if(teen >= 13 &&(teen < 19)){
println("Yes, you are a teenager.");
}else{
println("No, you are not a teenager.");
}
Explanation:
Hopefully this helps you :)
x = int ( input("what is your age ? "))
if x >= 13 and x <= 19:
print("yes you are a teenager")
else:
print("No, you are not a teenager")
The variable x is used to store the user input. it prompts the user to input his/her age.
The if/else statement is used to check if the user is a teenager or not. If the user's age is between 13 and 19, both inclusive the use will get a message "yes you are a teenager " and if otherwise the user will gets a message "No, you are not a teenager"
The bolded word in the codes are key words in python. Pay attention to indentation.
read more: https://brainly.com/question/12089897?referrer=searchResults
name the three basic storage device of a computer
which of these devices must be installed in every indevidual computing device on the network
Answer:
i nneed more info
Explanation:
how do i find the markup percentage
Match the internet services to the type of communication they provide.
I have the answer to the question being asked well explained in detail in the doc attached below. Kindly check the attachment.
Questions_ Match the internet services to the type of communication they provide.
I hope this helps
BTW PLATO
Explanation:
guys please help me with this it's timed
Answer:
what do i do
Explanation:
Choose the sentences that describe techniques of formatting text.
Olivia was sending out Thanksgiving Invitations to her relatives. She thought it would be best to make a card as an invitation. She gathered her
family and asked them to pose in front of the fireplace. She set her new DSLR camera on a timer with the automatic multiple shooting mode
and rushed by her family's side. The camera took multiple shots of the family.
She opened the best photo in her photo editing software. She changed the tone of the image to sepia to give the image a traditional feel. She
brightened the colors in the background. While editing she felt that the window on the side of the fireplace was disturbing the symmetry of the
photo. She cropped the window out of the image.
She opened her type tool and wrote in 'Happy Thanksgiving at the bottom of the image. She smoothed the edges of the text and changed its
color. She then placed the text on a rug and tilted it to create an effect that showed as if the text was written on the rug
She gave the photo some finishing touches and sent the invitations out through email to all her relatives.
I'm sorry if this answer has come to late.
Answer:
She opened her type tool and wrote in 'Happy Thanksgiving at the bottom of the image. She smoothed the edges of the text and changed its color. She then placed the text on a rug and tilted it to create an effect that showed as if the text was written on the rug.
Hope this helps!
She opened her type tool and typed 'Happy Thanksgiving.' She smoothed the text's edges and changed its color. She then positioned the text on a rug and tilted it to create the illusion that the text was written on the rug.
What is formatting text?Text formatting is a feature in word processors that allows you to change the appearance of a text, such as its size and color.
Most apps display these formatting options in the top toolbar and walk you through the same steps.
In computer science, formatted text, styled text, or rich text, as opposed to plain text, is digital text that contains styling information in addition to the minimum of semantic elements: colors, styles, sizes, and special HTML features.
The goal of formatting is to change the font style, size, color, and overall appearance of the text.
'Happy Thanksgiving,' she typed into her type tool. She rounded the edges of the text and changed its color. She then placed text on a rug and tilted it to give the impression that the text was written on the rug.
Thus, this shows the techniques of formatting text.
For more details regarding formatting, visit:
https://brainly.com/question/21934838
#SPJ5
While ________is the protocol used to view web pages, browsers also support protocols for functions such as transferring large files.
10 points
a HTML
b HTTP
c FTP
For a computer to be able to process data it needs to be converted to binary data.True or False
Answer:
I'm pretty sure that it's true.
The statement "For a computer to be able to process data, it needs to be converted to binary data" is true.
What is binary data?Binary data or binary codes are the codes that are a language used by a computer to read the data. The computer reads the data only in binary codes. They use “On” (1) and “Off” (0) to convey everything from webpages to Video games. This basically allows for computers to communicate in a simpler way by just using On/Off or 1's and 0's.
After the conversion of Analog to Digital Converter (ADC), the data is stored in a series of numbers encoded in binary mode (combinations of Zeros and Ones).
The on and off are electrical signals, which are on and off, to see everything in binary numbers.
Therefore, the statement is true.
To learn more about binary data, refer to the link:
https://brainly.com/question/27752107
#SPJ2
If you’re paid hourly and work 40 hours in one week how much overtime have you worked? 8 hours none $48 or $80
Answer: You said 40 Hours. So $40
So, Isn't it $48, Because How Do You Get 80?
Answer:
$80.
Explanation:
Just go with it.
the flag of the bahamas includes an equilateral triangle. the perimeter of the triangle is p=3s, where s is the side length. use your formula to find the dimensions of the flag in feet and the are in square feet when the perimeter of the triangle is 126 inches
Answer:
sides = 3.5 feet
area = 6.84 [tex]ft^{2}[/tex]
Explanation:
From the information provided in the question, this is a fairly simple algebraic equation. We are asked to solve for the length of the sides (s) which are all equal in length since this is an equilateral triangle and are given the value of p which is 126 inches. Now we simply plug-in this value for p and solve for s.
126 = 3s ... divide both sides by 3
42 = s
Since these are inches we can divide this value by 12 (12 inches = 1 foot) in order to find the length of s in feet.
42 / 12 = 3.5 feet
Now, we are also asked to find the area of the triangle which the equation for this is
[tex]A = \frac{1}{2} * base * height[/tex]
The base is 3.5 feet but in order to find the height we need to use pythagoreom theorem on half of the triangle which would be the following
[tex]h^{2} = a^{2} +b^{2}[/tex]
[tex]h^{2} = 3.5^{2} +(3.5/2)^{2}[/tex]
[tex]x^{2} = 12.25 + 1.75^{2}[/tex]
[tex]h^{2} = 15.3125[/tex] ... square root both sides
[tex]h = 3.91 ft[/tex]
Now we simply plug this into the area formula to calculate the area
[tex]A = \frac{1}{2} * base * height[/tex]
[tex]A = \frac{1}{2} * 3.5 * 3.91[/tex]
[tex]A = 6.84 ft^{2}[/tex]
Instructions
Write a loop that input words until the user enters STOP. After each input, the program should number each entry and print in this format:
+1: You entered
When stop is entered, the total number of words entered should be printed in this format:
All done. words entered.
Sample Run
Please enter the next word: cat
*1: You entered cat
Please enter the next word: iguana
#2: You entered iguana
Please enter the next word: zebra
#3: You entered zebra
Please enter the next word: dolphin
24: You entered dolphin
Please enter the next word: STOP
All done. 4 words entered.
i = 0
while True:
user_input = input("Please enter the next word: ")
if user_input == "STOP":
break
i += 1
print("#{}: You entered {}".format(i,user_input))
print("All done. {} words entered.".format(i))
First we set i equal to zero so that we can keep track of how many words we input.
We set while True so that its a continuous loop until a certain condition is met to break out of the loop.
user_input is set equal to whatever word the user enters.
our if statement tells us to break out of the while loop if the user inputs "STOP"
If the user does not enter STOP i is set equal to itself plus 1. This just means we add one to i for every new word entered.
Then we print whichever word is entered.
After the while loop, we print All done and the quantity of words entered.
Answer:
word = input("Please enter the next word: ")
count = 0
while word != "DONE":
count += 1
print("#{}: You entered the word {}".format(count, word))
word = input("Please enter the next word: ")
print("A total of " + str(count) + " words were entered.")
Explanation:
Assuming this is python, this should help!
About how many jobs in the United States require Microsoft expertise?
A. 300,000
B. 350,000
C. 400,000
D. 450,000
Jack wants to share the theme he created with others.
What file extension should he use?
In which folder would Word save his file by default?
Which file type would Word save his file by default?
Answer:
Jack wants to share the theme he created with others.
What file extension should he use?
✔ thmx
In which folder would Word save his file by default?
✔ Document Themes
Which file type would Word save his file by default?
✔ Office Theme
Explanation:
edge 2021