The ___________ method returns the length of an array.

append

input

add

len​

Answers

Answer 1

Answer:

d

Explanation:

The length() method returns the number of characters present in the string.


Related Questions

How is the central message of being true to oneself conveyed in the story?

Answers

The central message of being true to oneself is illustrated in the story as the character allowed his uniqueness to shine through.

You did not provide the story. Therefore, an overview of the central idea will be given. The central message of a story is the main idea that the author wants the readers to know.

The central message is also referred to as the theme. Since the central message is about being true to oneself, the character will respect the opinions of others but won't conform to stereotypes. Such a person allows their uniqueness to shine through.

Read related link on:

https://brainly.com/question/25582903

cual es la diferencia entre tala y poda

Answers

Answer:

talar es talar árboles

y podar podar sesped

A _______________ is a particular type of network that uses circuits that run over the Internet but that appears to the user to be a private network.

Answers

Answer:

A virtual privte network is a particular type of network that uses circuits that run over the Internet but that appears to the user to be a private network.

: Describe the type of gameplay seen during early video games (ex. Spacewar!, Pong).

Answers

Answer:

Computer scientists began building rudimentary games and simulations on mainframe computers in the 1950s and 1960s, with MIT's Spacewar! in 1962 being one of the first such games to be played with a video display. The first consumer-ready video game hardware arrived in the early 1970s, with the Magnavox Odyssey, the first home video game system, and the first arcade video games from Atari, Computer Space and Pong, the latter of which was later transformed into a home console version. Pong's success in arcades and at home prompted numerous firms to create clones of the game, resulting in a market contraction in 1978 owing to oversaturation and a lack of innovation.

what are overlapping geographical areas within a cellular network called?

Answers

Overlapping geographical areas within a cellular network is called cells

What is the difference between Label and value in excel?

Answers

Answer:

The main difference between the label and the value is that the label is what you see within the system itself (or also on the web form if the field can be used in such a feature). ... The value, on the other hand, is what systems read as the name of a field.

Hope it help and if it its correct please give brainliest  

Stay Safe And Healthy  

Thank You

what is the average gradient of the slope along the straight line CD

Answers

Answer:

is there a graph to go with this?

Explanation:

The average gradient of the slope along the straight-line CD is 0.05.

What is the average gradient?

The gradient of the straight line that passes through any two points on a curve is the average gradient between any two points. This is the curve's average gradient between points A and C.

The gradient between lines C and D.

Here, the horizontal distance between points C and D is 2 miles.

Difference in elevation is = 1500 -1000 = 500 ft.

Hence, the gradient is = change in vertical elevation / horizontal distance= 500/2 = 250 ft./mile

or we can take both as the same unit in feet, 1 mile is = 5280 feet. So 2 miles is = 5280 x 2 = 10560 ft.

Gradient is = 500/10560 = .05

Therefore, the graph's slope along the straight CD line has an average gradient of 0.05.

To learn more about average gradient, refer to the link:

https://brainly.com/question/29531399

#SPJ2

The question is incomplete. Your most probably complete question is given below: the graph is added.

"Depression is being colorblind and constantly told how colorful the world is.”

Answers

Depression is when they tell you how good it is to walk but you can’t walk

how are digital computer classified on different types​

Answers

Answer: we can sub-categorize digital computers as General Purpose Computer & Special Purpose Computer.

b. A customer is transferring $2500 from one account to another on Thursday, 4 January 2018. After clicking the next button, an error message is shown.
i.State ONE factor that could have led to an error caused by the customer.

ii.TWO factors that could have led to an error caused by the technology

answers please ​

Answers

Answer:

b

Explanation:

Which type of website would allow Evan, an avid traveler, to share photos and videos with his friends

Answers

Answer:

G00GLE Photos? I'm not sure what you mean.

Explanation:

Search engine Photos is the type of website would allow Evan, an avid traveller, to share photos and videos with his friends.

What is meant by website?

A website, often referred to as a web site, is a compilation of web pages and related content that is uploaded to at least one web server and given a common domain name. A group of World Wide Web pages that are often available online and connected to one another by a person, company, higher education institution, government, or other organization.

The primary objective of certain websites is to only present, disseminate, or display certain data or content online.

A website is a collection of connected web pages with a common domain name. The website can be made by anyone, including individuals, groups, and businesses. All websites are a part of the World Wide Web.

Thus, it is Search engine Photos.

For more details about website, click here:

https://brainly.com/question/19459381

#SPJ2

what should you consider when using a wireless keyboard with your home computer cyber awareness

Answers

A good practice is to protect data on your home wireless systems. What one should you consider when using a wireless keyboard with your home computer is  Reviewing and configuring the available security features, including encryption.

An individual need to protect their information when using wireless technology. It can be done through avoiding the use of non-Bluetooth-paired or unencrypted wireless computer peripherals.

The kind of information sometimes cause serious damage to national security in the event of unauthorized disclosure.

Learn more from

https://brainly.com/question/25349554

Write a program to input 6 numbers. After each number is input, print the biggest of the numbers entered so far.

Answers

Answer:

num1 = int(input("Enter a number: " ))

print("Largest: " + str(num1))

# num 2 #

num2 = int(input("Enter a number: "))

if num2 > num1:

print("Largest: " + str(num2))

else:

print("Largest: " + str(num1))

# num 3 #

num3 = int(input("Enter a number: "))

print("Largest: " + str(max(num1, num2, num3)))

# num 4 #

num4 = int(input("Enter a number: "))

print("Largest: " + str(max(num1, num2, num3, num4)))

# num 5 #

num5 = int(input("Enter a number: "))

print("Largest: " + str(max(num1, num2, num3, num4, num5)))

# num 6 #

num6 = int(input("Enter a number: "))

print("Largest: " + str(max(num1, num2, num3, num4, num5, num6)))  

Explanation:

In this exercise, using the knowledge of computational language in python, we have that this code will be written as:

The code is in the attached image.

We can write the python  as:

num1 = int(input("Enter a number: " ))

print("Largest: " + str(num1))

num2 = int(input("Enter a number: "))

if num2 > num1:

print("Largest: " + str(num2))

else:

print("Largest: " + str(num1))

num3 = int(input("Enter a number: "))

print("Largest: " + str(max(num1, num2, num3)))

num4 = int(input("Enter a number: "))

print("Largest: " + str(max(num1, num2, num3, num4)))

num5 = int(input("Enter a number: "))

print("Largest: " + str(max(num1, num2, num3, num4, num5)))

num6 = int(input("Enter a number: "))

print("Largest: " + str(max(num1, num2, num3, num4, num5, num6)))  

See more about python at brainly.com/question/13437928

Python converts your code into bytecode when you run your program. This process is an intermediate step in a process called.

Answers

Python first compiles your source code (. py file) into a format known as byte code . Compilation is simply a translation step and byte code is a lower level and platform-independent representation of your source code

Python converts your code into bytecode when you run your program. This process is an intermediate step in a process called Compilation.

The line of code returns the ASCII code.

ASCII, has the full form American Standard Code for Information Interchange. It consists of a 7-bit code in which every single bit represents a unique alphabet.

Python is a high-level computer programming language. It is dynamically used.

First, it does a compilation for a file with the extension `.pyc`

Python converts your code into bytecode when you run your program. This process is an intermediate step in a process called Compilation.

Learn more about Python code here:

https://brainly.com/question/34746850.

#SPJ3

1. Give a natural number x. Display the last digit of 3 at the power of x. 2. Give a natural three-digit number. Calculate the sum of the digits and check if the sum is perfectly square
in c++

Answers

susksjsjsjsnsjsjsjsjs

what is pascaline ?

Answers

Pascal's calculator is a mechanical calculator invented by Blaise Pascal in the mid 17th century. Pascal was led to develop a calculator by the laborious arithmetical calculations required by his father's work as the supervisor of taxes in Rouen.

also called Arithmetic Machine, the first calculator or adding machine to be produced in any quantity and actually used. The Pascaline was designed and built by the French mathematician-philosopher

How do Machine Learning (ML) and Artificial Intelligence (AI) technologies help businesses use their enterprise data effectively?

Answers

Machine learning and Artifical intelligence helps develop models which are capable of learning continously on its own , hence, progressively getting better based on the amount and correctness of the data. Hence, artifical intelligence and machine learning models helps enterprise to draw insightful pattern from their data, capable of driving enterprise growth.

Models created using these automation technology continously learn from enterprise data, which they convert to reasonable insight which can help enterprise deduce lapses in business and foster business growth.

Hence, machine learning and artificial intelligence helps put enterprise data into good use.

Learn more : https://brainly.com/question/15584994

Lauren is a network technician monitoring performance on the local area network (LAN). She becomes alarmed when the network utilization reaches 95 percent for a particular time of day. How does she know what the utilization is normally like

Answers

It uses network usage monitoring software to know the level of traffic on that local network.

We can arrive at this answer because:

Network monitoring is an important activity to avoid overloading or underutilizing a local network.This allows the network to be manipulated to promote good performance and provide adequate traffic to users.

To know the level of use of a network it is necessary to use network monitoring software. An example of this type of software is the Capsa Network Analyzer, which also allows the elaboration of strategies to increase, stabilize or decrease network utilization.

More information:

https://brainly.com/question/8118353

the commands to add transitions to slides is located on which tab of the ribbon?

Answers

Answer:

When looking at the tabs there will be a "Transitions" tab

________ consists of programs designed to work behind the scenes to handle detailed operating procedures.

Answers

The answer is System software

to allow excel to change the cell references in a formula or function from row to row or column to column as you fill with it, you must use an ________.

Answers

to allow excel to change the cell references in a formula or function from row to row or column to column as you fill with it, you must use an formula cells.

You must utilize a cell formula to allow excel to modify the cell references in a formula or function between row to row or column to column as you fill it out.

Cell formula and Excel:

A cell reference is a name for a cell or a group of cells on a worksheet that may be used in a formula to tell Microsoft Office Excel where to look for the values or data that the calculation should compute.

The cell function in Excel returns data about a cell in a spreadsheet. info type specifies the type of information to be returned.

Cell may obtain information such as the cell's address and filename, as well as specific information about the cell's formatting.

Find out more information about 'Cell formula'.

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

who is the father of computer?
a.jeff bezos
b.cgarles babagge
c.micky pointe
d.marlos carten​

Answers

Answer:

Explanation:

B.

True or false: The Internet and the World Wide Web are not synonymous. The WWW is just one part of the Internet, and its primary use is to correlate and disseminate information. The Internet includes the WWW and also other forms of communication systems such as email.

Answers

True or false: The Internet and the World Wide Web are not synonymous. The WWW is just one part of the Internet, and its primary use is to correlate and disseminate information. The Internet includes the WWW and also other forms of communication systems such as email.

Answer : True

CODEHS 3.5.4 Obi-Wan Says



You should ask the user for three pieces of information

You should confirm their name and how many droids and Wookiees they want to meet

You should confirm their name and how many droids and Wookiees they want to meet

Answers

The program receives inputs for the name, number of droids and wookiees a user wants and displays the information as a complete sentence. The program written in python 3 goes thus :

name = input('Enter name : ')

# prompts user of name

num_droid = int(input('number of droids : '))

#prompts for number of droids

num_wooks = int(input('number of wookiees : '))

#prompts for number of wookiees

print(name, ' wants to meet', num_droid, 'droids and',num_wooks , 'Wookiees' )

#displays the information as a complete sentence

A sample run of the program is attached

Learn more : https://brainly.com/question/25506437

Hey, can somebody convert this Pseudocode into a Python Program, I've been struggling to do so for a while.

Answers

Answer:

print("Enter a positive whole number: ")

NumberIn = int(input())

NumberOut = 0

Count = 0

while NumberIn > 0:

   Count = Count + 1

   PartValue = NumberIn % 2

   NumberIn = NumberIn // 2

   for i in range(1, Count - 1):

       PartValue = PartValue * 10

   NumberOut = NumberOut + PartValue

print("The result is: " + str(NumberOut))

Outputs:

Enter a positive whole number:  

22

The result is: 1011

Enter a positive whole number:  

29

The result is: 1111

Enter a positive whole number:  

-1

The result is: 0

Difference between web browser and search engine.​

Answers

Answer:

A search engine is like Bing, but a web browser is a browser you can search from anywhere in the world and end up with the same search results.

Explanation:

The reason most people refer to "filming" a video on a cell phone camera is that:

A) a smartphone creates film.

B) the video requires a filter.

C) the word is a holdover from when films were made.

D) the video will be converted to a film later.

Answers

Answer: C

Explanation:

obviously cellphones work digitally and do not produce actual film, nor is it likely it will be converted to film from digital (whats the point?)

Present your opinions about using robots to help with household routines.​

Answers

Answer:

I believe robots helping with household routines is great!  Robots hold have great  capability to assist senior 's. Robots can hand appropriate medicines to older adults on time. They can mop the floor super fat and super good. Additionally, there are robots that can lift people up and move them to a certain place!

Explanation:

which of the following are benefits of designing a scalable system? choose 3 options.

-guaranteed systems access for all users

- users may never know that a site has experienced tremendous growth

- ability to respond to user volume issues more quickly

- system will never need to grow again

-ability to maintain a high level of service for customers ​

Answers

I asked my brother since he’s kinda of tech geek and he said

The 1st, 3rd, and 5th answers are correct

Hope this helps and I hope my brother is not wrong.

When using ________ access, access to the data starts at the beginning of the file and proceeds through all the records to the end of the file.

Answers

When using sequential access, access to the data starts at the beginning of the file and proceeds through all the records to the end of the file.

Other Questions
when oxygen is unavailable during heavy exercise what process do muscle cells use for energy generation? Accessing logarithmic Matrix..Terminal sequence pairs = 1 0 - 83 - 32 5 - 128 define suspension with example: how many different types of nucleotides are found in nucleic acids The argument had been going on for nearly an hour. By now, the growl coming from Marcel's stomach was audible to his friends. Claudette had been asking for pizza this entire time, but Pablo would not budge. He repeatedly told them that they always settle for pizza, and this time he wanted to try the new Italian cafe and he would not budge for anything but cafe food. Marcel, tired of being interrupted by his gut, began to counter that a cafe did not have meal-sized portions, and by now he had gone from slightly hungry to extremely ravenous. However, Pablo and Claudette seemed to ignore Marcel's input and continued to bicker between the only two options they cared to consider. Then Marcel had a marvelous idea. First, he allowed his friends to tire themselves out arguing for a bit longer. When they finally took a breath, Marcel saw his chance. "You know, there is a new restaurant down the street, which offers a buffet where we can get pizza, cafe food, and anything else we might want." As expected, Pablo and Claudette used Marcel's talking point as a chance to catch their breath before going back to talking over one another. Pablo had been giving in to Claudette and her need for pizza for months now. It was always pizza because pizza was never an option at home and he knew this. Eating with Pablo and Marcel was Claudette's one time to eat something a little less healthy, so she was adamant to eat pizza. Claudette and Pablo were both stubborn, so when Marcel offered up the chance to try a new place that would satisfy what everyone wanted, it went in one ear and out the other. Marcel was prepared for this, but he also knew his two friends often had a delayed reaction to good news when they were arguing amongst themselves. After a few more minutes of going back and forth, Claudette and Pablo suddenly stopped. They both turned to Marcel, as if they just had a new idea."Hey, there is that new buffet place. Isn't it just down the road?" Marcel smiled as Pablo and Claudette came to an agreement to give the buffet places a try. As Claudette led them out the door, Marcel hid a smile.2Drag the tiles to the correct boxes to complete the pairs.Match the characters to the ways they develop the plot.MarcelPabloClaude What is 1/6 to the power of 3 An object is moving with an initial velocity of 3.3 m/s. It is then subject to a constant acceleration of 3.7 m/s2 for 10 s. How far will it have traveled during the time of its acceleration?I also need the complete Formula (Nothing left out) The ages of two people add up to 25 and their ratio is 2: 3. What is the age of the younger person? domain and range of y = x/(x+4) PLSSSSS HELP MEEEEEE DUE TODAY!!!!! how can you exercise your freedom in a responsible and beneficial way.( 5 )sentence what is the correct order of reasons to complete the proof?? The United States has a longstanding history of using ____________ to deal with people who abuse drugs. I think I will buy the red car, _____________ I will lease the blue one. What should you point out when demonstrating 2022 sentras confident handling and comfortable ride? can i just say that i wish my school had stuff like this, but they don't . Is there anybody else in an alternative or online school? like, I love them so much, but I just wish they had stuff like music and band... A TV has an original price of $499. Find the new price given a 10% increase. Find the slope of each line. Plzz help me plzzzz plzz Select the correct answer. Which figure of speech is used in the following sentence? Janets eyes were two bright emeralds. A. metaphor B. personification C. oxymoron D. simile