Fill in the blanks to complete the “endangered_animals” function. This function accepts a dictionary containing a list of endangered animals (keys) and their remaining population (values). For each key in the given “animal_dict” dictionary, format a string to print the name of the animal, with one animal name per line.

def endangered_animals(animal_dict):

result = ""

# Complete the for loop to iterate through the key and value items

# in the dictionary.

for ___

# Use a string method to format the required string.

result += ___

return result



print(endangered_animals({"Javan Rhinoceros":60, "Vaquita":10, "Mountain Gorilla":200, "Tiger":500}))

# Should print:

# Javan Rhinoceros

# Vaquita

# Mountain Gorilla

# Tiger

Answers

Answer 1

Answer:

def endangered_animals(animal_dict):

result = ""

for animal, population in animal_dict.items():

result += f"{animal}\n"

return result

print(endangered_animals({"Javan Rhinoceros":60, "Vaquita":10, "Mountain Gorilla":200, "Tiger":500}))

Explanation:

The endangered_animals function accepts a dictionary containing a list of endangered animals (keys) and their remaining population (values). It uses a for loop to iterate through the dictionary items and format a string containing the name of each animal with a newline character at the end. Finally, the function returns the resulting string.

When this function is called with the example dictionary {"Javan Rhinoceros":60, "Vaquita":10, "Mountain Gorilla":200, "Tiger":500}, it prints the following output:

Javan Rhinoceros

Vaquita

Mountain Gorilla

Tiger

Answer 2

def endangered_animals(animal_dict):

result = ""

for animal, population in animal_dict.items():

result += f"{animal}\n"

return result

print(endangered_animals({"Javan Rhinoceros":60, "Vaquita":10, "Mountain Gorilla":200, "Tiger":500}))

What endangered_animals function accepts?

The endangered_animals function accepts a dictionary containing a list of endangered animals (keys) and their remaining population (values). It uses a for loop to iterate through the dictionary items and format a string containing the name of each animal with a newline character at the end. Finally, the function returns the resulting string.

When this function is called with the example dictionary {"Javan Rhinoceros":60, "Vaquita":10, "Mountain Gorilla":200, "Tiger":500}, it prints the following output:

Javan Rhinoceros

Vaquita

Mountain Gorilla

Tiger

Therefore, print(endangered_animals({"Javan Rhinoceros":60, "Vaquita":10, "Mountain Gorilla":200, "Tiger":500}))

Learn more about programming on:

https://brainly.com/question/11023419

#SPJ2


Related Questions

thank you very much for your email. ...... was very interesting​

Answers

Answer:

WHAT DO YOU MEAN

Explanation:

THIS IS FOR QUESTIONS ONLY !!!!

When a computer is being developed, it is usually first simulated by a program that runs one instruction at a time. Even multiprocessors are simulated strictly sequentially like this. Is it possible for a race condition to occur when there are no simultaneous events like this?

Answers

My response is Yes, the simulated computer is one that can be multiprogram med.

What is meant by computer simulations?

A computer simulation is known to be a kind of a program that is known to often run on a computer and it is said to be one that uses a form of  step-by-step mechanism to examine or look through the  behavior of a mathematical model.

Note that this is said to be a model of a real-world system and as such, My response is Yes, the simulated computer is one that can be multiprogram med.

Learn more about simulated computer from

https://brainly.com/question/24912812

#SPJ1

Which of the following describes the phishing
of it up information security crime

Answers

Pretending to be someone else when asking for information

What is phishing?

A method wherein the criminal poses as a reliable person or respectable company in order to solicit sensitive information, such as bank account details, through email or website fraud.

Attackers create phony emails that contain harmful links. Once the victim clicks the link and enters their credentials, the attacker can use those credentials to gain illegal access. Consequently, the victim is phished.

Phishing is a dishonest method of obtaining sensitive information by posing as a reliable organization. Similar to any other form of fraud, the offender can do a great deal of harm, especially if the threat continues for a long time.

To learn more about phishing refer to:

https://brainly.com/question/23021587

#SPJ9

It is possible to put different format on 1 point the image by steps​

Answers

Open the image in an image editing software such as Photoshop or GIMP. Select the portion of the image that you want to apply a different format to. Choose the format you want to apply to the selected portion of the image. Adjust the settings for the format, as appropriate. Save the image .

What is software ?

Software is a set of instructions, or programs, that tell a computer, mobile device, or other electronic device how to perform specific tasks. Software can be divided into two categories: system software and application software. System software includes the operating system, device drivers, and other support software, while application software includes programs that do specific tasks, such as word processors, web browsers, and games.

To know more about software
https://brainly.com/question/985406
#SPJ1

Open the image in an image editing software such as Photoshop or GIMP. Select the portion of the image that you want to apply a different format to. Choose the format you want to apply to the selected portion of the image. Adjust the settings for the format, as appropriate. Save the image .

What is software ?

Software is a set of instructions, or programs, that tell a computer, mobile device, or other electronic device how to perform specific tasks. Software can be divided into two categories: system software and application software. Most of the software is written in high-level programming languages. They are easier and more efficient for developers because they are closer to natural languages ​​than machine languages. High-level languages ​​are translated into machine language using a compiler, an interpreter, or a combination of both.

System software includes the operating system, device drivers, and other support software, while application software includes programs that do specific tasks, such as word processors, web browsers, and games.

To know more about software

brainly.com/question/985406

#SPJ1

Complete question

How It is possible to put different format on 1 point the image by steps​?

9. Discuss the pros and cons of human-computer interaction technology?​

Answers

The cons of human-computer interaction technology is that there tends to be a poor form  of user interfaces as well as experiences that tend to  change technology from been useful tool to been a frustrating waste of time.

Productivity  tends to  suffers if workers have to spend their time working in the designs unit.

What are the pros of human-computer interaction technology?

The biggest gains one or a company can get is one that arises from the use of HCI.

Thus is known to be good because it is one that tends to be  more user friendly products.

A person is able to make computers and systems to be very much receptive to the needs of the user, making a better user experience

Therefore, The cons of human-computer interaction technology is that there tends to be a poor form  of user interfaces as well as experiences that tend to  change technology from been useful tool to been a frustrating waste of time.

Learn more about human-computer interaction from

https://brainly.com/question/17238363

#SPJ1

In the reverse outlining technique, which of the following techniques is involved in assessing the structure of the new outline? Select one.

Question 8 options:

Incorporating various forms of advanced organizers, such as headings or bulleted lists


Identifying confusing sentences that mischaracterize the content


Identifying citations or paraphrases that are improperly formatted


Discovering content that should be deleted, added, or rearrange

Answers

Answer:

incorporating various forms of advanced organizers, such as headings or bulleted lists

Explanation:

reverse outlining technique basically is to generalize your document or essay into main or specific points. so the best answer describing the technique is as follows:

incorporating various forms of advanced organizers, such as headings or bulleted lists

flow chart to read 50 numbers and print summation of even numbers only

Answers

The sum of terms in an arithmetic progression formula is used to get the sum of even numbers formula. Sum of Even Numbers Formula is written as n(n+1), where n is the total number of entries in the series.

What is print summation of even numbers only?

Python comes with a built-in method called sum() that adds up the values in the list. Syntax: sum (iterable, start) (iterable, start) Iterable:

Most importantly, iterable should be numbers. Start: This start is added to the total of the iterable's numbers.

Therefore, By definition, when a number is divided by two, there is never a remainder. There will therefore be no residue when it is added to another even integer.

Learn more about summation here:

https://brainly.com/question/29334900

#SPJ1

Which concept deals with connecting devices like smart refrigerators and smart thermostats to the internet?

1 point

IoT


IPv6


NAT


HTTP

Answers

The concept that deals with connecting devices like smart refrigerators and smart thermostats to the internet is the Internet of Things (IoT).

The correct answer to the given question is option A.

It is a network of interconnected devices and systems that can interact with each other through the internet, and it includes anything that can be connected to the internet, from smartphones to cars, homes, and even cities.

IoT is a revolutionary technology that has the potential to change the way we live and work. It is built on the foundation of the internet and relies on the Internet Protocol (IP) for communication between devices.

To enable IoT to operate on a global scale, IPv6 was developed. This protocol provides a large number of unique IP addresses that can accommodate the growing number of IoT devices that are being connected to the internet. Network Address Translation (NAT) is another concept that is used to connect devices to the internet. It is a technique that allows multiple devices to share a single public IP address.

Hypertext Transfer Protocol (HTTP) is the primary protocol used to transfer data over the internet. In summary, IoT is the concept that deals with connecting devices like smart refrigerators and smart thermostats to the internet.

For more such questions on Internet of Things, click on:

https://brainly.com/question/19995128

#SPJ8

Discuss the Von-Neumann CPU architecture?​

Answers

The Von Neumann architecture is a traditional CPU design named after John von Neumann and widely implemented since the mid-20th century.

What is the Von-Neumann CPU architecture?​

Basis for modern computers, including PCs, servers, and smartphones. Von Neumann architecture includes components for executing instructions and processing data. CPU is the core of Von Neumann architecture.

It manages operations, execution, and data flow in the system. Von Neumann architecture stores both program instructions and data in a single memory unit. Memory is organized linearly with each location having a unique address. Instructions and data are stored and retrieved from memory while a program runs.

Learn more about   Von-Neumann CPU architecture from

https://brainly.com/question/29590835

#SPJ1

Thale cress is a plant that is genetically engineered with genes that break down toxic materials. Which type of organism is described?
recombinant
transgenic
transverse
restriction

Answers

Answer: Transgenic

Explanation:

Since the thale cress is a plant that is genetically engineered with genes that break down toxic materials, the type of organism that is described here is the transgenic plant.

Transgene is when a gene is naturally transferred or transferred from an organism to another organism by genetic engineering method.

Therefore, the correct option is transgenic.

Answer:

The answer is B (transgenic)

Explanation:

You are a systems analyst. Many a time have you heard friends and colleagues complaining that their jobs and businesses are being negatively impacted by e-commerce. As a systems analyst, you decide to research whether this is true or not. Examine the impact of e-commerce on trade and employment/unemployment, and present your findings as a research essay.

Answers

E-commerce, the online buying and selling of goods and services, has significantly impacted trade, employment, and unemployment. This research essay provides a comprehensive analysis of its effects.

What happens with  e-commerce

Contrary to popular belief, e-commerce has led to the growth and expansion of trade by breaking down geographical barriers and providing access to global markets for businesses, particularly SMEs. It has also created job opportunities in areas such as operations, logistics, customer service, web development, and digital marketing.

While certain sectors have experienced disruption, traditional businesses can adapt and benefit from e-commerce by adopting omni-channel strategies. The retail industry, in particular, has undergone significant transformation. E-commerce has empowered small businesses, allowing them to compete with larger enterprises and fostered entrepreneurial growth and innovation. However, there have been job displacements in some areas, necessitating individuals to transition and acquire new skills.

Read mroe on  e-commerce here  https://brainly.com/question/29115983

#SPJ1

A developer writes a SOQL query to find child records for a specific parent. How many levels can be returned in a single query?

Answers

Answer:

One.

Explanation:

In this case, when a developer writes a SOQL query in order to find  to find child records for a specific parent, one search will return only one child. One level down i.e., from parent to child, or five levels up i.e., from child to parent. Note that SOQL statements will not return relationships that are greater than one level apart from the root entity object.

Given a variable d of type int has been declared and the following function headers.
int f1(int a);
void f2(int &n);
bool f3(int r, char c);
Which of the following statements has a syntax error?
A. cout << f1(10);
B. f2(d);
C. if (f3(f1(d), 'x')) {
++d;
}
D. f2(10);

Answers

As f2() expects a variable, but a constant has been provided, (D) has incorrect syntax.

What is a variable?

A variable in programming is a value that is subject to change based on external factors or input. Typically, a program is made up of data that the program uses while it is running and instructions that tell the computer what to do.

Constants or fixed values that never change make up the data, while variables (whose initial values are typically set to "0" or some other default value because the program's user will supply the actual values) are also present. In most cases, certain data types are used to define both constants and variables.

The form of the data is dictated by and constrained by each data type. Examples of data types include a decimal representation of an integer or a string of text characters that is typically constrained in length.

Learn more about variables

https://brainly.com/question/2804470

#SPJ4

Identify the correct function to use.
To find the largest number in a set of numbers, we can use the
function.

Answers

Math. max() function can be used to find the largest number in a set of numbers.

Example :

console.log(Math.max(1, 3, 2));

Output : 3

How to use Math.max() ?

You never use max() as a method of a Math object you built; instead, you always use it as

Math.max() since max() is a static method of Math (Math is not a constructor).

Therefore, Math. max() function can be used to find the largest number in a set of numbers.

You can learn more about Math.max() from the given link

https://brainly.in/question/22430946

#SPJ13

What is the HIPAA privacy rule, and why does it affect IT professionals.

Answers

It protects a persons identifiable health information and medical records.

Which of the following is a positional argument?
a) ABOVE
b) MIN
c) AVERAGE
d) MAX

Answers

D) MAX is a positional argument

Which device is not considered a computer?

a smartphone
an analog controller

Answers

Answer:

An analog controller is not considered a computer because you just move around the controls. You don't stare at a screen like a smartphone, so it is not a computer.

Explanation:

Write a program that takes paragraph from the user and prints all unique words in that paragraph in c++

Answers

Answer:

We strongly recommend you to minimize your browser and try this yourself first

The idea is to use map in STL to keep track of words already occurred.

// C++ program to print unique words in a string

#include <bits/stdc++.h>

using namespace std;

  

// Prints unique words in a file

void printUniquedWords(char filename[])

{

    // Open a file stream

    fstream fs(filename);

  

    // Create a map to store count of all words

    map<string, int> mp;

  

    // Keep reading words while there are words to read

    string word;

    while (fs >> word)

    {

        // If this is first occurrence of word

        if (!mp.count(word))

            mp.insert(make_pair(word, 1));

        else

            mp[word]++;

    }

  

    fs.close();

  

    // Traverse map and print all words whose count

    //is 1

    for (map<string, int> :: iterator p = mp.begin();

         p != mp.end(); p++)

    {

        if (p->second == 1)

            cout << p->first << endl;

    }

}

  

// Driver program

int main()

{

    // Create a file for testing and write something in it

    char filename[] = "test.txt";

    ofstream fs(filename, ios::trunc);

    fs << "geeks for geeks quiz code geeks practice for qa";

    fs.close();

  

    printUniquedWords(filename);

    return 0;

}

Output:

code practice qa quiz

Thanks to Utkarsh for suggesting above code.

Please write comments if you find anything incorrect, or you want to share more information about the topic discussed above

Rated as one of the most sought after skills in the industry, own the basics of coding with our C++ STL Course and master the very concepts by intense problem-solving.

Explanation:

please mark me as brainliest thank you merry Christmas

This program extends the earlier "Online shopping cart" program. (Consider first saving your earlier program).

(1) Extend the ItemToPurchase struct to contain a new data member. (2 pt)

char itemDescription[ ] - set to "none" in MakeItemBlank()
Implement the following related functions for the ItemToPurchase struct.

PrintItemDescription()
Has an ItemToPurchase parameter.

(2) Create three new files:

ShoppingCart.h - struct definition and related function declarations
ShoppingCart.c - related function definitions
main.c - main() function (Note: main()'s functionality differs from the warm up)
Build the ShoppingCart struct with the following data members and related functions. Note: Some can be function stubs (empty functions) initially, to be completed in later steps.

Data members (3 pts)
char customerName [ ]
char currentDate [ ]
ItemToPurchase cartItems [ ] - has a maximum of 10 slots (can hold up to 10 items of any quantity)
int cartSize - the number of filled slots in array cartItems [ ] (number of items in cart of any quantity)
Related functions
AddItem()
Adds an item to cartItems array. Has parameters of type ItemToPurchase and ShoppingCart. Returns ShoppingCart object.
RemoveItem()
Removes item from cartItems array (does not just set quantity to 0; removed item will not take up a slot in array). Has a char[ ](an item's name) and a ShoppingCart parameter. Returns ShoppingCart object.
If item name cannot be found, output this message: Item not found in cart. Nothing removed.
ModifyItem()
Modifies an item's description, price, and/or quantity. Has parameters of type ItemToPurchase and ShoppingCart. Returns ShoppingCart object.
GetNumItemsInCart() (2 pts)
Returns quantity of all items in cart. Has a ShoppingCart parameter.
GetCostOfCart() (2 pts)
Determines and returns the total cost of items in cart. Has a ShoppingCart parameter.
PrintTotal()
Outputs total of objects in cart. Has a ShoppingCart parameter.
If cart is empty, output this message: SHOPPING CART IS EMPTY
PrintDescriptions()
Outputs each item's description. Has a ShoppingCart parameter.

(3) In main(), prompt the user for a customer's name and today's date. Output the name and date. Create an object of type ShoppingCart. (1 pt)

(4) Implement the PrintMenu() function in main.c to print the following menu of options to manipulate the shopping cart. (1 pt)
(5) Implement the ExecuteMenu() function in main.c that takes 2 parameters: a character representing the user's choice and a shopping cart. ExecuteMenu() performs the menu options (described below) according to the user's choice, and returns the shopping cart. (1 pt)


(6) In main(), call PrintMenu() and prompt for the user's choice of menu options. Each option is represented by a single character.

If an invalid character is entered, continue to prompt for a valid choice. When a valid option is entered, execute the option by calling ExecuteMenu() and overwrite the shopping cart with the returned shopping cart. Then, print the menu and prompt for a new option. Continue until the user enters 'q'. Hint: Implement Quit before implementing other options. (1 pt)

(7) Implement the "Output shopping cart" menu option in ExecuteMenu(). (3 pts)
8) Implement the "Output item's description" menu option in ExecuteMenu(). (2 pts)
(9) Implement "Add item to cart" menu option in ExecuteMenu(). (3 pts)
(10) Implement the "Remove item from cart" menu option in ExecuteMenu(). (4 pts)
(11) Implement "Change item quantity" menu option in ExecuteMenu(). Hint: Make new ItemToPurchase object before using ModifyItem() function. (5 pts)

Answers

Answer:

To create an online shopping cart. You need to do the following:

Update the ItemToPurchase struct to include a new data member called itemDescription.

Create three new files: ShoppingCart.h, ShoppingCart.c, and main.c.

Build the ShoppingCart struct with the following data members: customerName, currentDate, cartItems (which can hold up to 10 items of any quantity), and cartSize.

Implement the AddItem, RemoveItem, ModifyItem, GetNumItemsInCart, GetCostOfCart, PrintTotal, and PrintDescriptions functions for the ShoppingCart struct.

In the main function, prompt the user for a customer's name and today's date, and create an object of type ShoppingCart.

Implement a menu of options to manipulate the shopping cart in the PrintMenu function in main.c.

Implement the ExecuteMenu function in main.c to perform the menu options according to the user's choice.

Implement the "Output shopping cart" menu option in ExecuteMenu.

Implement the "Output item's description" menu option in ExecuteMenu.

Implement the "Add item to cart" menu option in ExecuteMenu.

Implement the "Remove item from cart" menu option in ExecuteMenu.

Implement the "Change item quantity" menu option in ExecuteMenu.

Note: Each step has a point value assigned to it, and some steps have hints provided.

Question providede in the document please use my provided codes!!

Answers

Answer:

become successful in your Photo to the best of all time favorite

He has asked for projected sales figures broken down
by season.

Create one formula that can be copied down and then across.

He has asked for projected sales figures broken downby season.Create one formula that can be copied down

Answers

Below is an example of a formula that you can use to calculate projected sales figures broken down by season, which can be copied down and across:

What is the formula?

Assuming that the seasons are in cells B1:E1 (Summer, Fall, Winter, Spring) and the projected sales data is in cells A2:A6 (Sporting Goods, Electronics, Housewares, Toys, Clothing), you can use the following formula in cell B2:

swift

=A$2 * IF($B$1="Summer", 0.13, IF($B$1="Fall", 0.25, IF($B$1="Winter", 0.30, IF($B$1="Spring", 0.32, 0))))

This formula multiplies the projected sales amount (cell A2) by the corresponding percentage for each season (0.13 for Summer, 0.25 for Fall, 0.30 for Winter, and 0.32 for Spring), based on the value in cell B1. The dollar signs ($) are used to lock the references for cell A2 and the column B, so that the formula can be copied across and down to calculate projected sales for other seasons and product categories.

You can copy this formula down for the remaining product categories (cells B3:B6) and across for the remaining seasons (cells C2:E6) to calculate the projected sales figures broken down by season for all the product categories.

Read more about seasons  here:

https://brainly.com/question/15734021

#SPJ1



David's of Denison

Summer 13% Fall 25%   Winter 30% Spring 32%

Projected Sales

Sporting Goods       350,000

Electronics       310,500

Housewares    289,400

Toys             390,200

Clothing   400,575


Which heading function is the biggest?
1. h1
2. h2
3. h3

Answers

Answer:

h3

Explanation:

sub to Thicc Panda on YT

The answer for this question is number 1

what is mouse spealing

Answers

Answer:

use a mouse to move or position a cursor on computer screen

Explanation:

mouse cursor

whats the best practices for a cyber security agent ??

Answers

Some of the key best practices for a cyber security agent include:

Stay updatedImplement strong security measuresPractice secure coding and development

What should cyber security agents watch out for ?

Sustained awareness of the ever-evolving cybersecurity landscape is imperative. Agents must actively pursue knowledge through training, certifications, and participation in industry events to stay abreast of the latest threats, trends, and technologies.

Implementing formidable security measures is paramount. This encompasses deploying firewalls, intrusion detection systems, encryption protocols, and fortified authentication mechanisms.  Emphasize secure coding practices during the development lifecycle.

Find out more on cyber security at https://brainly.com/question/31026602

#SPJ1

Any help , and thank you all

Any help , and thank you all

Answers

Answer:

There are 28 chocolate-covered peanuts in 1 ounce (oz). Jay bought a 62 oz. jar of chocolate-covered peanuts.

Problem:

audio

How many chocolate-covered peanuts were there in the jar that Jay bought?

Enter your answer in the box.

Explanation:

Based on three scores that the user inputs, display the average of the score and the letter grade that is assigned fort he test score average. The grading scheme is as follows:
// 90 - 100 A
// 80 - 89 B
// 70 - 79 C
// 60 - 69 D
// <60 F
return 'F';
Your display should look like:
Your average test score is 89.9. You earned a B.
1 public void calculateDisplayLetterGrade (double scorel, double score2, double score3)
2 {
3
4 }
5

Answers

I used python function to write the code.

def averageScore(x,y,z):

    s = x + y + z

    avg = s/3

   if avg >= 90:

              return f'Your average test score is {avg} You earned a A.'

    elif avg >=80 and avg < 90 :

                return f'Your average test score is {avg} You earned a B.'

   elif avg >=70 and avg < 80 :

                 return f'Your average test score is {avg} You earned a .C'

      elif avg >=60 and avg < 70 :

                  return f'Your average test score is {avg} You earned a D.'

      else:

                    return f'Your average test score is {avg} You earned a F.'

print(averageScore(98, 90, 80))

Python function is used to write the code where x, y and z are the argument (user inputs) of the function. Then the inputs are summed and the average is gotten and stored with the variable, avg.  

If the average is greater than or equal to 90 the program will give the appropriate score and response(grade). It does the same if the user scored 80 - 89, 70 - 79, 60 - 69 and less than 60.

Finally. the function is called with the user input(argument).

Note the bolded values in the code are keywords in python.

read more: https://brainly.com/question/14191443?referrer=searchResults

Based on three scores that the user inputs, display the average of the score and the letter grade that

Using Gradebook.java (below) and GradebookTest.java (below) Complete an application (code provided) that takes in an Array of 30 Grades (integer) and returns the maximum grade, minimum grade, average of all grades, and prints a Bar Chart to show the grade distribution Note: maximum grade, minimum grade, average grade, and the Bar Chart must be implemented as separate methods. Some given code might not be needed. Given Below: //init Array java
//GradeBook .java
//GradeBook. Java
Given Methods:
public void outputGrades()
public void output BarChart()
public double getAverage

Answers

//Application Code

import java.util.Scanner.

What is java?

Java is a high-level programming language developed by Sun Microsystems. It is a class-based, object-oriented language that is designed to have as few implementation dependencies as possible. Java is used for developing mobile, desktop and web applications. It is one of the most popular programming languages in the world, and is used for creating software for a variety of industries, from financial services to scientific computing. Java is designed to be platform independent, meaning that code written in Java can run on any platform, regardless of the operating system or hardware architecture. Java is also used in Android development and is the official language for the Android platform.

To learn more about java

https://brainly.com/question/26789430

#SPJ4


Match the graphic design tool to its purpose/definition.
-Drawing
-Layers
-Magic Wand
-Lasso
a. You can combine several images to
create one image.
b. You can make selections of irregular
shapes.
c. You can draw rectangles, circles,
and other geometric shapes.
d. You can select areas based on
color.

Match the graphic design tool to its purpose/definition.-Drawing-Layers-Magic Wand-Lassoa. You can combine

Answers

Answer:

You can combine several images to

create one image.   -------Layers

You can make selections of irregular

shapes.  ----------- Lasso

You can draw rectangles, circles,

and other geometric shapes.-- Drawing

You can select areas based on

color.------Magic Wand

Explanation:

Graphic design software is used to create, edit, and view graphic art. Graphic design software comes in a wide variety of forms, each with a unique set of tools and features.

What graphic design tool, its purpose?

These software programs allow graphic designers to produce, edit, store, and manage their creative output, including pictures, images, videos, presentations, brochures, and other visual forms.

They can be installed to run from a desktop computer or provided as a cloud-based service. Users can format layouts, generate multimedia, stylize or edit photos, and create graphics, depending on the software.

Therefore, You can combine several images to create one image.   -------Layers. You can choose from a variety of strange shapes. —- Lasso. You can draw rectangles, circles, and other geometric shapes.-- Drawing. Furthermore, you can select areas based on color.------Magic Wand.

Learn more about graphic design tool here:

https://brainly.com/question/9105717

#SPJ5

Which of the following services may be implemented in a link-layer protocol? Select one or more statements.O Reliable data transfer between directly connected nodes. O Lookup and forwarding on the basis of an IP destination address.O Flow control between directly connected nodes.O TLS security (including authentication) between directly connected nodes. O Coordinated access to a shared physical medium. Bit-level error detection and correction Multiplexing down from / multiplexing up to a network-layer protocol. End-end path determination through multiple IP routers.

Answers

Services may be implemented in a link-layer protocol :

Flow control between directly connected nodes.Bit-level error detection and correction.

What is link-layer protocol ?In the TCP/IP paradigm, the link layer refers to a group of networking protocols that only work on the local network segment (link) to which a host is connected. The packets of this protocol are not sent to other networks.The Application, Transport, Network, and Link layers are the four foundational levels of the TCP/IP Protocol Stack (Diagram 1). Within the TCP/IP protocol family, each layer serves a particular purpose. The model's layers can be transferred and mixed to allow for system-to-system communication.The multiplexing of data streams, data frame identification, medium access, and error correction are all tasks of the data link layer. In a communication network, it guarantees dependable point-to-point and point-to-multipoint connections.

Learn more about link-layer protocol refer to :

https://brainly.com/question/9871051

#SPJ4

What Was the first video game ever made? WORTH 98 POINTS

Answers

Answer:

Hello! :))

Your Answer is Pong.

Explanation:

It was  October 1958, Physicist William Higinbotham created the first video game. It was a  tennis game, similar to the classic 1970s video game Pong, and it was quite a success I must say. :D

I believe it is pong
Other Questions
I need help ASAP PLS! Select all the figures that have Rotation symmetry... 1. What is the primary purpose of initially assessing an apical pulse?A. Assessment of the patient's cardiac functionB. Establishment of a baseline as part of the patient's vital signsC. Assessment of the patient's risk for cardiovascular diseaseD. Determination of oxygen saturation If the cpu is fast but the bus speed is slow, that condition is called? Determine the arclength of the curvex=t? + 3t + 5 Determine the arc - length of the curve: 3/2 |}4238* y==(2t+4)*+2 3 {21 (2+ + 4)"? A differentiated targeting strategy can allow a firm to obtain a bigger share of the overall market; this strategyA. is the cheapest option.B. requires the use of advanced advertising techniques.C. rarely works.D. is likely more costly than an undifferentiated strategy.E. is ineffective without multiple brand names. find the distance traveled in 15 seconds by an object traveling at a constant velocity of 20 feet per second PLS WILL GIVE BRAINLIEST!! 30 POINTS!! Create a 45-minute exercise routine that can help you increase your energy levels and concentration so that you can improve your concentration and productivity with your school work. This routine should include a warmup, a strength-training or cardio workout, and a cool down.Perform the exercise routine at least twice during the week, wait an extra day, and then revisit this discussion to answer the following questions.What were the parts of your 45-minute workout routine? List them all.Did you notice that your energy levels were higher after your exercise routines?Did you notice that your concentration and productivity increased after your workouts?Do you think your routine is an efficient way to increase energy levels and concentration? Why or why not?How could you change your exercise routine to improve it? The elevation of city A is 96 feet below sea level; the elevation of city C is 24 feet below sea level. The elevation of city D is [tex]\frac{1}{4}[/tex]of the elevation of city C. If I spend 35 every week for a year how much do I spend? In isosceles triangle ABC, AC is the base and AD is the angle bisector of A. What are the measures of the angles of this triangle if mADB=110? I have also tried 220/3 as the base angle, but that is incorrect. Thank you! To arrive at net cash provided by operating activities, it is necessary to report revenues and expenses on a cash basis. This is done by Which of the following is an example of segregation that occurred in spite ofthe Fourteenth Amendment?A. Blacks earned the same amount of money as whites who held similar jobs.B. Blacks could not eat at the same restaurants as whites.OC. Whites and Blacks lived together peacefully in the sameneighborhoods.D. Blacks and whites had to pay poll taxes in order to vote inelections.SUBMIt Which of the following statements is wrong?a. On an upper-air chart, wind tend to blow parallel to the isobars.b. On a surface map, wind tend to cross the isobars, blowing from high to low pressure area.c. In the Northern Hemisphere, surface wind tend to blow clockwise around the center of the low pressure area. Why are suspensions and colloids opposites concerning the way theparticles in them behave? Cul de las siguientes ideas del Barn de Montesquieu influy en los Padres Fundadores? Separacin de poderes Declaracin de independencia Contrato social Derecho natural during his presidency, teddy roosevelt did all of the following except a make the federal government a neutral force between business and labor. b aid the cause of the environment. c substantially weaken corporate capitalism. d expand presidential power. e shape the progressive movement. you are in a line at a drive-through and 10 cars are in front of you. you estimate that it is taking about 7 minutes per car to serve. how long do you expect to wait in line, in minutes? What 2 vocabulary words depend on each other, or "go hand in hand"?A. Feature & Variation B. Trait & Function C. Structure & and Function D. Structure & Protein Molecule If you know the answer help please! as i slide a box at constant speed up a frictionless slope, pulling parallel to the slope, the tension in the rope will be: