Edhesive lesson practice 8.3, question 5

Edhesive Lesson Practice 8.3, Question 5

Answers

Answer 1

Answer:

3

Explanation:

Answer 2

Following are the correct python code to find the length of the given parameter value.

Python code to find length:

print(len("stuff"))#printing length

Output:

please find the attached file.

Program Explanation:

In the given python code a print method is used inside this a "len" method is used that accepts a string value in the parameter.Python has a built-in function called len(). It determines an object's length. A character length of a text string is returned by LEN.

Find out more about the length method here:

brainly.com/question/13527881

Edhesive Lesson Practice 8.3, Question 5

Related Questions

Why did Stephen Hawking stop playing hide and seek?

Answers

Answer:

because she keeps using a metal detector.

true or false.


The format of a document to refers to the way all elements of document?​

Answers

Answer:

true Yan Po Ang sagot

Explanation:

Yan na Sana makayulong

describe what impact your personal vision could have your community or on society​

Answers

A personal vision statement is a mission statement of what you want to accomplish in your life, both personally and professionally. This statement can be used as a guide when determining the career to pursue, making important life decisions, planning how you'll accomplish goals, and realizing your life dreams.

My personal vision will have a positive impact on my community by solving the problems around my community and my society at large.

What is a personal vision?

A personal vision is a written description of your goals, strengths, and ambitions. It could perhaps be oriented towards one's long-term aspirations and could be focused on life or career goals.

As an educationist, my vision, persistence, and determination to study stem from a desire to excel in my work as an educator, as well as to inspire and serve as a role model for my community and the world at large.

Growing up in a typical setting taught me about the effects of educational reform on livelihood, economics, environment, and human existence. I learned as a youngster the bad consequences of not being educated and being illiterate owing to the fact that people cannot just afford the high cost of learning.

Since then, I've dedicated my life to educating the public and teaching students in my community and society as a whole. My vision is to raise awareness of the negative consequences of illiteracy in our society and to promote action to combat it by giving free education to students and the general public.

Learn more about vision here:

https://brainly.com/question/4269555

SPJ2

Using complete sentences post a detailed response to the following.

What audience are you thinking of targeting for the game you will design? Are you targeting an age group, an interest group, or a different kind of group? Describe your audience in detail, explaining why you think they would like to play your game.
please help me

Answers

Answer:

an interest group

Explanation:

When designing a video game I believe that the best target group would be an interest group. Focusing on a specific interest group will allow you to design a game, knowing that there are people truly passionate about that interest and who will play the game. Targeting an age group makes things difficult because you have to limit your creativity to that age group and even still there may not be much interest in that age group for your category of game. Therefore, an interest group is the best option and gives you the freedom to unlock your creativity without having to limit your game due to age concerns.

Emilio has created a document in Word and needs to print labels. He is shopping at a store and finds Avery labels
and another brand that is less expensive. What does Emilio need to do before buying the less expensive labels?
O He needs to make sure the number of labels is the same.
O He needs to make sure that the dimensions match the Avery labels.
O He needs to check to see if they are compatible with Word.
O He needs to check to see if Word has a setting for that label.

Answers

Answer:

He needs to check to see if they are compatible with Word

Explanation:

A label is a attachment to an object, with the aim of identifying the object such as the mail to address on an envelop, In MS Word, there several label templates to choose from, which are located under the Mailings tab

To create a label in MS Word, we have the following steps

1) Select Labels under the Mailings tab

2) Select the Options button in the Labels dialogue box, then select the label vendor and the product of the vendor to be used

3) Enter the address of the mail in the Address box after selecting the vendor

Therefore, Emilo being at the shopping center rathe then on his computer will only have access to check if the cheaper label is also compatible with MS Word, from the label vendor's specifications

100 Points!
Think of a problem in society that could use data to help solve it. Answer the following questions in at least 1 paragraph (5-7 sentences).

What is the problem?
What data would you need to collect in order to gather more information to help solve this problem?
How would you collect this data?
How would the use of a computer help to solve this problem ? (make sure you explain in depth here).

Answers

Answer:

Attached in img below, didn't lke my answer for some reason.

Can someone please type a code that makes a house in python and turtle graphics i need help

Answers

Answer:

import turtle  

turtle.speed(2)

#shape

turtle.forward(100)

turtle.left(90)

turtle.forward(100)

turtle.left(45)

turtle.forward(100)

turtle.left(90)

turtle.forward(100)

turtle.left(45)

turtle.forward(100)

turtle.left(90)

turtle.forward(100)

#door

turtle.left(90)

turtle.forward(50)

turtle.left(90)

turtle.forward(25)

turtle.left(90)

turtle.forward(50)

#windows

turtle.penup()

turtle.right(90)

turtle.forward(20)

turtle.right(90)

turtle.forward(20)

turtle.pendown()

turtle.forward(25)

turtle.left(90)

turtle.forward(40)

turtle.left(90)

turtle.forward(25)

turtle.left(90)

turtle.forward(40)

Explanation:

:)

Select the three reasons that the gaming industry is set to grow.

A) more colleges offering jobs in game design

B) a decrease in the average age of gamers

C) an expanding market on mobile phones

D) expanding markets in Asia

E) new accessories that will attract more players

Answers

The answers are A, C, E

Answer:

expanding markets in Asia, new accessories that will attract more players, an expanding market on mobile phones

Explanation:

decimal numbers is equivalent to binary 110

Answers

Answer:

yes it is

Explanation:

binary number is 1101110

. Create a java File call Sales.Java contains a Java program that prompts for reads in the sales for each of 5 salespeople in a company. It then prints out the id and amount of sales for each salesperson and the total sale. 2. Compute and print the average sale. 3. Find and print the maximum and minimum sale. 4. After the list, sum, average, max and min have been printed, ask the user to enter a value. Then print the id of each salesperson who exceeded that amount, and the amount of their sales. Also print the total number of salespeople whose sales exceeded the value entered. 5. Instead of always reading in 5 sales amounts, in the beginning ask the user for the number of sales people and then create an array that is just the right size. The program can then proceed as before

Answers

Answer:

The program is as follows:

import java.util.*;

public class Sales{

public static void main(String[] args) {

 Scanner input = new Scanner(System.in);

 int salesPeople;

 System.out.print("Number of Sales People: ");

 salesPeople = input.nextInt();

 int[] salesID = new int[salesPeople];

 float[] salesAmount = new float[salesPeople];

 float total = 0;

 for(int i = 0; i<salesPeople;i++){

     System.out.print("ID: ");      salesID[i] = input.nextInt();

     System.out.print("Amount: ");      salesAmount[i] = input.nextFloat();

     total+=salesAmount[i];  }

 System.out.println("ID\t\tAmount");

 for(int i = 0; i<salesPeople;i++){

     System.out.println(salesID[i]+"\t\t"+salesAmount[i]);  }

 System.out.println("Total Sales: "+total);

 System.out.println("Average Sales: "+total/salesPeople);

 Arrays.sort(salesAmount);

 System.out.println("Minimum Sales: "+salesAmount[0]);

 System.out.println("Maximum Sales: "+salesAmount[salesPeople-1]);

 float sales;

 System.out.print("Print records that exceed: ");      sales = input.nextFloat();

 System.out.println("\nID\t\tAmount");

 int count = 0;

 for(int i = 0; i<salesPeople;i++){

     if(salesAmount[i]>sales){

         System.out.println(salesID[i]+"\t\t"+salesAmount[i]);

         count++;      }  }

 System.out.print("Total sales records that exceed "+sales+" are: "+count);

}

}

Explanation:

See attachment for program source file where comments are used as explanation

An example of computer hardware is ? A. keyboard B. app C. web browser D. operating system

Answers

Answer:

D. Operating system

Explanation:

A keyboard is a secondary item like a mouse and is not apart of computer hardware and app is also not a computer hardware because its coding not hardware. Web Browser is a Internet thing not hardware.

Answer:

option A

Explanation:

Computer hardware is the physical parts or components of a computer, such as the monitor, mouse, keyboard.

SOMEONE HELP 60 POINTS!!!!! When creating business publications, these two factors must be determined before planning the layout.

Answers

Answer:Audience and Goals

Explanation:

Answer:

I hope This will help you... Please mark me as Brilliant

Please

Explanation:

You want to make sure you prepare thoroughly before starting a business, but realize that things will almost certainly go awry. To run a successful business, you must adapt to changing situations.

Conducting in-depth market research on your field and the demographics of your potential clientele is an important part of crafting a business plan. This involves running surveys, holding focus groups, and researching SEO and public data.

Before you start selling your product or service, you need to build up your brand and get a following of people who are ready to jump when you open your doors for business.

This article is for entrepreneurs who want to learn the basics steps of starting a new business.

Tasks like naming the business and creating a logo are obvious, but what about the less-heralded, equally important steps? Whether it's determining your business structure or crafting a detailed marketing strategy, the workload can quickly pile up. Rather than spinning your wheels and guessing at where to start, follow this 10-step checklist to transform your business from a lightbulb above your head to a real entity.

1. Refine your idea.

If you're thinking about starting a business, you likely already have an idea of what you want to sell online, or at least the market you want to enter. Do a quick search for existing companies in your chosen industry. Learn what current brand leaders are doing and figure out how you can do it better. If you think your business can deliver something other companies don't (or deliver the same thing, only faster and cheaper), or you've got a solid idea and are ready to create a business plan. 

Define your "why."

"In the words of Simon Sinek, 'always start with why,'" Glenn Gutek, CEO of Awake Consulting and Coaching, told Business News Daily. "It is good to know why you are launching your business. In this process, it may be wise to differentiate between [whether] the business serves a personal why or a marketplace why. When your why is focused on meeting a need in the marketplace, the scope of your business will always be larger than a business that is designed to serve a personal need." 

Consider franchising.

Another option is to open a franchise of an established company. The concept, brand following and business model are already in place; all you need is a good location and the means to fund your operation.

what do you understand by the terms:
I)input
ii)process
iii)storage
iv)output

Answers

an output device translate information processed by the computer into a form which you can understand.

input device are used to enter information such as letters, numbers, sounds or picture into a computer.

In cell L2, enter a formula using the IF and AND functions, as well as structured references to determine if Adam Moriarty can be a bunk leader. a. The logical test in the IF function should determine if the staff member’s Service Years is greater than 4 AND the staff member’s Leadership Training status is "Yes". Remember to use a structured reference to the Service Years and the Leadership Training columns. b. The function should return the text Yes if a staff member meets both of those criteria. c. The function should return the text No if a staff member meets none or only one of those criteria.

Answers

Answer:

Enter the following formula in L2

=IF(AND([Service Year]>4,[Leadership Training]="Yes"),"Yes","No")

Explanation:

Analyzing the formula:

[tex]= \to[/tex] Begin the formula with an equal to sign

IF [tex]\to[/tex] This indicates that the formula uses an "IF" function

AND [tex]\to[/tex] This indicates that there are at least 2 conditions in the function; all of which must be true for the function to return true.

The conditions in the formula are:

[Service Year]>4;  and [Leadership Training]="Yes"

Notice that the column names (service year and leadership training) are called and not the cell names (e.g. K2); this is what is referred to as structured referencing.

Having said that, both conditions must be true for the function to return true (because we use the AND clause to join both functions)

The possible results in the formula are:

"Yes","No"

If both conditions are true, then the value of L2 will be "Yes"

If otherwise, then the value of L2 will be "No"

What do you call a commercial transaction beyween a buisness and buisness thatis transactedd online?
A.B2B - commerce
B.B2.B commerce
C. B2b digital transaction
D.B2B e - commerce

E. Non of the above

Answers

Answer:

c.B2b digital transaction

Explanation:

yan lang po sana makatulong

When visiting or learning about other places, what new things have you experienced? Choose all that apply.
food and drink
music and art
languages
values and ideas
technology

Answers

This is a question that’s has no wrong or right answer, basically you just click whatever you’ve experienced.

Answer:

All of these answers

Explanation:

You are preparing to install Windows Server 2012 on a new server. The server has the following hardware: 2 TB RAM 16 64-bit Intel-VT processors 10 GB mirrored hard disk for the system partition You will use the server for the following server roles: File and Storage Services Print and Document Services Windows Deployment Services You want to select the minimum Windows Server 2012 edition to support the required roles and hardware. Which edition should you install

Answers

Answer:

The ideal edition of the Window you should install is Standard.

Explanation:

Customers that require a physical or moderately virtualized environment should choose the Standard edition. With each license, you may operate up to two virtual instances of Windows Server and get all of the same capabilities as the Datacenter edition. Standard version has the same processor plus CAL (Client Access License) licensing as Datacenter edition, with each license covering up to two physical processors on a single server.

With these features, the server is able to perform the roles file and storage services, print and document services, and Windows Deployment Services.

Therefore, the ideal edition of the Window you should install is Standard.

which of the following is the best example of an installation issue

Answers

Answer:

A user made an error while trying to set up a software program.

Answer:

A computer can't find the file that it needs to perform an operating system function. A computer displays error messages, and then the Blue Screen of Death appears. A user made an error while trying to set up a software program.

Explanation:

Which headphones are a better option, the HyperX Cloud Stinger or the Logitech G432

Answers

Answer:

The Logitech ones.

Explanation:

Surprisingly I've used all 3 of them and the Logitech ones are the one with not only the best sound quality. And the mic isn't horrible either.

Isa wants to find out if his co-worker Alexis is available for an event on Wednesday, February 10th. Which calendar
view should he use?

O Schedule View

O Day View

O Week View

O Appointment View


Please help ASAP!!!!!!!!!!!

Answers

Appoint view
Hope this helps

Using computers can cause problems for the health and safety of users. Name three
health issues and causes associated with your use of computers. For each issue describe a way
of minimizing the risk. *​

Answers

Answer:

Muscles

Obesity

Muscle and joint problems

In what way, if any, are scripting languages different from markup languages?

A) Markup languages tell the computer what content to present, while scripting languages make things run faster.

B) Markup languages tell a single computer what to do, while scripting languages help computers communicate with each other.

C) Scripting languages tell the computer what content to present, while markup languages make things run faster.

D) Scripting languages tell a single computer what to do, while markup languages help computers communicate with each other.

Answers

Answer:

Markup languages tell the computer what content to present, while scripting languages make things run faster. A

Answer:

It's most likely A in edge.

Explanation:

My father works in IT, and I am taking a Fundamentals of Dig. Media class. If I remember correctly, the lesson for markup languages said that markup is used for online documents, like Wiki for example. Thus, I believe it is A.

Why is computer called information processing maching???​

Answers

Since, the computer accepts raw data as input and converts into information by means of data processing, it is called information processing machine (IPM).

HOPE IT HELPS ❣️

Answer:

Since, the computer accepts raw data as input and converts into information by means of data processing, it is called information processing machine or IPM.

Explanation:

A large amount of data is stored in secondary storage is it true

Answers

Since it’s more cost efficient, it’s better to store more data in the secondary storage. Yes true!

A large amount of data is stored in secondary storage is true

Identify the error and write correct HTML program 5 Cyber Bullying Tips<\head>Don't Respond Talk to a trusted adult <|html>

Answers

Answer:

<html>

<head> Cyber Bullying Tips </head>

<body>

Don't Respond, Talk to a trusted adult

</body>

</html>

Explain the effects of disposing electronic equipments to the environment ​

Answers

Answer:

When electronics are improperly disposed and end up in landfills, toxic chemicals are released, impacting the earth's air, soil, water and ultimately, human health.

There are eight primitive data types in Java. If the the size of 4 different datatype sizes are as follows then what is maximum value they can store? Show using the chart as in our example.

Answers

Answer and Explanation:

The eight primitive data types in Java include:

byte , short , int , long , float , double , boolean and char.

By size of datatype we mean the amount of memory the data type occupies. For a 32-bit processor/CPU,

The size of int data type(with whole numbers from -2,147,483,648 to 2,147,483,647) in Java is 4 bytes

The size of byte data type is 1 byte

The size of short data type is 2 bytes

The size of long data type is 8 bytes

One type of emerging technology that is used to track packages, manage inventory, and even identify pets is _____.

ASCI
EPD
Smart Card
RFID

Answers

Answer:

rfid

Explanation:

................

Answer:

e

Explanation:

e

What is a simulation?

A) a computer-based program that tests knowledge in important areas

B) a computer-based program that can be used to solve problems

C) a computer-based program that designs other programs

D) a computer-based program that mimics a real-life event

Answers

the answer is D : a computer based program that mimics a real-life event

Answer:

a computer-based program that mimics a real-life event

Explanation:

Diana has created a graphic design portfolio for a major project. What kind of portfolio would increase Dlana's chances of getting selected?
OA
a portfolio with some case studies of her graphic design work
OB.
a portfolio with graphic designs in her favorite theme
Ос.
a portfolio containing contact numbers of references
OD.
a portfolio that emphasizes large images and many colors
OE. a portfolio that emphasizes her qualifications and experience

Answers

Answer:

Hello There!!

Explanation:

I believe the answer is O A. a portfolio with some case studies of her graphic design work.

hope this helps,have a great day!!

~Pinky~

Other Questions
1. Find 3 rational numbers between 1//3 and 1/5 How many Group 17 elements are in Period 3 of the Periodic Table? A) 1 B) 2 C) 3 D) 4 TIME REMAINING01:06:52Read the poem "Autumn" by Emily Dickinson.The morns are meeker than they were,The nuts are getting brown;The berry's cheek is plumper,The rose is out of town.The maple wears a gayer scarf,The field a scarlet gown.Lest I should be old-fashioned,I'll put a trinket on.Which statement best explains the central idea of the first stanza?Autumn is less enjoyable than summer.Autumn is the time to harvest fruit.Nature provides signs of autumn.Nature is inactive in autumn. What term describes the process of lowering the boiling point of a hydrocarbon by exposing it to different environmental treatments such as hydrogen enriched catalysts or high temperatures A pump is used to extract water from a reservoir and deliver it to another reservoir whose free surface elevation is 200 ft above that of the first. the total length of pipes required is 1000 ft. All pipes are 12 in. in diameter and are made of galvanized iron with relative roughness equal to 0.0005 (you may assume fully-rough flow). the pump performance curves suggest that the H-Q relationship is of the form: H_pump=665-0.051Q^2 (Q in ft) the expected flow rate the brake horsepower required to drive the pump (assume an efficiency of 78%). the location of pump inlet to avoid cavitation (assume the required NPSH=25 ft). 1. When two planets look the same, they are ? A .unusual B. dangerous C. different D. beautiful E. similar HELP please i need this done by thursday Write an equation to represent the relationship between x and y: Which of the following statements about drug treatment is TRUE?to bypass their time-release designto slow down the effect of the drugto make it easier to smoke the drugto make them easier to bake into brownies Can someone help me with this please ? The tub of a washer goes into its spin-dry cycle, starting from rest and reaching an angular speed of 3.0 rev/s in 13.0 s. At this point, the person doing the laundry opens the lid, and a safety switch turns off the washer. The tub slows to rest in 12.0 s. Through how many revolutions does the tub turn during this 25 s interval Electricity in the Industrial Revolution. Answer following questions for 25 points.1.) What did it do?2.) How did it change things?3.) Why was it so important? Find the y- intercept and x-intercept of the line. 4x-y=8 caculate the component of a force of 200 ns at a direction of 60 to the force Which form(s) of credit would be most appropriate for the receipt of a utility bill? (Select all that apply.) . Charge card b. Revolving credit (credit card) C. Installment credit d. Service credit e. Line of credit Who was the first Qin emperor? Which expression is equivalent to (x^-6/x^2)^31/x1/x^51/x^91/x^24 how can you reduce the size of icons on the Taskbar by using the control panel is there another method of doing the same using right click explain Options for attacking the high costs of items purchased from suppliers do not include Multiple Choice pressuring suppliers for more favorable prices. integrating backward into the business of high-cost suppliers and making the item in-house so as to better control the cost. switching to lower-priced substitute inputs. collaborating closely with suppliers to identify mutual cost-saving opportunities. raising prices to customers (in order to cover the high costs). Four playful mathematicians were eating lunch together at an outdoor cafe. They noticed a diamond-encrusted Rolex had been left behind at the table next to them, so they quickly looked around for the person who had vacated the table. They saw the owner of the watch driving away. "Quick, get the license plate!" urged one of the mathematicians, seeing that it was only a four-digit number.When the car had disappeared around the corner, they put together these characteristics they'd noticed about the number:The first said, "One of the digits is neither prime nor composite."The second contributed, "The digit in the hundreds place is three times the digit in the thousands place."The third added, "The digit in the ones place is four times greater than the digit in the tens place."The fourth piped up with the last bit of information. "The smallest prime number is in the thousands place. We have enough information to help us locate the owner of the watch."What number did the four playful mathematicians see on the license plate?