Python question
The following code achieves the task of adding commas and apostrophes, therefore splitting names in the list. However, in the case where both first and last names are given how would I "tell"/write a code that understands the last name and doesn't split them both. For example 'Jack Hansen' as a whole, rather than 'Jack' 'Hansen'.
names = "Jack Tomas Ponce Ana Mike Jenny"
newList = list(map(str, names.split()))
print(newList) #now the new list has comma, and apostrophe
Answer:
You can use regular expressions to match patterns in the names and split them accordingly. One way to do this is to use the re.split() function, which allows you to split a string based on a regular expression.
For example, you can use the regular expression (?<=[A-Z])\s(?=[A-Z]) to match a space between two capital letters, indicating a first and last name. Then use the re.split() function to split the names based on this regular expression.
Here is an example of how you can use this approach to split the names in your list:
(Picture attached)
This will give you the output ['Jack', 'Tomas', 'Ponce', 'Ana', 'Mike', 'Jenny', 'Jack Hansen']. As you can see, the name "Jack Hansen" is not split, as it matches the pattern of first and last name.
It's worth noting that this approach assumes that all first and last names will have the first letter capitalized and the last names capitalized too. If this is not the case in your data, you may need to adjust the regular expression accordingly.
Implement the method remove_all in the ArrayList class which takes the parameter x and removes all occurences of x from the list.
E.g., calling remove_all('a') on an ArrayList with contents ['a', 'b', 'r', 'a', 'c', 'a', 'd', 'a', 'b', 'r', 'a'] should result in the updated ArrayList ['b','r','c','d','b','r']
Answer:
a = ['a', 'b', 'r', 'a', 'c', 'a', 'd', 'a', 'b', 'r', 'a']
a = [x for x in a if x != 'a']
print(a)
Explanation:
The code is written in python
a = ['a', 'b', 'r', 'a', 'c', 'a', 'd', 'a', 'b', 'r', 'a']
a = [x for x in a if x != 'a']
print(a)
a = ['a', 'b', 'r', 'a', 'c', 'a', 'd', 'a', 'b', 'r', 'a']
I declared a variable a and stored the list of value.
a = [x for x in a if x != 'a']
I used list comprehension to loop through the array and find any value that is not 'a' .
print(a)
I printed every value that is not 'a' in the array.
using ven diagram, compare move tank to move steering
Note that move tank and move steering are two different methods of controlling a vehicle's movement.
Note that the details for the Venn Diagram are give as follows:
In the non-overlapping areas, the unique features of each method can be listed. For example:
The overlapping area could include similarities such as: both are methods of controlling a vehicle's movement, both involve motor(s) and/or mechanism(s).
What is a Move Tank and what is a Move Steering?Move tank refers to the use of two separate motors to control the speed and direction of the vehicle's left and right tracks or wheels.
Move steering, on the other hand, uses a single motor to control the direction of the vehicle's front wheels, while the speed is controlled by a separate motor or mechanism.
Learn more about vehicle movement:
https://brainly.com/question/30203868
#SPJ1
For some interest rate i and some number of interest periods n, the uniform series capital recovery factor is 0.1728 and the sinking fund factor is 0.0378. What is the interest rate?
The Interest Rate, where the Sinking Fund Factor (SFF) is 0.0378, and the Uniform Series Capital Recovery Factor (USCRF) is 21.74%.
What is Sinking Fund Factor?The Sinking Fund Factor (SFF) is a ratio that is used to determine the future worth of a sequence of equal yearly cash flows.
A sinking fund is an account where money is saved to pay off a debt or bond. Sinking money may aid in the repayment of debt at maturity or in the purchase of bonds mostly on the open market. Callable bonds with sinking funds may be recalled back early, depriving the holder of future interest payments.
The interest rate can be calculated by dividing the sinking fund factor by the uniform series capital recovery factor.
The formula for calculating the interest rate is as follows: r = SFF / USCF
Where r = Interest rate;
SFF = 0.0378 (Given) and
USCF = 0.1728 (Given)
Hence,
Interest rate (r) = 0.0378 / 0.1728
= 0.2174 or 21.74%
Therefore, the Interest Rate, where the Sinking Fund Factor (SFF) is 0.0378, and the Uniform Series Capital Recovery Factor (USCRF) amounts to 21.74%.
Learn more about Capital Recovery Factor:
https://brainly.com/question/24297218
#SPJ1
answered
How would you measure user satisfaction with a registration program at a college or university? What are the important features that would make students and faculty satisfied with the system?
Answer:
You could think about this in several ways with several approaches.
- Survey
- User testing in groups
- On the actual registration program, 3 questions pop up
With general open ended questions and by talking to users
Explanation:
- Demographics
- Ask them what they like about the registration program
- What they use the registration for
- What they would do to improve it
3
Drag each label to the correct location on the image.
An organization has decided to initiate a business project. The project management team needs to prepare the project proposal and business
justification documents. Help the management team match the purpose and content of the documents.
contains high-level details
of the proposed project
contains a preliminary timeline
of the project
helps to determine the project type,
scope, time, cost, and classification
helps to determine whether the
project needs meets business
needs
contains cost estimates,
project requirements, and risks
helps to determine the stakeholders
relevant to the project
Project proposal
Business justification
Here's the correct match for the purpose and content of the documents:
The Correct Matching of the documentsProject proposal: contains high-level details of the proposed project, contains a preliminary timeline of the project, helps to determine the project type, scope, time, cost, and classification, helps to determine the stakeholders relevant to the project.
Business justification: helps to determine whether the project needs meet business needs, contains cost estimates, project requirements, and risks.
Please note that the purpose and content of these documents may vary depending on the organization and specific project. However, this is a general guideline for matching the labels to the documents.
Read more about Project proposal here:
https://brainly.com/question/29307495
#SPJ1
In this lab, you write a while loop that uses a sentinel value to control a loop in a C++ program that has been provided. You also write the statements that make up the body of the loop.
The source code file already contains the necessary variable declarations and output statements. Each theater patron enters a value from 0 to 4 indicating the number of stars the patron awards to the Guide’s featured movie of the week. The program executes continuously until the theater manager enters a negative number to quit. At the end of the program, you should display the average star rating for the movie.
Instructions
Ensure the source code file named MovieGuide.cpp is open in your code editor.
Write the while loop using a sentinel value to control the loop, and write the statements that make up the body of the loop. The output statements within the loop have already been written for you.
Ensure you include the calculations to compute the average rating.
Execute the program by clicking the Run button.
Input the following: 0, 3, 4, 4, 1, 1, 2, -1
Ensure the average output is correct.
Strictly use the given code
// MovieGuide.cpp - This program allows each theater patron to enter a value from 0 to 4
// indicating the number of stars that the patron awards to the Guide's featured movie of the
// week. The program executes continuously until the theater manager enters a negative number to
// quit. At the end of the program, the average star rating for the movie is displayed.
#include
#include
using namespace std;
int main()
{
// Declare and initialize variables.
double numStars; // star rating.
double averageStars; // average star rating.
double totalStars = 0; // total of star ratings.
int numPatrons = 0; // keep track of number of patrons
// This is the work done in the housekeeping() function
// Get input.
cout << "Enter rating for featured movie: ";
cin >> numStars;
// This is the work done in the detailLoop() function
// Write while loop here
// This is the work done in the endOfJob() function
cout << "Average Star Value: " << averageStars << endl;
return 0;
} // End of main()
Following are the C++ program to calculating the average value.
Program Explanation:
Defining header file.Defining the main method.Defining three double variable "numStars,averageStars, and totalStars", and one integer variable "numPatrons".After declaring a variable, an input method is used that inputs an integer variable.In the next step, a while loop is declared that uses an integer variable to the check value between 0 to 4.Inside the loop, it adds the integer variable value and uses a conditional statement that checks integer value equal to 0, that hold 0 value into the "averageStars".In the else block it calculates the average value and prints its value.Program:
#include <iostream>//defining header file
#include <string>//defining header file
using namespace std;
int main()//main method
{
double numStars,averageStars,totalStars=0; // defining a double variable
int numPatrons = 0; //defining integer variable
cout << "Enter rating for featured movie: ";//print message
cin >> numStars;//input integer variable
while(numStars >= 0 && numStars<=4)//using while loop that use integer variable to check value in between 0 to 4
{
numPatrons++; // increasing integer variable value
totalStars += numStars; // using totalStars that adds numStars value in it
cout << "Enter rating for featured movie: ";//print message
cin >> numStars;//input double value
}
if(numPatrons == 0)//using if block that check integer value equal to 0
averageStars = 0;//holding value into averageStars
else//else block
averageStars = totalStars/numPatrons;//calculating averageStars value
cout << "Average Star Value: " << averageStars << endl;//print message with averageStars value
return 0;
}
Output:
Please find the attached file.
Learn more:
brainly.com/question/16665413
If you were to sort the Title field in tblBooks in a Descending order, in ms access which author would be at the top of the list? A. Linda Rode B. Robert Howard C.Isaac Asimov D. Roger D. Abrahams
If the Title field in the tblBooks table is sorted in descending order in MS Access, the author at the top of the list would be Linda Rode. So, the correct option is A.
Sorting the Title field in descending order means arranging the titles in reverse alphabetical order.
Out of the given authors, Linda Rode would be at the top of the list because her last name, "Rode," comes first alphabetically when compared to the other authors' last names. The other authors' last names are Howard, Asimov, and Abrahams.When sorting in descending order, the records are listed from Z to A or highest to lowest, depending on the sorting field. In this case, since we are sorting the Title field, which is a text field, the sorting would be in reverse alphabetical order.Therefore, Linda Rode, with her last name starting with "R," would appear at the top of the list. So, the correct choice is option A.
For more questions on author
https://brainly.com/question/32116759
#SPJ8
An employee’s total weekly pay equals the hourly wage multiplied by the total number of regular hours, plus any overtime pay.
Overtime pay equals the total overtime hours multiplied by 1.5 times the hourly wage.
Write a program that takes as inputs the hourly wage, total regular hours, and total overtime hours and displays an employee’s total weekly pay.
Below is an example of the program inputs and output:
Enter the wage: $15.50
Enter the regular hours: 40
Enter the overtime hours: 12
The total weekly pay is $899.0
wage = float(input("Enter the wage: $"))
regular_hours = float(input("Enter the regular hours: "))
overtime_hours = float(input("Enter the overtime hours: "))
print(f"The total weekly pay is ${(regular_hours * wage) + ((wage*1.5) *overtime_hours)}")
I hope this helps!
When gathering information, which of the following tasks might you need to
perform?
OA. Fill out forms, follow procedures, and apply math and science
OB. Seek out ideas from others and share your own ideas
C. Apply standards, such as measures of quality, beauty, usefulness,
or ethics
OD. Study objects, conduct tests, research written materials, and ask
questions
Answer:
OD.OD. Study objects, conduct tests, research written materials, and ask
The following equation estimates the average calories burned for a person when exercising, which is based on a scientific journal article (source): Calories = ( (Age x 0.2757) + (Weight x 0.03295) + (Heart Rate x 1.0781) — 75.4991 ) x Time / 8.368 Write a program using inputs age (years), weight (pounds), heart rate (beats per minute), and time (minutes), respectively. Output the average calories burned for a person. Output each floating-point value with two digits after the decimal point, which can be achieved as follows: print('Calories: {:.2f} calories'.format(calories))
A Python program that calculates the average calories burned based on the provided equation is given below.
Code:
def calculate_calories(age, weight, heart_rate, time):
calories = ((age * 0.2757) + (weight * 0.03295) + (heart_rate * 1.0781) - 75.4991) * time / 8.368
return calories
# Taking inputs from the user
age = float(input("Enter age in years: "))
weight = float(input("Enter weight in pounds: "))
heart_rate = float(input("Enter heart rate in beats per minute: "))
time = float(input("Enter time in minutes: "))
# Calculate and print the average calories burned
calories = calculate_calories(age, weight, heart_rate, time)
print('Calories: {:.2f} calories'.format(calories))
In this program, the calculate_calories function takes the inputs (age, weight, heart rate, and time) and applies the given formula to calculate the average calories burned.
The calculated calories are then returned from the function.
The program prompts the user to enter the required values (age, weight, heart rate, and time) using the input function.
The float function is used to convert the input values from strings to floating-point numbers.
Finally, the program calls the calculate_calories function with the provided inputs and prints the calculated average calories burned using the print function.
The '{:.2f}'.format(calories) syntax is used to format the floating-point value with two digits after the decimal point.
For more questions on Python program
https://brainly.com/question/26497128
#SPJ8
Explain why there are more general-purpose registers than special purpose registers.
Answer:
Explanation:
General purpose registers are used by programmer to store data whereas the special purpose registers are used by CPU for temporary storage of the data for calculations and other purposes.
Explain Levy flight ?
Answer:A Lévy flight is a random walk in which the step-lengths have a Lévy distribution, a probability distribution that is heavy-tailed. When defined as a walk in a space of dimension greater than one, the steps made are in isotropic random directions.
Explanation:
will give 20 point need help Mrs. Martin wants to copy a poem from one Word document and add it into a new document. What is the most efficient way for her to do this?
Question 2 options:
Retype the poem
Use keyboard shortcuts to copy and paste the poem
Take a picture of the poem on her phone
Email the poem to herself
The answer of the question based on the Mrs. Martin wants to copy a poem from one Word document and add it into a new document the correct option is Use keyboard shortcuts to copy and paste the poem.
What is Shortcuts?shortcuts are quick and convenient ways to perform tasks and access files or programs on a computer. Shortcuts can be created for a wide range of purposes, including launching applications, opening files or folders, executing commands, and more.
Shortcuts are typically represented by icons, which can be placed on the desktop, taskbar, or start menu for easy access. They can also be assigned keyboard shortcuts for even faster access.
The most efficient way for Mrs. Martin to copy a poem from one Word document and add it into a new document is to use keyboard shortcuts to copy and paste the poem. This is faster and easier than retyping the poem, taking a picture of the poem, or emailing the poem to herself.
To know more about Keyboard visit:
https://brainly.com/question/30124391
#SPJ1
1.
A unique characteristic of the sports industry is that it seeks to attract markets that will
perform which action?
A. Demand mostly tangible products
B. Have consumers with artistic talent
c. include spectators and participants
D. Are concerned with environmental issues
Answer:
D. Are concerned with environmental issues is the answer
What intangible benefits might an organization obtain from the development of an
information system?
Answer:
The immaterial benefits stem from the development of an information system and cannot easily be measured in dollars or with confidence. Potential intangible advantages include a competitive need, timely information, improved planning and increased flexibility in organisation.
Explanation:
Intangible advantages
Take faster decisionsCompetitive needMore information timelyNew, better or more information availability.Lower productivity and the lack of 'think outside' employees and managers as well as greater sales include the intangible costs of such an operational environment. All these factors improve when employees spend less of their time in addressing current methods of operation and are concerned about whether they will have a job or an employer in six months or a year. The automation level envisaged in this new system should enhance the overall efficiency of management. The operative controls and design functions should be simplified by tight system integrations with accessible automated database sources. However, it is difficult to describe the exact form of these simplifications.
Tangible costs of the new system include costs of analysis, design and construction of the system, such as the recruitment of contractors or new employees, and the assignment of existing staff. Also consideration shall be given to hardware, software purchased and operating costs. Intangible costs include disturbances to the current activities caused by development and deployment and potential adverse effects on the morals of employees.
While the new system may feel good in the long term, short-term stress and other negative consequences will still be present. In the way that Reliable does virtually everything, the system is the focus of a major change. An organisation's monumental change has widespread negative effects on operations and employees.
Assignment
Write a assembly program that can display the following shapes:
Rectangle
Triangle
Diamond
The program will read an input from the user. The input is terminated with a period. So the program will continue to run until a period is read.
The data the program reads is as follows:
A shape command followed by parameters.
R stands for Rectangle. The parameters are height (rows) and width (columns)
T stands for Triangle. The parameters is base width
D stands for Diamond. The parameters
Your program needs to read the input and based on the input do the following:
Print your name
Then print the name of the shape
Then the shape below it.
Sample input:
R 03 10
T 05
D 11
.
Output:
Loay Alnaji
Rectangle
**********
**********
**********
Triangle
*
***
*****
Diamond
*
***
*****
*******
*********
***********
*********
*******
*****
***
*
Requirements
Your main should only be the driver. It should only read the "shape type", based on that, call the proper function to read the parameters and draw the shape.
Example of your main (just example, pseudocode):
loop:
read shape
if shape is '.' then exit
if shape is 'R'
call Rectangle Function
if shape is 'D'
call Diamond Function
if shape is 'T'
Call Triangle Function
go to loop
The program above is one that begins with the _begin name, which is the passage point of the program.
What is the program about?The program uses framework call int 0x80 to print your title on the screen utilizing the compose framework call. It loads the suitable values into the registers (eax, ebx, ecx, edx) to indicate the framework call number, record descriptor, buffer address (where the title is put away), and length of the title.
It checks in case the shape input may be a period (.), which demonstrates the conclusion of input. In case so, it bounced to the exit name to exit the program.
Learn more about program from
https://brainly.com/question/23275071
#SPJ1
What is the biggest pet in the world
Zeus, a Great Dane from Otsego, Michigan, was the tallest dog in the world. Zeus measured 44 inches tall and 7 feet, 4 inches long when standing on his hind legs, according to the Guinness World Records.
Zeus' owner Kevin Doorlag noted that in spite of his imposing size, he frequently went to hospitals and schools as a therapy dog.
Zeus, a Great Dane from Otsego, Michigan, was well-known for being dubbed the "world's tallest dog" by the Guinness Book of World Records in 2012 and 2013.
The tallest dog in the world at the time was Zeus, a Great Dane from Otsego, Michigan.
Learn more about dog, here:
https://brainly.com/question/28357271
#SPJ1
Choose the correct option.
Which of the following infection types can send information on how you use your computer
to a third party without you realizing it?
Spyware accumulates your personal information and passes it on to curious third parties without your knowledge or consent.
Spyware is also learned for installing Trojan viruses.
What is spyware?
Spyware is a type of malicious software or malware that is established on a computing device without the end user's knowledge. It plagues the device, steals exposed information and internet usage data, and relays it to advertisers, data firms, or external users.
How do hackers utilize spyware?
Spyware monitors and logs computer use and activity. It celebrates the user's behavior and finds vulnerabilities that allows the hacker to see data and other personal details that you'd normally consider confidential or sensitive.
To learn more about Spyware, refer
https://brainly.com/question/7126046
#SPJ9
Integers limeWeight1, limeWeight2, and numKids are read from input. Declare a floating-point variable avgWeight. Compute the average weight of limes each kid receives using floating-point division and assign the result to avgWeight.
Ex: If the input is 300 270 10, then the output is:
57.00
how do I code this in c++?
Answer:
Explanation:
Here's the C++ code to solve the problem:
#include <iostream>
using namespace std;
int main() {
int limeWeight1, limeWeight2, numKids;
float avgWeight;
cin >> limeWeight1 >> limeWeight2 >> numKids;
avgWeight = (float)(limeWeight1 + limeWeight2) / numKids;
cout.precision(2); // Set precision to 2 decimal places
cout << fixed << avgWeight << endl; // Output average weight with 2 decimal places
return 0;
}
In this program, we first declare three integer variables limeWeight1, limeWeight2, and numKids to hold the input values. We also declare a floating-point variable avgWeight to hold the computed average weight.
We then read in the input values using cin. Next, we compute the average weight by adding limeWeight1 and limeWeight2 and dividing the sum by numKids. Note that we cast the sum to float before dividing to ensure that we get a floating-point result.
Finally, we use cout to output the avgWeight variable with 2 decimal places. We use the precision() and fixed functions to achieve this.
The student can code the calculation of the average weight of limes that each kid receives in C++ by declaring integer and double variables, getting input for these variables, and then using floating-point division to compute the average. The result is then assigned to the double variable which is displayed with a precision of two decimal places.
Explanation:To calculate the average weight of limes each kid receives in C++, declare three integers: limeWeight1, limeWeight2, and numKids. Receive these values from input. Then declare a floating-point variable avgWeight. Use floating-point division (/) to compute the average weight as the sum of limeWeight1 and limeWeight2 divided by the number of kids (numKids). Assign this result to your floating-point variable (avgWeight). Below is an illustrative example:
#include
cin >> limeWeight1 >> limeWeight2 >> numKids;
}
Learn more about C++ Programming here:
https://brainly.com/question/33453996
#SPJ2
What is eight bits of data called?
8 bits: octet, commonly also called byte.
You're a consultant for a large enterprise that needs a comprehensive IP addressing and DNS management solution for its physical and virtual networks. The enterprise has a primary office in Pittsburgh and three branch offices in Los Angeles, New York, and Miami. It has IT support staff only in the branch offices.The enterprise's server specialists are located in Pittsburgh. The IT directory in Pittsburgh wants to offload some of the IPAM management functions to some of the IT staff without giving them broader domain or forest administrative right. Which type of IPAM architecture do you recommend? Which features of IPAM are you likely to recommend using to address the requirements?
The type of IPAM architecture that I will recommend is the Centralized IPAM. The centralized IPAM server when deploy can help to address the issue.
What is IPAM?IPAM (IP Address Management) is known to be a kind of administration of DNS and DHCP. This is known to be a network services that helps and handles IP addresses to machines in a TCP/IP network.
The Centralized Repository can help administrators to maintain or keep a good, correct and current records of all their IP assignments and left over addresses.
Learn more about IPAM from
https://brainly.com/question/24930846
By using ONLY the language of C++,
How many times the loop will be executed?
int odd = 1, sum = 2, count = 9;
do {
sum = sum + odd;
odd = odd + 2;
cout >> sum
count = count + 1;
}
while (count < 10)
}
MCQs:
A) 1
B) 2
c) 0
d) 3
Answer:
0
Explanation:
Answer: Syntax error. So it would be 0.
After correcting syntax it would be 1
Explanation:
Braces never started in beginning but put in the end after while loop
What is your biggest concern when it comes to purchasing a used phone or laptop?
Answer:
quality
Explanation:
if i know about the phone or laptop quality and quantity then i can know which is important if i buy.
i can give you example by laptop. For example i want to get buy laptop. i should know about the quantity and quality. then if i choose quantity i can buy so many laptops if they are more than 3 laptops and i get it in low price. then i take it and i try to open the laptops for some other thing to do but they cant opened so it means it has lowest quality.
and if i choose the quality. may be i can't buy more than 1 laptops but the qulaity of the laptops is high so when i open the laptop it opened
Notequality is the superiority or the quality level of a things.
quantity is the abundance or the quantity level of a thing
How has the rise of mobile development and devices impacted the IT industry, IT professionals, and software development
Answer:
Throughout the interpretation section elsewhere here, the explanation of the problem is summarized.
Explanation:
The growth of smartphone production and smartphone apps and services, as well as the production of smartphones, has had a positive influence on the IT industry, IT practitioners, as well as the development of the technology. As normal, the primary focus is on smartphone apps instead of just desktop software. As we recognize, with innovative features, phone applications, and smartphones are all made, built, modernized every day, and always incorporated with either the latest technology.This has now resulted in far more jobs and employment for the IT sector, and therefore new clients for service-based businesses. It provided various-skilling the application production industry for IT experts including learning how to work on emerging technology. The demand for software production and software growth is evolving at a greater speed than it's ever been, so the increase of smartphone production and smartphones has had a very beneficial effect on perhaps the IT sector, IT practitioners, and business development.Design a program that asks the User to enter a series of 5 numbers. The program should store the numbers in a list then display the following data: 1. The lowest number in the list 2. The highest number in the list 3. The total of the numbers in the list 4. The average of the numbers in the list
Answer:
The program in Python is as follows:
numbers = []
total = 0
for i in range(5):
num = float(input(": "))
numbers.append(num)
total+=num
print("Lowest: ",min(numbers))
print("Highest: ",max(numbers))
print("Total: ",total)
print("Average: ",total/5)
Explanation:
The program uses list to answer the question
This initializes an empty list
numbers = []
This initializes total to 0
total = 0
The following loop is repeated 5 times
for i in range(5):
This gets each input
num = float(input(": "))
This appends each input to the list
numbers.append(num)
This adds up each input
total+=num
This prints the lowest using min() function
print("Lowest: ",min(numbers))
This prints the highest using max() function
print("Highest: ",max(numbers))
This prints the total
print("Total: ",total)
This calculates and prints the average
print("Average: ",total/5)
what is computer animation?
Answer:
Animation means giving life to any object in computer graphics. It has the power of injecting energy and emotions into the most seemingly inanimate objects. Computer-assisted animation and computer-generated animation are two categories of computer animation. It can be presented via film or video.
Explanation:
Computer animation is the process used for digitally generating animated images. The more general term computer-generated imagery encompasses both static scenes and dynamic images, while computer animation only refers to moving images hope this helps plz mark branilest :P
Question #5
Multiple Choice
Which of these is a feature of a vector graphic?
1. photorealism
2. wireframe
3. quality loss when resizing
4. pixels
Vector graphics are photorealistic and as such a feature of a vector graphic is photorealism.
What is a vector graphic?A vector graphics are graphics that are made up of paths, that is they are known by a start and end point, in line with other points, curves, etc. as seen along the way.
Note that in vector graphics, A path can be made of a line, a square, a triangle, etc.
Learn more about vector graphic from
https://brainly.com/question/7205645
Answer:
wireframe
Explanation:
got it right on edge
What is social displacement? Question 22 options: the gained efficiency in being able to communicate through technology , the act of moving files from your computer to an external site , the risk of being "unfriended" by someone on social media , the reduced amount of time we spend communicating face to face
Answer: The Answer should be D
Explanation: It's the definition.
.....................................................
Answer:
i think its, a. sequence
Explanation:
i could be wrong, if i am, i am sorry