____________________ is the measure of how quickly a font can be read

Answers

Answer 1

Readability is the measure of how quickly a font can be read. Readability is an important consideration when selecting a font for use in printed materials, such as books, magazines, and newspapers, as well as digital media, such as websites and mobile apps.

Several factors can impact readability, including font size, line spacing, and character spacing. Fonts that are too small or too tightly spaced can be difficult to read, while fonts that are too large or too widely spaced can be distracting. Additionally, fonts that use unusual or complex letter shapes can be more difficult to read than more traditional fonts.

Another important consideration for readability is the contrast between the font and the background. A font that is too light or too similar in color to the background can be difficult to read, while a font that is too dark or too contrasting can be harsh on the eyes.

Overall, readability is an important consideration for designers and publishers who want to ensure that their content is accessible and easy to read. By selecting fonts that are clear, legible, and appropriately sized and spaced, designers can help to improve the readability of their materials and make them more engaging and accessible to a wider audience.

To learn more about Readability formulas, visit:

https://brainly.com/question/28199721

#SPJ11


Related Questions

what is this called?

what is this called?

Answers

Answer:

Fender Champion 40

Explanation:

....

..

name the main of a computer

Answers

The main of a computer is the Console

After selecting the heading and opening the Style dialog box, Jemima now wants to open the Modify Style dialog box. How does she do this?

Answers

Answer:

The answer is given below

Explanation:

They are many different styles present in Microsoft word so as to fit the taste of the user. If the user is not satisfied with the style list presented in Microsoft word, the user can decide to modify the style to fit his/her requirement.

In office 16, to modify a style, on the home menu, navigate to the style gallery and right click on the style you wish to modify. Right click on modify and the modify style dialog box would open, and the user can make changes to the font size, spacing, paragraph e.t.c.

By clicking the heading one-drop down arrow

which computer belongs to the first generation?​

Answers

ENIAC (Electronic Numerical Integrator and Calculator .)

Research the CCMA and answer the following questions (worth 7.5 points each): 1. What is the cost to renew? 2. What is the website to renew through? 3. What is the duration of certification? 4. What is the process to renew?

Answers

The specific organization or context of CCMA is not mentioned in the question. Without further information, it is challenging to provide accurate answers regarding the cost to renew, the website to renew through, the duration of certification, and the process to renew.

To obtain the required information, it is recommended to research the specific CCMA organization or certification program in question and refer to their official website, documentation, or contact their relevant authorities for accurate and up-to-date information regarding renewal costs, duration, website, and renewal process.

CCMA stands for different organizations or programs in various fields, such as the Contact Centre Management Association, Canadian Construction Materials Centre, California Certified Medical Assistant, etc. Each organization or program may have different renewal procedures, costs, and websites. To find the accurate answers, it is necessary to identify the specific CCMA context and conduct research accordingly. Visiting the official website, reviewing certification guidelines, FAQs, or contacting the relevant authorities associated with the CCMA program will provide the most accurate and up-to-date information regarding the cost to renew, the website to renew through, the duration of certification, and the process to renew.

Learn more about website  here :

https://brainly.com/question/19459381

#SPJ11

you are the network administrator for a small company that implements nat to access the internet. however, you recently acquired five servers that must be accessible from outside your network. your isp has provided you with five additional registered ip addresses to support these new servers, but you don't want the public to access these servers directly. you want to place these servers behind your firewall on the inside network, yet still allow them to be accessible to the public from the outside. which method of nat translation should you implement for these servers? answer restricted dynamic static overloading

Answers

Static NAT should be used as the NAT translation technique for these servers.the servers would share an IP address and port, which can lead to conflicts and security problems.

A one-to-one mapping between a public IP address and a private IP address is produced via static NAT. In this scenario, a distinct public IP address would be given to each of the five servers and mapped to that address on the internal network. This enables the servers to remain firewall-protected while yet being reachable from outside.

Because it limits access from the outside to particular ports or IP addresses on the internal network, restricted NAT is inappropriate. Because dynamic NAT selects a public IP address from a pool of accessible addresses, which may vary each time a server makes a connection, it would not function. PAT, or port address translation, another name for NAT overloading,

Because it permits several devices to share a single public IP address and port number, it is ineffective. As a result, the servers would share an IP address and port, which can lead to conflicts and security problems.

learn more about IP address  here:

https://brainly.com/question/31026862

#SPJ4

write a QBASIC that ask length,breadth and height of room and calculate its area and volume.create a user-defined function to calculate area and sub programe to calculate volume​

Answers

Answer:

REM Program to calculate the area and volume of a room

DIM length, breadth, height, area, volume AS SINGLE

INPUT "Enter the length of the room: ", length

INPUT "Enter the breadth of the room: ", breadth

INPUT "Enter the height of the room: ", height

REM Call user-defined function to calculate area

area = calculateArea(length, breadth)

REM Call sub-program to calculate volume

CALL calculateVolume(length, breadth, height, volume)

PRINT "The area of the room is "; area; " square units."

PRINT "The volume of the room is "; volume; " cubic units."

END

REM User-defined function to calculate area

FUNCTION calculateArea(l, b)

   calculateArea = l * b

END FUNCTION

REM Sub-program to calculate volume

SUB calculateVolume(l, b, h, v)

   v = l * b * h

END SUB

Explanation:

The program first asks the user to enter the length, breadth, and height of the room. It then calls a user-defined function calculateArea to calculate the area of the room, which is stored in the area variable. The program then calls a sub-program calculateVolume to calculate the volume of the room, which is stored in the volume variable. Finally, the program prints the values of area and volume.

Note that the user-defined function calculateArea takes two parameters l and b which represent the length and breadth of the room respectively, and returns the product of l and b, which is the area of the room. The sub-program calculateVolume takes three parameters l, b, and h which represent the length, breadth, and height of the room respectively, and calculates the product of l, b, and h, which is the volume of the room. The volume is stored in the variable v, which is passed as a parameter to the sub-program.

The bus class simulates the activity of a bus. A bus moves back and forth along a single route, making stops along the way. The stops on the route are numbered consecutively starting from up to and including a number that is provided when the bus object is created. You may assume that the number of stops will always be greater than. The bus starts at the first stop and is initially heading toward the last stop. At each step of the simulation, the bus is at a particular stop and

Answers

The answer given below is  a possible implementation of the Bus class in Java.

What is bus?

A bus in computer and technology refers to a communication pathway or connection standard used to transfer data or information between different components or devices.

Here are a few examples:

System Bus

Expansion Bus

USB (Universal Serial Bus)

Data Bus

public class Bus {

   private int numStops;

   private int currentStop;

   private boolean headingTowardsLast;

   public Bus(int numStops) {

       this.numStops = numStops;

       this.currentStop = 1;

       this.headingTowardsLast = true;

   }

   public int getCurrentStop() {

       return currentStop;

   }

   public void move() {

       if (currentStop == 1) {

           headingTowardsLast = true;

       } else if (currentStop == numStops) {

           headingTowardsLast = false;

       }

       if (headingTowardsLast) {

           currentStop++;

       } else {

           currentStop--;

       }

   }

}

The Bus class has three instance variables: numStops, currentStop, and headingTowardsLast. numStops stores the total number of stops on the route, currentStop stores the index of the current stop that the bus is at, and headingTowardsLast indicates whether the bus is currently heading towards the last stop (i.e., true) or the first stop (i.e., false).

The constructor takes one argument, numStops, which is the number of stops on the route. It initializes currentStop to 1 and headingTowardsLast to true.

The getCurrentStop() method returns the index of the current stop.

The move() method updates the current stop and heading direction based on the current state of the bus. If the bus is at the first stop, it sets headingTowardsLast to true. If the bus is at the last stop, it sets headingTowardsLast to false. Then, depending on the current heading direction, it increments or decrements currentStop.

With this implementation, you can create instances of the Bus class and simulate their movement along the route by calling the move() method. You can retrieve the current stop index with the getCurrentStop() method. For example:

Bus bus1 = new Bus(3);

System.out.println(bus1.getCurrentStop()); // prints 1

bus1.move();

System.out.println(bus1.getCurrentStop()); // prints 2

bus1.move();

System.out.println(bus1.getCurrentStop()); // prints 3

bus1.move();

System.out.println(bus1.getCurrentStop()); // prints 2

bus1.move();

System.out.println(bus1.getCurrentStop()); // prints 1

This simulates a bus with a route that has 3 stops, moving back and forth along the route.

To know more about simulate visit:

https://brainly.com/question/28940547

#SPJ1

PLEASE-I'M STUCK!!!!!!!!!!!!!!!!!!!!!!
A keyboard and a scanner are examples of common devices associated with which of the four basic computer functions?

output

input

storage

process

Answers

Answer: Input is the answer.

Explain and elaborate Samsung organization as below:
1. Pay level and its strategy 2. Pay mix and its strategy 3. Pay
structure.

Answers

Samsung is a South Korean multinational electronics and mobile communication conglomerate with various businesses ranging from home appliances to semiconductors. It is headquartered in Seoul, South Korea, and has a global presence. This article examines Samsung's pay level, pay mix, and pay structure.

1. Pay level and its strategy
Samsung has a competitive pay level. The company provides an above-average pay level compared to the industry standard. Samsung's pay level strategy focuses on attracting and retaining highly skilled and talented employees, encouraging employee motivation, and promoting innovation, creativity, and productivity. The company provides various incentives and benefits such as bonuses, performance-based pay, health benefits, retirement plans, and employee discounts.

2. Pay mix and its strategy
Samsung's pay mix includes base salary, incentives, benefits, and stock options. The company uses a pay mix strategy that provides a balanced combination of fixed pay and variable pay. Samsung's pay mix strategy emphasizes performance-based pay, linking employee pay with their performance, and achieving organizational goals. This strategy encourages employees to work harder and smarter to increase their pay.

3. Pay structure
Samsung's pay structure is hierarchical, with different pay levels for different job levels. The company uses a job evaluation method to determine the pay level for each job. Samsung's pay structure emphasizes internal equity and external competitiveness. The company uses market-based pay rates to attract and retain talented employees. Samsung's pay structure provides opportunities for career development and advancement for employees.

In conclusion, Samsung's pay level, pay mix, and pay structure are designed to attract and retain highly skilled and talented employees, encourage employee motivation, promote innovation, creativity, and productivity, and achieve organizational goals. Samsung's pay strategy emphasizes performance-based pay, internal equity, and external competitiveness.

To learn about Samsung here:

https://brainly.com/question/31540320

#SPJ11

Most presentations use text: A. To draw attention to content
B. At a minimum
C. Without restraint
D. To maximize area and style

Answers

i think it’s c hope this helps

Your Programming Goal



Your team is going to write a program as part of a team. Your teacher may require you to come up with your own goal. If not, use the following goal.



You have been asked by a math teacher to write a program to process a pair of points. The program will find the distance between the points, the midpoint of the two points, and the slope between them.



Your Task



Plan your program. Meet with your team to plan the program. Assign a task to each member of the team. Record each person's name and their task.


Write the program.


Test your program. Be sure to test each function of your program.


Evaluate the performance of each member of the team. Describe what each member did and how it worked.


Record the project in a Word (or other word-processing) document, as described below.


Your Document's Sections



Part 1: Names


Your name


Your partners' names


Part 2: Goal


Describe the goal of your program


Part 3: Team Tasks


Give each person's name and their assigned task


Part 4: The Program


Copy and paste the program your team wrote


Part 5: The Output


Copy and paste the output; make sure you test each type of output


Part 6: Team Evaluation


Evaluate the performance of each member of your team

Answers

Writing a program as a team involves careful planning, collaboration, and effective communication to ensure the successful completion of the project.

Each team member should be assigned a specific task based on their strengths and expertise to maximize efficiency and productivity. For example, one member may be responsible for writing the code to calculate the distance between the points, while another member may handle the midpoint calculation.

Once the program is written, it is crucial to thoroughly test each function to ensure accuracy and functionality. This may involve creating a variety of test cases and scenarios to ensure that the program works as intended.

It is also important to evaluate each team member's performance and contributions to the project. This can help identify areas for improvement and ensure that each member feels valued and appreciated for their efforts.

Overall, successful teamwork requires a combination of technical skills, effective communication, and collaboration. By working together to achieve a common goal, teams can create high-quality programs that meet the needs of their clients and users.

For more questions like Communication click the link below:

https://brainly.com/question/22558440

#SPJ11

HELP !!! Prompt
What is formatting text?

Answers

Answer:

Formatting text is how something is specifically layed out. Specific style.

Explanation:

Answer: what u mean by that?

Do you ever wonder what types of media you will be using five years from now or when you graduate from college or a training program? How do you believe you will use digital media in your life?

For this assessment, you will create a concept map. A concept map is a graphic representation of a broad base of ideas or events. You will put yourself in the center of the concept map and have at least five branches from the center that show five different ways that you will use digital media. Below your concept map, explain each different way in detail. Use your imagination to describe why you believe that you will use digital media in these ways in the future. Remember that technology changes quickly and so does digital media. Keep in mind what we have discussed in this lesson.

You will include:

a concept map showing your future uses for digital media (at least five)
an explanation of each use
a description of the use

Upload your concept map that provides a detailed explanation of five different ways you will experience digital media in the future.

Answers

The  example of a concept map and the explanations for the uses of digital media.

Concept Map:

[You in the Center]

   Entertainment    Communication    Education    Information    Work

What is the training program?

Entertainment - I believe I will continue to use digital media for entertainment purposes such as watching movies, TV shows, and playing video games. With advancements in technology, I expect the quality and accessibility of digital entertainment to improve. Streaming services like Netflix and Hulu already offer an extensive library of content, and I believe this trend will continue to grow.

   Education - As someone who is currently in college, I have already seen how digital media can enhance the learning experience. I expect to continue using digital media for educational purposes, such as online courses, e-books, and educational apps. With the rise of artificial intelligence and machine learning, I also believe that digital media will play an increasingly important role in personalized learning.

Lastly, Work - With the growth of the digital economy, I expect to use digital media extensively for work-related purposes. This could include remote work, virtual meetings, and digital collaboration tools. I also expect to use digital media for job searching and career development, as well as for networking with other professionals.

Learn more about training program from

https://brainly.com/question/29926440

#SPJ1

Answer:

                                                 Concept Map

EntertainmentCommunicationEducationInformationWork

Entertainment - I believe digital media will remain a popular source of entertainment due to its convenience and accessibility. Streaming services like Netflix and online gaming have revolutionized how we consume entertainment, and advancements in technology will only improve the quality and accessibility of digital entertainment. Virtual and augmented reality may offer new ways to experience entertainment, making it an exciting time for digital media.

Communication - Digital media is transforming communication, and its impact will continue to be felt in the future. Potential future uses include virtual and augmented reality for immersive experiences in remote meetings, training, and customer experiences; artificial intelligence to automate tasks like scheduling and emails; voice assistants for easier control of devices and communication with colleagues; and new social media platforms designed for professional networking and collaboration. Collaborative tools like Slack and Microsoft Teams may become even more sophisticated, allowing seamless communication and collaboration. Overall, digital media is vital for efficient work, effective collaboration, and accessing new growth opportunities.

Education - Digital media has transformed the education landscape by making learning materials more accessible through online courses, e-books, and educational apps. It has also enabled new avenues for collaboration and engagement through online discussion forums and video conferencing tools. With the rise of artificial intelligence and machine learning, digital media is expected to play a significant role in personalized learning by analyzing individual student data and providing tailored recommendations for improving learning outcomes. Overall, these advancements will continue to enhance the way we learn and teach, making it more effective and efficient for students.

Information - Digital media is set to revolutionize how we access and interact with information. Personalized content based on users' preferences and browsing history could be delivered through digital media, thanks to advancements in artificial intelligence. Digital media can also create virtual libraries and museums that allow users to access rare and historical collections from anywhere in the world. Interactive learning experiences that incorporate gamification and augmented reality can be created. Additionally, digital media can create compelling visual representations of complex data sets to make information analysis and understanding easier. Real-time updates on news and events worldwide can also be enabled through digital media, keeping users informed and connected at all times.

Work - The digital economy is rapidly expanding, and digital media will become increasingly important in our work lives. Advancements in technology will make remote work and virtual collaboration more seamless and efficient. Virtual and augmented reality technologies have the potential to revolutionize collaboration, while chatbots and virtual assistants will automate tasks. Digital media will also play a significant role in career development and networking. Online learning platforms enable individuals to learn new skills and advance their careers. More personalized learning platforms will help individuals upskill and stay competitive in the job market. Digital media will shape the way we work and do business, enabling us to work more efficiently, collaborate more effectively, and access new opportunities for career growth and development. As a digital assistant, I am excited to see how technology will continue to advance and transform the way we work.

plz help im timed
An artist posted a picture of a painting on his website in order to sell it. Another business copied the picture and used it as a background on a website without giving credit to the artist. This action is most strongly related to which aspect of life?

culture

society

ethics

economy

Answers

Answer:

i believe C. Ethic

Explanation:

Ethics or moral philosophy is a branch of philosophy that "involves systematizing, defending, and recommending concepts of correct and wrong behavior". The field of ethics, along with aesthetics, concerns matters of value, and thus comprises the branch of philosophy called axiology.

Explain how SEO impacts the way you should interpret search engine results ???

Answers

Answer:

For the majority of businesses, the goal of SEO is to gain leads from search engines, by:

Increasing organic traffic. Increasing keyword rankings. Ranking for more keywords.

you can use tables for layout work. However, in XHTML, each form control should have its own ______ element

a. method
b. textarea
c. label
d. fieldset

Answers

Answer:

c. label

Explanation:

Find solutions for your homework
engineering
computer science
computer science questions and answers
this is python and please follow the code i gave to you. please do not change any code just fill the code up. start at ### start your code ### and end by ### end your code ### introduction: get codes from the tree obtain the huffman codes for each character in the leaf nodes of the merged tree. the returned codes are stored in a dict object codes, whose key
Question: This Is Python And Please Follow The Code I Gave To You. Please Do Not Change Any Code Just Fill The Code Up. Start At ### START YOUR CODE ### And End By ### END YOUR CODE ### Introduction: Get Codes From The Tree Obtain The Huffman Codes For Each Character In The Leaf Nodes Of The Merged Tree. The Returned Codes Are Stored In A Dict Object Codes, Whose Key
This is python and please follow the code I gave to you. Please do not change any code just fill the code up. Start at ### START YOUR CODE ### and end by ### END YOUR CODE ###
Introduction: Get codes from the tree
Obtain the Huffman codes for each character in the leaf nodes of the merged tree. The returned codes are stored in a dict object codes, whose key (str) and value (str) are the character and code, respectively.
make_codes_helper() is a recursive function that takes a tree node, codes, and current_code as inputs. current_code is a str object that records the code for the current node (which can be an internal node). The function needs be called on the left child and right child nodes recursively. For the left child call, current_code needs increment by appending a "0", because this is what the left branch means; and append an "1" for the right child call.
CODE:
import heapq
from collections import Counter
def make_codes(tree):
codes = {}
### START YOUR CODE ###
root = None # Get the root node
current_code = None # Initialize the current code
make_codes_helper(None, None, None) # initial call on the root node
### END YOUR CODE ###
return codes
def make_codes_helper(node, codes, current_code):
if(node == None):
### START YOUR CODE ###
pass # What should you return if the node is empty?
### END YOUR CODE ###
if(node.char != None):
### START YOUR CODE ###
pass # For leaf node, copy the current code to the correct position in codes
### END YOUR CODE ###
### START YOUR CODE ###
pass # Make a recursive call to the left child node, with the updated current code
pass # Make a recursive call to the right child node, with the updated current code
### END YOUR CODE ###
def print_codes(codes):
codes_sorted = sorted([(k, v) for k, v in codes.items()], key = lambda x: len(x[1]))
for k, v in codes_sorted:
print(f'"{k}" -> {v}')
Test code:
# Do not change the test code here
sample_text = 'No, it is a word. What matters is the connection the word implies.'
freq = create_frequency_dict(sample_text)
tree = create_tree(freq)
merge_nodes(tree)
codes = make_codes(tree)
print('Example 1:')
print_codes(codes)
print()
freq2 = {'a': 45, 'b': 13, 'c': 12, 'd': 16, 'e': 9, 'f': 5}
tree2 = create_tree(freq2)
merge_nodes(tree2)
code2 = make_codes(tree2)
print('Example 2:')
print_codes(code2)
Expected output
Example 1:
"i" -> 001
"t" -> 010
" " -> 111
"h" -> 0000
"n" -> 0001
"s" -> 0111
"e" -> 1011
"o" -> 1100
"l" -> 01100
"m" -> 01101
"w" -> 10000
"c" -> 10001
"d" -> 10010
"." -> 10100
"r" -> 11010
"a" -> 11011
"N" -> 100110
"," -> 100111
"W" -> 101010
"p" -> 101011
Example 2:
"a" -> 0
"c" -> 100
"b" -> 101
"d" -> 111
"f" -> 1100
"e" -> 1101

Answers

Get codes from the treeObtain the Huffman codes for each character in the leaf nodes of the merged tree.

The returned codes are stored in a dict object codes, whose key (str) and value (str) are the character and code, respectively. make_codes_helper() is a recursive function that takes a tree node, codes, and current_code as inputs. current_code is a str object that records the code for the current node (which can be an internal node). The function needs be called on the left child and right child nodes recursively. For the left child call, current_code needs increment by appending a "0", because this is what the left branch means; and append an "1" for the right child call.CODE:import heapq
from collections import Counter
def make_codes(tree):
   codes = {}
   ### START YOUR CODE ###
   root = tree[0] # Get the root node
   current_code = '' # Initialize the current code
   make_codes_helper(root, codes, current_code) # initial call on the root node
   ### END YOUR CODE ###
   return codes
def make_codes_helper(node, codes, current_code):
   if(node == None):
       ### START YOUR CODE ###
       return None # What should you return if the node is empty?
       ### END YOUR CODE ###
   if(node.char != None):
       ### START YOUR CODE ###
       codes[node.char] = current_code # For leaf node, copy the current code to the correct position in codes
       ### END YOUR CODE ###
   ### START YOUR CODE ###
   make_codes_helper(node.left, codes, current_code+'0') # Make a recursive call to the left child node, with the updated current code
   make_codes_helper(node.right, codes, current_code+'1') # Make a recursive call to the right child node, with the updated current code
   ### END YOUR CODE ###
def print_codes(codes):
   codes_sorted = sorted([(k, v) for k, v in codes.items()], key = lambda x: len(x[1]))
   for k, v in codes_sorted:
       print(f'"{k}" -> {v}')
       
Test code:
# Do not change the test code here
sample_text = 'No, it is a word. What matters is the connection the word implies.'
freq = create_frequency_dict(sample_text)
tree = create_tree(freq)
merge_nodes(tree)
codes = make_codes(tree)
print('Example 1:')
print_codes(codes)
print()
freq2 = {'a': 45, 'b': 13, 'c': 12, 'd': 16, 'e': 9, 'f': 5}
tree2 = create_tree(freq2)
merge_nodes(tree2)
code2 = make_codes(tree2)
print('Example 2:')
print_codes(code2)

To know more about Huffman codes visit:

https://brainly.com/question/31323524

#SPJ11

what do you mean by computer resolution??​

Answers

Answer:

means computer reformulation process

Give the usage and syntax of AVERAGE function.

Answers

The average function is used to calculate the statistical mean of selected data, and uses the syntax =AVERAGE (in excel I assume)

1. 2. 10 Snowflakes CodeHS

Does anyone have the code for this?

Thank you!

Answers

The Snowflakes problem on CodeHS involves using nested loops to create a pattern of snowflakes using asterisks.

Here is one possible solution:

The code starts by asking the user for a size input, which is used to determine the dimensions of the grid. The outer loop iterates through each row of the grid, while the inner loop iterates through each column.Inside the inner loop, there are four conditions to determine when to print an asterisk (*). The first condition checks if the current cell is on the main diagonal or one of the two diagonals next to it, and prints an asterisk if it is. The second and third conditions check if the current cell is in the top or bottom half of the grid and within the range of cells where the snowflake pattern should be printed. If the current cell does not meet any of these conditions, a space is printed instead.Finally, a newline is printed at the end of each row to move to the next line in the output.

For such more questions on CodeHS

https://brainly.com/question/15198605

#SPJ11

Question:-Learning Objectives In this challenge we will use our Python Turtle skills to draw a snowflake. We will use iteration (For Loop) to recreate ?

Into how many types is qbasic statement classified?

Answers

Answer:

two types

Explanation:

1)numeric variable

2)string variable

What is the output of the following code fragment? int i = 1; int sum = 0; while (i <= 11) { sum = sum + i; i++; } System.out.println("The value of sum is " + sum); The value of sum is 65. The value of sum is 66. The value of sum is 55. The value of sum is 56.

Answers

Answer:

The value of sum is 66

Explanation:

i = 1

sum = 0

while (i <= 11) {  

sum = sum + i;

i++;  

}

i = 1

sum = sum + isum = 0 + 1sum = 1

i = 2

sum = sum + isum = 1 + 2sum = 3

i = 3

sum = sum + isum = 3 + 3sum = 6

i = 4

sum = sum + isum = 6 + 4sum = 10

i = 5

sum = sum + isum = 10 + 5sum = 15

i = 6

sum = sum + isum = 15 + 6sum = 21

i = 7

sum = sum + isum = 21 + 7sum = 28

i = 8

sum = sum + isum = 28 + 8sum = 36

i = 9

sum = sum + isum = 36 + 9sum = 45

i = 10

sum = sum + isum = 45 + 10sum = 55

i = 11

sum = sum + isum = 55 + 11sum = 66

i = 12 --> does not comply with the condition "i < = 11", the while loop is over

Hey i need some help with code.org practice. I was doing a code for finding the mean median and range. the code is supposed to be including a conditional , parameter and loop. I'm suppose to make a library out of it and then use the library to test the code? please help!
here is the link to the code.
https://studio.code.org/projects/applab/YGZyNfVPTnCullQsVFijy6blqJPMBOgh5tQ5osNhq5c
P.S. you cant just type on the link i shared you have to click view code and then remix to edit it. thanks

Answers

Answer:

https://studio.code.org/projects/applab/YGZyNfVPTnCullQsVfijy6blqJPMBOgh5tQ5osNhq5c

Explanation:

q7. what do you need for off-campus access to the library subscription databases? your social security number your login to your hcc student account (w-number and password) you cannot access library resources from off-campus your name and state driver's license number a login you create on the hcc libraries website

Answers

Answer:
Your login to your college student account

Explanation:

login information you use to login to register for classes or your school email

Hurry please I’ll give Brainliest if you are right

Hurry please Ill give Brainliest if you are right

Answers

Answer:

I think kevin?

Explanation:

Using NOT when searching allows you to___________.
A: search for subtraction math games.
B: eliminate unwanted topics to narrow down your search.
C: search for more than one topic.
D:narrow down your topic by combining words.

Apparently this is a Technology subject thing.

Answers

Answer:

Using NOT when searching allows you to......................

Explanation:

Use NOT in a search to: exclude words from your search. narrow your search, telling the database to ignore concepts that may be implied by your search terms. example: cloning NOT sheep.

B: eliminate unwanted topics to narrow down your search.

move the entire loan amortization schedule worksheet in the EXCEL07.XLSX worbook located in the GMetrix Templates folder and insert it after the Time Card worksheet in the EXCEL06.xlsx workbook

Answers

In general, to move a worksheet from one workbook to another in Microsoft Excel, you can follow these steps:

Open both the source and destination workbooks in Microsoft Excel.

In the source workbook, right-click on the worksheet tab of the loan amortization schedule worksheet that you want to move.

Select the Move or Copy option from the context menu.

In the Move or Copy dialog box, select the destination workbook from the To book dropdown menu.

Select the worksheet after which you want to insert the loan amortization schedule worksheet from the Before sheet dropdown menu.

Click OK to close the dialog box and move the worksheet.

The loan amortization schedule worksheet should now be moved to the destination workbook and inserted after the specified worksheet. Note that any links or formulas that reference the moved worksheet may need to be updated to reflect the new location of the worksheet.

Learn more about worksheet here:

https://brainly.com/question/13129393

#SPJ11

Write a program in java to input N numbers from the user in a Single Dimensional Array .Now, display only those numbers that are palindrome

Answers

Using the knowledge of computational language in JAVA it is possible to write a code that  input N numbers from the user in a Single Dimensional Array .

Writting the code:

class GFG {

   // Function to reverse a number n

   static int reverse(int n)

   {

       int d = 0, s = 0;

       while (n > 0) {

           d = n % 10;

           s = s * 10 + d;

           n = n / 10;

       }

       return s;

   }

   // Function to check if a number n is

   // palindrome

   static boolean isPalin(int n)

   {

       // If n is equal to the reverse of n

       // it is a palindrome

       return n == reverse(n);

   }

   // Function to calculate sum of all array

   // elements which are palindrome

   static int sumOfArray(int[] arr, int n)

   {

       int s = 0;

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

           if ((arr[i] > 10) && isPalin(arr[i])) {

               // summation of all palindrome numbers

               // present in array

               s += arr[i];

           }

       }

       return s;

   }

   // Driver Code

   public static void main(String[] args)

   {

       int n = 6;

       int[] arr = { 12, 313, 11, 44, 9, 1 };

       System.out.println(sumOfArray(arr, n));

   }

}

See more about JAVA at brainly.com/question/12975450

#SPJ1

Write a program in java to input N numbers from the user in a Single Dimensional Array .Now, display

HELP ME PLEASE ASAP
Which file format would be best for transferring contacts from one program to another?
1. The .cnt format
2. The .exl format
3. The .pst format
4. The .csv format

Answers

Answer:

csv

Explanation:

got it right on edge

Answer:

csv and pst

Explanation:

Other Questions
As a delivery company, no one delivers better than Dominos. Its reputation for hot pizza in 30 minutesor less is ingrained in customers minds. But not long ago, Dominos began hearing its customers talkingabout how its pizza was horrible. As a company that has long focused on solid marketing intelligence tomake decisions, Dominos went to work on how it could change consumer perceptions about its pizza.Through marketing research techniques, Dominos soon realized that it had to take a very risky step andcompletely recreate the pizza that it had been selling for over 40 years. This video illustrates howresearch not only enable Dominos to come up with a winning recipe, but it led to a successfulpromotional campaign that has made fans of Dominos pizza in addition to its delivery service.1. What role did marketing research play in the creation and launch of Dominos newpizza?2. Could Dominos have gone about its research process in a more effective way?Explain3. Why did it take so long for Dominos to realize that customers didnt like its pizza?Was it an accident that it made this realization? Which characteristics made Angiosperms unique from already-existing plants? Briefly explain the observed phase change upon the mixing of solid o-vanillin and p- toluidine (include a reference to the melting temperatures of the starting materials) Adam decided to play a practical joke on Linda, a coworker. As Linda was leaving the office one night, Adam, wearing a mask, stepped out from behind some bushes. He pointed a handgun made out of licorice at her and demanded her purse. He then pushed the candy gun to her head and told her if she told anybody he'd kill her. Linda was very scared during the whole incident. She did not think it was funny when Adam pulled the mask off and took a bite out of the gun as he gave her the purse back. Which statement is correct?A) Yes, as his conduct was intentional. B) Yes, but only if Adam intended to cause Linda serious emotional distress. C) No, since he was only playing a practical joke. D) No, since Linda was not physically hurt by Adam. (02.07) a particular plant root grows 1.5 inches per month. how many centimeters is the plant root growing per month? (1 inch = 2.54 centimeters). (2 points) group of answer choices 0.59 centimeters 1.69 centimeters 3.81 centimeters 4.04 centimeters Should any restrictions be placed on the police when making an arrest? (Miranda v. Arizona), p. 404-406 At your imaginary house (in the future), you have a circular patio with a table in the center of thecircle. You are standing 5-feet from the table. You are also 13-feet from a point of tangency. What isthe approximate diameter of the circular patio? how did john c. calhoun of south california view the power of the states and the power of the federal government? The town barber shop can accommodate 36 customers per day. The manager has determined that if two additional barbers are hired, the shop can accommodate 81 customers per day. What are the design and effective capacities for the barber shop? Guys i need help please help me What is 12x-3+2x+13 equivalent to Read the excerpt from The Monsters Are Due on Maple Street.STEVE(raising his voice)There's something you can do, Charlie. You could go home and keep your mouth shut. You could quit strutting around like a self-appointed hanging judge and just climb into bed and forget it.CHARLIEYou sound real anxious to have that happen, Steve. I think we better keep our eye on you too!DON(as if he were taking the bit in his teeth, takes a hesitant step to the front)I think everything might as well come out now.(he turns toward Steve.)Your wife's done plenty of talking, Steve, about how odd you are!CHARLIE(picking this up, his eyes widening)Go ahead, tell us what she's said.58. LONG SHOT STEVE 58.As he walks toward them from across the street.STEVEGo ahead, what's my wife said? Let's get it all out. Let's pick out every idiosyncrasy of every single man, woman, and child on the street. And then we might as well set up some kind of a kangaroo court. How about a firing squad at dawn, Charlie, so we can get rid of all the suspects. Narrow them down. Make it easier for you.DONThere's no need gettin' so upset, Steve. It's just that . . . well . . . Myra's talked about how there's been plenty of nights you spent hours down in your basement workin' on some kind of radio or something. Well, none of us have ever seen that radioHow does Steves attempt to reason with his neighbors affect other elements of the story? a nurse is conducting a refresher class for a group of nurses working in the prenatal clinic. after reviewing fetal development with the group, the nurse determines that the teaching was successful when the group identifies which barrier to other sperm after fertilization? The green house is made completely of glass, except for the door. The entire building is 15 feet tall. The height of the vertical walls is 10 ft. The green house is 20 ft long (on side with door) and 16 feet wide. The triangles that make up the roof are isosceles triangles (both sides are equal and height is measured at the middle of the base). The door is 8 feet wide and 7 feet tall. Answer each of the following questions about your greenhouse.Hose for watering the plants will be run along the entire outer edge of the floor, and up, aroundthe door. How much hose will be needed for this task? 3 ? -6 which is it ?? Which of the following best describes John proctors feelings towards Abigail Read the passage from "Introduction to the Holocaust.In 1933, the Jewish population of Europe stood at over nine million. Most European Jews lived in countries that Nazi Germany would occupy or influence during World War II. By 1945, the Germans and their collaborators killed nearly two out of every three European Jews as part of the "Final Solution, the Nazi policy to murder the Jews of Europe.Although Jews, whom the Nazis deemed a priority danger to Germany, were the primary victims of Nazi racism, other victims included some 200,000 Roma (Gypsies). At least 200,000 mentally or physically disabled patients, mainly Germans, living in institutional settings, were murdered in the so-called Euthanasia Program.As Nazi tyranny spread across Europe, the Germans and their collaborators persecuted and murdered millions of other people. Between two and three million Soviet prisoners of war were murdered or died of starvation, disease, neglect, or maltreatment.Which statement does the evidence in the passage best support?Before the Holocaust, the Jewish population of Europe was over nine million.Many Jews lived in countries that Nazi Germany would occupy during World War II.The Nazis had a policy, called the Final Solution, to murder Jews who lived in Europe. The Holocaust was the systematic murder of people based on their race or their identity. 30 points Which of the following statements about change in ecosystems is true?a. Ecosystems experience change through human activity only.b. Ecosystems experience change through natural events only.C. Ecosystems experience no change.d. Ecosystems experience change through human activity and natural events.Please select the best answer from the choices provided [Mcdonalds, a big burger joint, is charging $5 for its very famous Big Mac hamburger and selling around 20 million Big Mac in a year in Singapore.][Suppose Mcdonalds increases the price of its Big Mac to $6 and still manages to sell the same quantity of the Big Mac. How much revenue will Mcdonalds gain? What can you infer about the price elasticity of demand (PED) for Mcdonalds Big Mac? Assume in an alternative scenario, the increase in the price of Big Mac to $ 6 reduces its quantity sold to 18 million. How much revenue will Mcdonalds gain now? What can you conclude about the PED now? (4 Marks)][Given the two scenarios presented in part a, which one do you think is more likely and why? Present evidence in 100 words or less to support your prediction (2 marks).][Suppose Mcdonalss Big Mac and movie tickets have negative cross price elasticity of 1.5. What does this number tell us on the relationship between the Big Mac and movie tickets? Suppose, The Golden Village (GV), Singapores leading cinema exhibitor, decides to increase the price of its movie tickets by 10%. How will this development affect McDonalds pricing decisions as indicated in part (a)? Discuss both the scenarios (as presented in part (a)) in 200 or less words. (4 marks)] 3.In the figure. ABCD is a parallelogram. Find the area and theperimeter of ABCD.