Answer: the programmer.
Explanation: I did the test you used the picture on
Answer:
whats THE ANSWER IS HER WRONG
Explanation:
If the VLOOKUP function is used to find an approximate match, what will it return if there is no exact match?
the largest value in the table
the smallest value in the table
O the largest value that is less than the lookup value
the smallest value that is greater than the lookup value
Answer:
Its C
Explanation:
The largest value that is less then the lookup value
Print the two-dimensional list mult_table by row and column. Hint: Use nested loops.
Sample output with input: '1 2 3,2 4 6,3 6 9':
1 | 2 | 3
2 | 4 | 6
3 | 6 | 9
Must be in Python
Answer:
m = int(input("Rows: "))
n = int(input("Columns:= "))
mult_table = []
for i in range(0,m):
mult_table += [0]
for i in range (0,m):
mult_table[i] = [0]*n
for i in range (0,m):
for j in range (0,n):
print ('Row:',i+1,'Column:',j+1,': ',end='')
mult_table[i][j] = int(input())
for i in range(0,m):
for j in range(0,n):
if not j == n-1:
print(str(mult_table[i][j])+" | ", end='')
else:
print(str(mult_table[i][j]), end='')
print(" ")
Explanation:
The next two lines prompt for rows and columns
m = int(input("Rows: "))
n = int(input("Columns:= "))
This line declares an empty list
mult_table = []
The following two iterations initializes the list
for i in range(0,m):
mult_table += [0]
for i in range (0,m):
mult_table[i] = [0]*n
The next iteration prompts and gets user inputs for rows and columns
for i in range (0,m):
for j in range (0,n):
print ('Row:',i+1,'Column:',j+1,': ',end='')
mult_table[i][j] = int(input())
The following iteration prints the list row by row
for i in range(0,m):
for j in range(0,n):
if not j == n-1:
print(str(mult_table[i][j])+" | ", end='')
else:
print(str(mult_table[i][j]), end='')
print(" ")
In this exercise we have to use the knowledge of computational language in python to describe a code, like this:
The code can be found in the attached image.
To make it easier the code can be found below as:
m = int(input("Rows: "))
n = int(input("Columns:= "))
mult_table = []
for i in range(0,m):
mult_table += [0]
for i in range (0,m):
mult_table[i] = [0]*n
for i in range (0,m):
for j in range (0,n):
print ('Row:',i+1,'Column:',j+1,': ',end='')
mult_table[i][j] = int(input())
for i in range(0,m):
for j in range(0,n):
if not j == n-1:
print(str(mult_table[i][j])+" | ", end='')
else:
print(str(mult_table[i][j]), end='')
print(" ")
See more about python at brainly.com/question/26104476
How is the Internet Simulator similar to the Internet?
Answer:
The internet simulator is similar to the internet because it connects multiple independent devices together to create a web of networks. the internet simulator is also not similar to the internet because the internet simulator is much slower than the actual internet because it transmits data bit by bit.
Explanation:
The Internet, as well as the Internet simulator, would be comparable in that they both connect many devices to establish communication. A further explanation is provided below.
Internet Simulator: It seems to be a technology meant to assist learners throughout obtaining practical learning or knowledge in addressing various difficulties associated with interconnected computing devices.Internet: A worldwide networking system that links computers all across the entire globe, is described as the internet.
Thus the above response is correct.
Learn more about the internet here:
https://brainly.com/question/17971707
how to write email abut new home your friend
Answer:
Start off with a greeting like Dear Sarah. Then you write a friendly body that tells about your home and describe it as much as you can and tell about what your bedroom theme is like and so on. Finally, top it off like a closing like Sincerely, Tessa.
Answer:
you start off by saying
Dear (name), talk about how your house is comforting and things like that... I hope thats what you were asking for.
1. Why Science and Technology is important in nation-building?
Answer: Technology, science and knowledge are important in modern contemporary society. ... Studies of technology and science provides students with insight into how different processes of knowledge are initiated and progressed, and how innovative technological processes are developed, employed and increase in importance.
Explanation: The role that science and technology has played in improving the life conditions across the globe is vivid, but the benefit has to been harvested maximum by all countries. Science and technology has made life a lot easier and also a lot better with the advancement of medicines and analysis on diseases.
Science and technology play a crucial role in nation-building for several reasons. Firstly, advancements in these fields drive economic growth by fostering innovation, leading to new industries and job opportunities.
Secondly, they improve the overall quality of life through better healthcare, communication, and infrastructure.
Additionally, scientific research and technological developments enhance a nation's global competitiveness and position it as a knowledge-based society.
Moreover, science and technology contribute to addressing societal challenges, such as environmental sustainability and resource management.
Know more about Science and technology:
https://brainly.com/question/1626729
#SPJ5
Fill in the blank
What is the output of this program?
age = 4
if age > 5
print("more")
else
print("less")
Output:
age = 4
if age > 5:
print("more")
else:
print("less")
Answer: Less
Explanation: 4 is less than 5, so it will print less. I just tried it out on PyCharm.
Use the drop-down menus to complete the statements explaining the creation and management of an outline in Word 2016. The Outline view allows a user to add, expand, and collapse content in the document. Headers can be promoted or demoted in the outline by using the directional arrows or . Level 1 headings will appear in the pane.
Answer:
Heading and subheading
shortcut keys
navigation
Explanation:
i got it wrong and it showed
Answer:
Use the drop-down menus to complete the statements explaining the creation and management of an outline in Word 2016.
The Outline view allows a user to add, expand, and collapse
✔ heading and subheading
content in the document.
Headers can be promoted or demoted in the outline by using the directional arrows or
✔ shortcut keys
.
Level 1 headings will appear in the
✔ Navigation
pane.
Explanation:
The birthday attacks are called so because we can only have 365 birthdays (oh well, excluding 2/29). So, if there are 366 people in a place at least two of them have the same birthday - thus causing collision(s). Same things happens in hash algorithm. The people in birthday attack is the same thing as
Answer:
The correct approach would be "the input in the hash algorithm".
Explanation:
The value that will also be determined because after value or importance is based seems to be hash. The birthday sometimes used measure the hash would have been the key. The algorithm would have a certain code as well as a pseudocode. Therefore the input upon whom hash would be evaluated is individuals.Can some one help me plz
Answer:
ONE
Explanation:
The output is one if x is equal to 9 % 2
Write a java program that accepts the ingredients for a recipe in cups and converts to ounces
Answer:
Explanation:
public static int cupsToOunces (int cups) {
int ounces = cups * 8;
return ounces;
}
This is a very simple Java method that takes in the number of cups in the recipe as a parameter, converts it to ounces, and then returns the number of ounces. It is very simple since 1 cup is equal to 8 ounces, therefore it simply takes the cups and multiplies it by 8 and saves that value in an int variable called ounces.
What do you mean by this statement,
“Life is not a grand harmony, Conflict exist. We must learn how to live with it, use it constructive and minimize it’s destructive aspect”.
Answer with Explanation:
The statement above means that life is not always about happy moments; rather, it also includes unhappy times which teaches us many lessons. People should be aware of this, so that they'd also look at the good side of unhappy/sad moments in life. For example, when a beloved person dies, it is natural for one to cry. However, it is also important to stand up after that experience and become even stronger. This is a constructive way of moving on with life. A destructive aspect would be, not being able to move on and being stuck on one's death without thinking about the future anymore.
The best explanation of the given statement is:
If there is mutual understanding, then this would help in the conflict resolution to minimize the destructive impact.What is Mutual Understanding?This refers to the ability of a person or multiple persons to be able to have different points of view but also to understand that one view is NOT absolute.
With this in mind, we can note that because life is not a grand harmony, there will always be conflict, but if there is mutual understanding, then this would help in the conflict resolution to minimize the destructive impact.
Read more about conflict resolution here:
https://brainly.com/question/2267795
What was the biggest problem with the earliest version of the internet in the late 1960’s?
Answer:
Google didn't exist
Explanation:
Google was born in 1998 so a bunch of things were a problem
You are going to send a document to a client, and you want to be absolutely sure that none of the formatting is lost. Which of these document formats would be best?
A Permissions
B Orientation
C Margins
D Location
Answer:
Explanation:
A because they would not ruin your work and they have to ask your permission if they want to edit it.
PLEASE HELP!!!
For this activity, you will create two designs for the same project. For example, you might choose to create a CD cover for your favorite band’s newest release, or you might want to design a menu for the local deli. No matter what you decide for your subject matter, the two designs must involve different media. One of these media will be an image-editing program, such as Inkscape. You will learn more about the basic tools available in Inkscape later in this lesson. The two designs should incorporate different techniques. For example, you might make one design abstract, while making the other more realistic. Be sure to save both of your designs. Scan or take a picture of the design that wasn’t created in an image-editing program. You will submit this item later in this lesson as your portfolio item. Select the link to access the Techniques Activity Rubric.
Answer:
I'm not exactly sure on what the question is, but from reading it, I determined that you'll be creating 2 different designs using Inkscape/Photoshop. I'm leaving 2 of my designs in here for you to use on your project. Unknown on what to do about the design that wasn't created in an image-editing program.
Why do you think there is activity even when you are not actively using network services?
Answer:
Every social media platform has an algorithm, and just because you aren't using it, doesn't mean others are not engaged!
Explanation:
a researcher is discourage from putting too many words in the research title.why?
An employee’s total weekly pay equals the hourly wage multiplied by the total number of regular hours, plus any overtime pay.
Overtime pay equals the total overtime hours multiplied by 1.5 times the hourly wage.
Write a program that takes as inputs the hourly wage, total regular hours, and total overtime hours and displays an employee’s total weekly pay.
Below is an example of the program inputs and output:
Enter the wage: $15.50
Enter the regular hours: 40
Enter the overtime hours: 12
The total weekly pay is $899.0
wage = float(input("Enter the wage: $"))
regular_hours = float(input("Enter the regular hours: "))
overtime_hours = float(input("Enter the overtime hours: "))
print(f"The total weekly pay is ${(regular_hours * wage) + ((wage*1.5) *overtime_hours)}")
I hope this helps!
write a dialogue between two friends who are debating on popularity or property
Answer:
example:
James said, " popularity isn't the important. "
David said, " It is ."
which of the following best describes compounds.
A. They can only be separated chemically
b. they are always liquid at room temperature
c. they contain the atoms of just one element
d. they have the same properties as their elements
Answer:
A.
Explanation:
WILL MARK QUICKEST CORRECT ANSWER AS BRAINLIEST 11 PTS
Gary says, “Ports are where data enter a network before it reaches a gateway. The data travel via transmission media.”
Explain why Gary is right or wrong.
A) Gary is wrong. Ports are where connectors attach to destinations, not where data enter the network.
B) Gary is wrong. Gateways block data, so data don’t enter through them.
C) Gary is right.
Answer: Gary is wrong. Data do not travel via transmission media.
Answer:
the answer is Gary is wrong. Ports are where connectors attach to destinations, not where data enter the network.
Explanation:
correct on ed
Which questions do you need to ask yourself when preparing for a presentation?
Answer:
What do I want to transmit?
Why am I going to present this topic?
What is my believe about this topic?
Who am i going to speak to?
What do I need to work on to convey successfully the topic?(structure, tools, abilities, visual tools)
Explanation:
These are the most important questions, first of all because you have to start with why you are doing the presentation, and what will you do to make the presentation part of your beliefs.
3.
State and explain any Three elements of control unit
Answer:
There are two types of control units: Hardwired control unit and Microprogrammable control unit.
Explanation:
The components of this unit are instruction registers, control signals within the CPU, control signals to/from the bus, control bus, input flags, and clock signals.
Answer:
The control unit (CU) is a component of a computer's central processing unit (CPU) that directs the operation of the processor. It tells the computer's memory, arithmetic and logic unit and input and output devices how to respond to the instructions that have been sent to the processor.
The three elements of a control unit are :
Memory or Storage Unit.a control unit.ALU(Arithmetic Logic Unit)Explanation:
Mark brainliest.
In a singing competition, there are 34 more men than women
Find the number of women participants if the total number of
participants is 128.
Answer:
94 women are there
Explanation:
it is easy subtraction you only have to 128-34
Answer:
You have to start with 128 and then you subtract 34. Subtract them together and you get 94 participants. Isn't it that simple?
Jose wants to convert his birth year from digital to binary. Which Python function should Jose use?
O bin(year)
O bin = year
O binary(year)
O digi(year)
The correct python function is bin() therefore,
bin(year) is the correct answer.
What is Chris Records LifePreneur Online Educational Training Program?
Answer:
LifePreneur stands for Lifesyle Entrepreneur. When you take the word lifestyle and entrepreneur to combine them together, you get the brand, LifePreneur. This is the concept behind Chris Record's LifePreneur company.
Lifepreneur is the long-awaited legacy project founded by online serial-entrepreneur Chris Record. Chris currently lives in scorching hot Las Vegas which is fitting because everything online he gets involved in goes big league. Chris has helped tens of thousands of people to start their own online business, and has a true passion for helping everyone succeed.
Lifepreneur is a membership program that you can join to get training in various aspects of online marketing, training and advice and investing, live in-person mentorship from Chris Record himself, and more. It is a membership program that you can sign up for free and it's designed to help you grow into more than just a business entrepreneur… A Lifepreneur.
More info : reddit's /r/LifePreneur
1. The trucks hauling asphalt have a maximum capacity of 5 US tons (10,000 lbs) 2. The standard road lane is 12 feet wide. 3. Asphalt weighs 150 lbs per cubic foot 4. Asphalt costs $200 per ton 5. Power and water utilities are run in a conduit pipe under the road as part of all road projects 6. Conduit pipe is available only in 24 ft. lengths - each length costs $500 7. There is one intersection for every mile of road a. a 1 mile road has 1 intersection b. a 2 mile road has 2 intersections c. a 2.99 mile road has 2 intersections 8. Stoplights cost $25,000 per light 9. Each intersection has two stoplights, plus one additional stoplight for each lane a. a 1 lane road has three stop lights at each intersection b. a 2 lane road has four stop lights at each intersection c. a 3 lane road has five stop lights at each intersection 10. Work days are 8-hour days 11. All workers are paid $25 per hour12. Crew members can complete an amount of work in a specified time according to the equation below: crewMember = 50 . miles . lanes/days Test Data Test #1 Given Inputs Length of road project (miles) : 2.75 Number of lanes 3Depth of asphalt (inches) 12 Days to complete project 30Expected Output - Amount of materials needed === Truckloads of Asphalt : 7841 Stoplights : le Conduit pipes : 605 Crew members needed : 14 = Cost of Materials ============ Cost of Asphalt : $7841000.ee Cost of Stoplights : $250000.00 Cost of Conduit pipes : $302500.ee Cost of Labor : $84882.ee - Total Cost of Project - Total cost of project : $8477500.ee
Answer:
please write in a better way, and make it easy for us to read.
What does the measurement tell you?
Planned value
Answer:
i think it is Planned Value is the approved value of the work to be completed in a given time. It is the value that you should have been earned as per the schedule. ... Total Planned Value for the project is known as Budget at Completion (BAC). Planned Value is also referred to as Budgeted Cost of Work Scheduled (BCWS).
Explanation:
im not sure tho srry if its wrong have a good day:)
What is this tool called?
*
Answer:
what tool?
Explanation:
After turning the volume all the way up on your speakers on your computer you still cannot hear any sound which of the following should be your next day? Should you replace your system speakers should you try to reinstall your sound card should you unplug your computer and plug it back in or should you check that your sound isn't muted?
Answer:
Shut your computer, and open it again. And if that doesn't work do it again
Explanation: The computer has done this before
What is the World Wide Web?
A.
an information system where each document is linked to all other documents
B.
a large worldwide network of interconnected computers
C.
the collection of all online content you can access from your computer
D.
a worldwide social media network
Answer:
A an information system where each document is linked to all other documents