Structure members cannot be initialized like other variables inside the structure definition. This is because when a structure is defined, no memory is allocated to the structure's data members at this point. Memory is only allocated when a structure variable is declared.
How do you commit to long-term memory?
Use repetition to firmly lodge information in your memory. Repetition techniques can involve things like flash cards, using the simple tips in this section, and self-testing. Space out your studying and repetition over several days, and start to increase the time in between each study session.
Why do we lose our memories?
Sometimes we seem to be unable to access memories, even when they are present. Encoding errors and a lack of retrieval cues are two of the primary causes of this memory retrieval failure. We frequently forget information because it was never stored in our long-term memory in the first place.
To know more about memory until visit;
https://brainly.com/question/4279199
#SPJ4
Which design principle is the subject of a photo or image?
A) Focal Point
B) Framing
C) Field of view
D) Space
E) Rule of thirds
Answer:
B) Framing is the answer to your question
python how to get multiple lines of input with a loop
Answer:
4 Ways to take multiple inputs in list in Python. The basic way of using a loop. Usingc map () method.
Explanation:
1. take multiple inputs in Python list using loop. The first method is a simple method of using a loop and then appending the input in a list
2. map () method to take multiple inputs in Python list. Second technique which we can use is by using the map () method
3. take multiple inputs List of list as input. Next technique is by using a list of lists and appending the elements in a list
Python Program to take list of list input
What are the different types of topology? in details
Answer:
NETWORK TOPOLOGY .This tefers to how nodes are connected to the network.
Types of topology.
Physical topology.Logical topology.In physical topology,nodes are connected physically using wires(cables).
Types of physical topology include:
Bus topologyTree topologyHybrid topologyStar topologyRing topology.Hope it helps you,any question so far...comment !!!
\(\huge\mathcal{♨ANSWER♥}\)
Geometric representation of how the computers are connected to each other is known as topology. There are five types of topology.
They are,
Bus topologyRing topologyStar topologyMesh topologyTree topology ♻Bus topologyBus topology, also known as line topology, is a type of network topology in which all devices in the network are connected by one central RJ-45 network cable or coaxial cable. The single cable, where all data is transmitted between devices, is referred to as the bus, backbone, or trunk.
♻Ring topologyRing topology is a type of network topology in which each device is connected to two other devices on either side via an RJ-45 cable or coaxial cable. This forms a circular ring of connected devices which gives it its name. Data is commonly transferred in one direction along the ring, known as a unidirectional ring.
♻Star topologyStar topology is an implementation of a spoke–hub distribution paradigm in computer networks. In a star network, every host is connected to a central hub. In its simplest form, one central hub acts as a conduit to transmit messages. The star topology is one of the most common computer network topologies.
♻Mesh topologyA mesh topology is a network setup where each computer and network device is interconnected with one another. This topology setup allows for most transmissions to be distributed even if one of the connections goes down. It is a topology commonly used for wireless networks.
♻Tree topologyA tree topology is a special type of structure where many connected elements are arranged like the branches of a tree. For example, tree topologies are frequently used to organize the computers in a corporate network, or the information in a database.
☆...hope this helps...☆
_♡_mashi_♡_
Fundamental of Computer Science
Prompt:
What is a class that you believe you could learn just as well in an online class as an in
person class? What is a class that you think you need to have in person if you want to learn
and pass the course? How are these subjects different? What factors contributed to your
decision?
Answer:
Coding and Hardware Hacking
Explanation:
You can learn coding just as well through a online class or even on the internet through yo*tube than an in person class whereas it would be alot easier learning hardware hacking in person because you are given the opportunity to ask and can be corrected for small mistakes due to the task being manual. Coding can be learnt online independently if needed although so can hardware hacking but having a teacher to correct you and teach you handy tricks from their experience will get you further in that sense.
A distributed database is a collection of several different databases distributed among multiple computers. discuss why a company would want a distributed database?
A company may want a distributed database for several reasons.
How is this so?Firstly, it enhances scalability and performance by distributing data across multiple servers,allowing for parallel processing and faster data retrieval.
Secondly, it improves reliability and fault tolerance, as data redundancy and replication reduce the risk of data loss or system failure.
Also , a distributed database enables geographically dispersed teams to access and update data simultaneously, promoting collaboration and efficiency.
Learn more about database at:
https://brainly.com/question/518894
#SPJ1
Drag the tiles to the correct boxes to complete the pairs.
Match each cloud service with its cloud component.
IaaS
SaaS
MaaS
PaaS
monitoring tools
arrowRight
storage and network devices
arrowRight
virtual computing platform
arrowRight
software upgrades and patches
arrowRight
IaaS- virtual computing platform, SaaS- software upgrades and patches, MaaS- monitoring tools, PaaS- storage and network devices.
What is SaaS and PaaS?SaaS (Software as a Service): This attribute of cloud computing aids in the development of the business for which the software is offered. It enhances operating systems, middleware, timely data transmission, and task management, among other things.
PaaS (Platform as a Service) is a feature that functions as a framework for the development of applications. It aids in the development, testing, and upgrading, of the software.
Therefore, SaaS is software upgrades and patches.
Learn more about SaaS, here:
https://brainly.com/question/13485221
#SPJ1
IaaS- virtual computing platform, SaaS- software upgrades and patches, MaaS- monitoring tools, PaaS- storage and network devices.
What is SaaS and PaaS?
SaaS (Software as a Service): This attribute of cloud computing aids in the development of the business for which the software is offered. It enhances operating systems, middleware, timely data transmission, and task management, among other things.
PaaS (Platform as a Service) is a feature that functions as a framework for the development of applications. It aids in the development, testing, and upgrading, of the software.
Complete the sentence.
Privacy is about having
blank
our personal data.
Privacy is about having control over our personal data.
Answer:
Privacy is about keeping our personal information
___confidential___
Explanation:
Correct on Edge2023
I know this is a different question on the quiz, but it's hard to find answers to these sometimes, so I hope this makes your day a little bit easier. Happy learning!
An acronym is a word formed from the initial letters of words in a set phrase. Write a program whose input is a phrase and whose output is an acronym of the input. Append a period (.) after each letter in the acronym. If a word begins with a lower case letter, don't include that letter in the acronym. Assume the input has at least one upper case letter.
The provided Python program takes a phrase as input and generates an acronym by taking the first letter of each word that starts with an uppercase letter. It appends a period after each letter in the acronym.
The program's input is a phrase, and the program output is an acronym of the input. It appends a period (.) after each letter in the acronym. If a word starts with a lowercase letter, the program won't include that letter in the acronym.
The code below is solving the given problem statement. def main(): phrase = input().split() acronym = "for word in phrase: if word[0].isupper(): acronym += word[0] + "." print(acronym)if __name__ == "__main__": main()
Let's understand the above code. The input () function is used to take a phrase from the user, and it's saved in the phrase variable. Then, a variable acronym is declared, which stores the acronym of the phrase entered by the user. The split () method is used to convert the string into a list of words.
The program then checks whether the first letter of the word is in uppercase or not. If the first letter of the word is in uppercase, it is added to the acronym. The program appends a period (.) after each letter in the acronym. Finally, the program prints the acronym of the input phrase.
The if __name__ == "__main__" block is executed when the script is run directly, and the main () function is called.
Learn more about Python program: brainly.com/question/26497128
#SPJ11
If you had an idea for a new software company, what would be the best approach to help make it a successful business? develop a business plan to describe how to maintain and grow revenues go back to school to get a degree in IT business administration hire employees who understand the software development industry seek out financial support for venture capital, angel investors and grants
Answer:
(A). Develop a business plan to describe how to maintain and grow revenues
Explanation:
I got it right on edge2020.
If you had an idea for a new software company, develop a business plan to describe would be the best approach to help make it a successful business.
What is software company ?A business whose main offerings are different kinds of software, software technology, distribution, and software product creation is known as a software firm. They are what make up the software sector.
For corporations or customers, software development organizations create, create, and maintain apps, frameworks, or other software components.
Software may make your organization run more effectively in addition to enabling your computer hardware to execute crucial functions. Even new working methods can be developed with the correct software.
As a result, it is a vital company asset, and you should carefully select your software so that it meets your
Thus option A is correct.
To learn more about software company follow the link below;
https://brainly.com/question/10949949
#SPJ5
The internet service that allows users to navigate among many pages is.
Answer:
The world wide web
Explanation:
The world wide web is a hypertext information system that links internet documents and allows users to navigate through the Web, by using a computer mouse to click on “links” that go to other web pages.
Tell me what does WSG mean
Answer:
It could mean many different things but heres some things it could
With Special Guest
World Standard Group
Web Security Guard
Hope this helps!
I never thought this would happen to me, but it really did. My name is Chad and I am a professor at a university in New York City. Last Wednesday, I woke up and went into the bathroom to brush my teeth. I turned on my new electronic toothbrush to clean my shoes and the toothbrush exploded in my hand. I think I lost a finger.
I left my apartment and headed to class. I stopped at McDunold’s for breakfast. I usually get along with everyone, but the employee "A" behind the counter, looked at me and said he was going to immediately beat me up for not saying good morning. I sort of laughed because he could barely reach over the counter and couldn’t reach me.
I left to get something to eat at Sumbuck’s. I ordered coffee and a muffin but realized I didn’t have $35.45 to pay for meal. When I attempted to leave the store, the security guard "B" blocked the exit with his body and said I had been observed stealing something. I told "B" to leave me alone and tried to leave, but the security guard punched me, breaking my nose. He said if I tried to leave, he would hit me again even harder. The police arrived 4 hours later. I was searched and when the police didn’t find anything, I was let go.
I went straight to class, so I wouldn’t be late. I went to sit down in my chair when student "C" pulled the chair out from under me. I fell to the ground and fractured my arm. I went to punch "C" but her friend "D" stepped in between us and said; Oh no you don’t and punched me in the eye. I fell to the ground and got a black eye from the punch and a broken ankle from the fall.
To make matters worse, while I was laying on the floor, student "E" took my watch and walked away. When I told student "E" to give it back, "E" told me it was lost.
During the break, I decided I needed a martini to calm my nerves. I went to Breakman’s Bar, but it was closed. I entered through an open window and knocked over a bottle of 1000 proof vodka. The fall of the bottle ignited a fire that spread to the back of the store where fireworks were stored causing an explosion that caused the outside Breakman sign to fall on pedestrian" and now "F" is suing me.
I went to sit outside the Pace quad to read news stories on the Yahuu website, when I read this article: Chad breaks up Pete Davidson and Kim Kardashian. His continuous stalking was too much for them to take. I know it wasn’t true.
I went to leave the park when Pace security "G" approached me and said it was private property and that I was trespassing.
And this was one of my better days.
Chad, a professor at a university in New York City, had a series of unfortunate incidents that led to a chaotic and stressful day.
It started with his electronic toothbrush exploding in his hand, resulting in a potential loss of a finger. Later, he encountered hostility from an employee at McDunold's who threatened him, followed by an altercation with a security guard at Sumbuck's, resulting in a broken nose. In class, he faced physical harm from a fellow student, causing a fractured arm and a black eye, and also had his watch stolen. To add to his misfortune, an accident at Breakman's Bar resulted in a fire and subsequent explosion, leading to a pedestrian suing him. Lastly, he faced confrontation from Pace security for trespassing.
Chad's story highlights a series of unfortunate events that unfolded throughout his day, resulting in physical injuries, theft, legal consequences, and emotional distress. It serves as a reminder of how unexpected and challenging situations can arise, causing significant disruptions to one's life.
Learn more about confrontations here:
https://brainly.com/question/2396609
#SPJ11
from within the dataset on the books sheet, create a pivottable to add the data to the data model.
To create a PivotTable and add the data to the data model from within the dataset on the "Books" sheet, you can follow these steps:
1. Select the range of data you want to include in the PivotTable, including the column headers.
2. Go to the "Insert" tab in Excel's ribbon.
3. Click on the "PivotTable" button. A dialog box will appear.
4. In the dialog box, make sure the "Select a table or range" option is selected.
5. Verify that the "Table/Range" field displays the correct range of data.
6. Choose the location where you want to place the PivotTable. You can either select an existing worksheet or create a new worksheet.
7. Click "OK" to create the PivotTable.
The PivotTable will be inserted into the specified location, and you can now start analyzing and summarizing your data using various fields and calculations.
When you add the data to the data model while creating the PivotTable, you are essentially leveraging Excel's Power Pivot feature. The data model allows you to establish relationships between multiple tables, create calculated columns and measures, and perform more advanced analysis.
By incorporating the data into the data model, you gain additional flexibility and capabilities in your analysis. You can combine data from different sheets or external sources, create complex calculations using DAX (Data Analysis Expressions), and utilize advanced features such as slicers, timelines, and hierarchies.
The data model enhances the functionality and performance of your PivotTable by enabling faster calculations, improved data organization, and the ability to handle larger datasets. It provides a comprehensive framework for working with multiple tables and unleashing the full power of Excel's analytical capabilities.
In summary, by adding the data to the data model while creating a PivotTable, you can leverage Excel's Power Pivot feature, establish relationships between tables, perform advanced calculations, and enhance the overall analysis and reporting capabilities of your data.
Learn more about PivotTable here:
brainly.com/question/27813971
#SPJ11
Imagine you are the human resource director for a small video game company that employs around 20 coders, managers, artists, etc. You're in charge of writing the safety rules and regulations for the company. Provide at least four discrete rules you would implement
Answer: maybe not put cheats no secret or easter eggs or hard challenges im not sure
Explanation:
The four discrete rules one would implement can be
Provide no confidential company information to anyone who is not an employee of the company.Acknowledge sources obtained from other people's games or anything else with a copyright claim.Avoid abusing your power by cheating or abusing the games to benefit yourself or your associates.Maintain a positive workplace culture and show the utmost respect to everyone to increase productivity.What is a manager?A manager refers to a person who is responsible head of any project and helps in arranging the resources, checking the progress, and timely completion of it in order to achieve the vision and goal of the organization.
Preventing workplace diseases and injuries, as well as the suffering and financial burden they can bring on employees, their families, and employers are the fundamental objective of safety and health initiatives.
Learn more about managers, here:
brainly.com/question/29023210
#SPJ5
Activity Universal Usability Visit each of the following web pages and evaluate their usability. Describe components that show adaptability for different users and provide suggestions, if any, to improve the usability of the website. Part A
Users may easily locate and navigate through various sections of the website because to its simple and well-organized style.
What are the usability's five elements?Usability can be divided into five different aspects because it is not a single, one-dimensional characteristic of a user interface. These qualities are learnability, effectiveness, memorability, mistakes, and contentment.
What are the 4 usability levels?Any product, system, or website can generally be tested for usability using one of four different ways. Model/metrics based, inquiry, inspection, and testing methods are some categories for usability testing techniques.
To know more about website visit:-
https://brainly.com/question/19459381
#SPJ1
Question:-
Activity: Universal Usability
Visit each of the following web pages and evaluate their usability. Describe components that show adaptability for different users and provide suggestions, if any, to improve the usability of the website.
Part A:
Website: https://www.nytimes.com/
Website: https://www.bbc.com/
Part B:
Website: https://www.target.com/
Website: https://www.walmart.com/
Tracy always starts facing which direction?
Answer:
tracy starts facing east
Explanation:
The time Yanni runs to catch Tracy is 20 minutes.
We are given that;
Speed of tracy= 1mile in 10min
Now,
We need to find the distance that Tracy and Yanni have traveled when they meet.
Let x be the time (in minutes) that Yanni runs, then Tracy runs for x + 20 minutes.
Since their speeds are given in miles per minute, we can write the following equations:
Distance traveled by Tracy = 1/10 * (x + 20)
Distance traveled by Yanni = 1/5 * x
They meet when their distances are equal, so we can set the equations equal and solve for x:
1/10 * (x + 20) = 1/5 * x
Multiply both sides by 10 to clear the fractions: x + 20 = 2x
Subtract x from both sides: 20 = x
Therefore, by algebra the answer will be 20 minutes.
More about the Algebra link is given below.
brainly.com/question/953809
#SPJ6
The complete question is;
Tracy is running a trail in Hanna park she can run 1 mile in 10 minutes Yanni is running the same trail as Tracy Johnny can run a mile in five minutes but starts running 20 minutes after Tracy started on the trail if they started the trail from the same point how long will it take Yanni to catch Tracy
which part of a resume gives an account of past jobs and internships
Education
Experience
Skills
Reference
Answer:
experience. shows work history
Answer:
the answer is: Experience
9. Alice Builds a Cache Complete the blanks in the following question with the appropriate answer. Alice P. Hacker has two types of memory that she's using to build his system in which to store her objects. The first type, type A, is extremely fast, but it's expensive and she doesn't have much of it. She has 10GB of type A memory that can being used to store A objects, and reading an object from this memory takes 1ms. The second type of memory, type Z, is a lot slower, but it's cheap, and so Alice bought a lot of it. She has 1TB of the second type of memory that she can use to store objects, and reading an object from this memory takes 100ms. Alice decides she's going to build a system where she keeps all of her objects in the second type of memory, and then also keeps copies of some of those objects in the first type so that she can do some of her reads more quickly. Alice has 2048 objects, all of the same size, which use up all of her second type of memory storage. Alice decides to analyze different ways to pick and choose what she keeps in her type A memory, and how they affect her expected object read performance. Please round all answers to 3 decimal places If Alice is naive and decides to randomly fill her type A memory with objects and never change it, what is her expected time to read 10 randomly selected objects out of the 2048 (in ms)? ms Alice now runs a workload where she reads 20 objects per minute. 50% of the objects she reads are objects she's seen in the past 30 seconds, and the other 50% of the objects are randomly chosen from the full 2048. Using the same naive strategy as before, what is her expected average read time for an object with this workload? ms Alice tries to improve her performance. She decides that every time she reads an object, if it is not in her type A memory, she will put it there. When she needs to remove something, she will remove the thing that she read least recently. What is Alice's average read time per object in the best case scenario? ms What is Alice's average read time per object in the worst case scenario? ms
If Alice is naïve and decides to randomly fill her type A memory with objects and never change it, her expected time to read 10 randomly selected objects out of the 2048 would be 50ms.
What is the Cache about?With the workload of reading 20 objects per minute, where 50% of the objects are objects she's seen in the past 30 seconds, and the other 50% are randomly chosen from the full 2048, her expected average read time for an object with this naive strategy would be 75ms.
If Alice decides to improve her performance by putting an object in her type A memory every time she reads it and removing the least recently read object when she needs to remove something, in the best case scenario, her average read time per object would be 1ms.
Therefore, In the worst case scenario, her average read time per object would be 50.5ms.
Learn more about Cache from
https://brainly.com/question/6284947
#SPJ1
What is Ms small basic
Answer:
Ms small basic is: Microsoft Small Basic
Explanation:
Microsoft Small Basic is a programming language and associated IDE. This is a simplified variant of Microsoft's BASIC programming language, intended as an easy programming language for beginners. ... The language has only 14 keywords.
Hope this helps..
Good Luck!
In a paragraph of 125 words, identify one value you are looking for in an employer and explain why it is important to you. For instance, is it important to you that your employer support a leave of absence for the purpose of humanitarian efforts such as those that resulted from the 2010 earthquake and hurricane in Haiti? Please answer fast
Answer:
An important value I have for an employer is empathy mostly due to my experience with employers. In previous employers they are very not understanding of anyone’s situation regardless of what it is, they don't care about what's going on in your life all they care is that you work. They don’t want to give you the time off, they don’t care about your concerns, they just overall do not care. Some employers are just kind of like that, and that's okay. Not every employer is going to be a perfect fit for me. Overall if I could have an employer that is understanding and isn't going to fire me or scream at me the second I make even the slightest mistake was and is always the dream.
Answer:
I think it’s an important value for employer to have empathy. employers are not always very understanding of other peoples situation/homelife, they don't care about what's going on in your life all they care is that you work for them.They don’t want to give you the time off or money, they don’t normally care about your concerns. Some employers can be rude but that there job to find the best employeesthat's Not every employer is going to be a perfect fit.Overall having an employer that is somewhat understanding and isn't going to fire me for a little mistake or yell at me If I don’t do something the exact way they wanted it to be. In the end we all make mistake human and hopefully the employer gives you the benefit of the doubt
Explanation:
On the new iOS version, can you save photos from ‘review confirmed photos’? If so, how? Thanks!
Answer:
No i dont think you can i was searching on ios websites for info cause i dont own one but it doesnt seem like you can ive been searching for quite a while now doesnt look like it tho
which type of hypervisor runs directly on the computer’s hardware? a. type i b. type ii c. type iii d. type iv
Answer:
Explanation:
The type of hypervisor that runs directly on the computer's hardware is Type I hypervisor. Type I hypervisors, also known as bare metal hypervisors, are installed directly on the host machine's hardware and can control the underlying system resources. They are designed to provide high performance and security, as they have direct access to the hardware without the need for a separate operating system. In contrast, Type II hypervisors are installed on top of an existing operating system and rely on it for access to hardware resources, and are generally used for testing, development, or other non-production purposes.
Data is stored in a computer using patterns of __________ defined by standard coding schemes
How does the average function work? what list does it use? how is it traversed using a for loop?
The average function works by calculating the average of the numbers in a given list. It takes a list as an argument and returns the average value of the numbers in that list.
The list can be any type of iterable object such as a list, tuple, or dictionary, but it must contain numerical values. To calculate the average, the function first adds up all the numbers In the list and then divides the total by the number of values in the list.
Here's an example of how to use the average function:
pythonnumbers = [1, 2, 3, 4, 5]
avg = sum(numbers) / len(numbers)
print("The average is:", avg)
This code will print out the average of the numbers in the list numbers. The sum() function adds up all the numbers in the list, and the len() function returns the number of values in the list.
The average function can be traversed using a for loop by iterating over each value in the list and adding them up. Here's an example:
pythonnumbers = [1, 2, 3, 4, 5]
total = 0 for num in numbers:
total += numavg = total / len(numbers)
print("The average is:", avg)
In this code, we first initialize a variable total to 0, and then we loop through each value in the list numbers. Inside the loop, we add each value to the total variable. Once the loop is finished, we divide total by the length of the list to get the average value. Finally, we print out the average value using the print() function.
Learn more about average visit:
https://brainly.com/question/13440064
#SPJ11
Which term describes the gallery that allows you to customize and format text as a graphic?
Pull Quote
Text Box
WordArt
Drop Cap
Answer:
Word Art
sWord art as the ability to be custom designed and formatted as a graphic
Answer:
Word Art
Explanation:
startindex cannot be less than zero parameter name startindex
The "StartIndex cannot be less than zero" error is a common error that happens when you attempt to access a character or element that is out of bounds of an array, string or a list. In other words, this error occurs when you try to specify an index less than 0 in a loop or an array.
For example, let's say you have a string with only 10 characters, and you are trying to find the location of a particular letter using a substring method. If the index you specified is less than 0 or outside of the length of the string, you will get the error "StartIndex cannot be less than zero.
"Here is an example of how to solve the error:One way to prevent this error is by ensuring that the index you specify is within the length of the array or string. Additionally, you can check if the index is valid before performing any operations on it.
To know more about length visit:
brainly.com/question/32060888
#SPJ11
which spreadsheet menu function is used to sort all data in a spreadsheet by the ranking of a specific sorted column?
Data are arranged in ascending and descending order using the sorting process. Data structures support a number of sorting techniques, including bucket sort, heap sort, fast sort, radix sort, and bubble sort.
Explain about the Sort sheet?To arrange the data in an array, use the SORT function. The SORT BY function is recommended since it has more options for sorting data in the grid. Since SORTBY employs a range rather than a single column index number like SORT, it can adapt for column additions and deletions.
The sort sheet uses a single column to order the data from your worksheet. When utilizing the sort, pertinent data from each row is collected and kept in one place. The Contact Name column (column A) in the example below has been sorted so that the names are shown in alphabetical order.
To learn more about Sort sheet refer to:
https://brainly.com/question/15133582
#SPJ4
Write a pseudo code to complete the factorial of 5 recursively and print the value on the screen. I’ll mark brianliest
Answer:
number = int(input('Enter number: '))
factorial = 1
for i in range(1, number + 1):
factorial = factorial * i
print(factorial)
You will need to input 5 when you run the code. Or you can add change the "number" to "number = 5"
Q3: How were basic sounds used to create tension in the early generations of
gaming?
Adjusted for inflation, the many versions of the game are estimated to have grossed over $13 billion in total revenue as of 2016,[5] making it the highest-grossing video game of all time.
How were basic sounds used to create tension in the game?Space Invaders is considered one of the most influential video games of all time. It helped expand the video game industry from a novelty to a global industry, and ushered in the golden age of arcade video games. It was the inspiration for numerous video games and game designers across different genres, and has been ported and re-released in various forms. The 1980 Atari VCS version quadrupled sales of the VCS, thereby becoming the first killer app for video game consoles. More broadly, the pixelated enemy alien has become a pop culture icon, often representing video games as a whole.Designer Nishikado drew inspiration from games like 1976's ball-bouncing game Breakout and the 1975 shooter game Gun Fight, as well as science fiction narratives such as The War of the Worlds, Space Battleship Yamato, and Star Wars. To complete development of the game, he had to design custom hardware and development tools.To learn more about gaming refer to;
https://brainly.com/question/14226703
#SPJ1
which are print settings that can be modified in word 2019 choose two answers
Answer:
word can change your writing sliks
Explanation: