The text file used in the lab to schedule a daily backup is referred to as a "script" or "batch file".
A script or batch file is a collection of commands or instructions that are carried out in a certain order in order to automate a process or a set of tasks.
In this scenario, the script would have commands to start the backup process and define the daily backup schedule. The backup task can be carried out automatically without human intervention by running the script.
Thus, a "script" or "batch file" is the text file used in the lab to schedule a daily backup.
For more details regarding backup, visit:
https://brainly.com/question/31843772
#SPJ4
T/F : You have the same home directory regardless of which CS Unix host you log into.
Answer:
True
Explanation:
I'm confused as to if subclasses can call the supers without any implementation and what the right answer is
Answer:
E
Explanation:
Since Example1 and Example2 inherit from Example0, all classes have the method doNothing() at their disposal, so you can call it from e0, e1 and e2.
However, the arguments of this method are Example1 and Example2, so you cannot pass Example0 as a first argument, and you cannot pass Example0 or 1 as a second argument. That only leaves answer E.
You can call the inheritance relation an "is a kind of" relation. So Example1 is a kind of Example0, and Example2 is a kind of Example1, but also Example2 is a kind of Example0.
Now you can understand why e2 can be passed as an argument for Example1, because e2 is a kind of Example1.
what is robotic technology
Answer:
according to britannica :
"Robotics, design, construction, and use of machines (robots) to perform tasks done traditionally by human beings. ... Robots are widely used in such industries as automobile manufacture to perform simple repetitive tasks, and in industries where work must be performed in environments hazardous to humans"
Explanation:
Choose the term that makes the sentence true.
When you enlarge a raster image, the painting program uses ___
to add the needed pixels.
When you enlarge a raster image, the painting program uses interpolation to add the needed pixels.
What is Interpolation?Interpolation is a technique used by painting programs to add pixels to an image when it is enlarged, by estimating the color values of the new pixels based on the color values of existing pixels.
Hence, it can be seen that when making an image edit and you want to make an enlargement of a raster image, there is the use of interpolation to add the needed pixelation.
Read more about interpolation here:
https://brainly.com/question/18768845
#SPJ1
Use Spreadsheet Functions and Formulas Upload Assignment Please send link
Then choose File > Share > People (or select Share in the top right). Enter the email addresses of the people you wish to share within the Enter a name or email address box. As you start entering, the search bar may already contain the email address if you've used it before.
What is the file?In a computer system, a file is a container for information storage. Computer files have many characteristics with paper documents kept in the office and library files.
The system can identify three different file types: ordinary, directory, and special. The operating system, however, employs numerous modifications of these fundamental categories. All file types that the system recognizes fit into one of these groups. The operating system, however, employs numerous modifications of these fundamental categories.
Therefore, Then choose File > Share > People (or select Share in the top right). Enter the email addresses
Learn more about the file here:
https://brainly.com/question/22729959
#SPJ1
3 things in terms of photography to learn about.
The three important principle in photography are;
Photography is about light. Without it, you couldn't even take images, let alone excellent ones.
The quality of light varies from one to photograph, yet it is always what gives your photographs their underlying structure. It doesn't get any more basic than that.
Most of us snap photos because something catches our attention.
Unsurprisingly, that "something" is your subject.
If you're explaining a photograph to someone else, the topic is most likely the first thing you'll mention.
Finally, the composition is the third and most important aspect of every shot.
Simply said, composition is the arrangement of the things in your shot. It includes your camera position, the connections between photo elements, and the things you accentuate, deemphasize, or altogether eliminate. Composition is the method through which you communicate your tale.
Learn more about photography:
https://brainly.com/question/30685203
#SPJ1
ons-Office 2019 A-NPS
To be more efficient in formatting tasks, it is important to follow best practices when designing type. Which scenar
show the applications of best practices when designing type? Check all that apply.
Joe uses an 8-point font.
Angelo uses one type of font in his document.
O Jeremiah underlines words for emphasis.
Akilah indents and adds space between her paragraphs.
Amy uses the hyphenation feature in her justified paragraphs.
The scenario which shows the applications of best practices are:
Angelo uses one type of font in his document.
Amy employs hyphenation in her justified paragraphs.
What do you mean by application?
An application is a computer software package that performs a specified function directly for an end user or, in certain situations, for another application. It is also known as an application programme or application software. An application can be a single programme or a collection of programmes. The programme is a set of procedures that allows the user to operate the application.
Word's hyphenation tool allows the insertion of line breaks and hyphens within words, making her justified paragraphs more clear and organised.
So,B and E are the right answers.
To learn more about application
https://brainly.com/question/17290221
#SPJ13
Some organizations and individuals, such as patent trolls, abuse intellectual property laws .
computer science
Answer:
False.
Explanation:
Patent can be defined as the exclusive or sole right granted to an inventor by a sovereign authority such as a government, which enables him or her to manufacture, use, or sell an invention for a specific period of time.
Generally, patents are used on innovation for products that are manufactured through the application of various technologies.
Basically, the three (3) main ways to protect an intellectual property is to employ the use of
I. Trademarks.
II. Patents.
III. Copyright.
Copyright law can be defined as a set of formal rules granted by a government to protect an intellectual property by giving the owner an exclusive right to use while preventing any unauthorized access, use or duplication by others.
Patent trolls buy up patents in order to collect royalties and sue other companies. This ultimately implies that, patent trolls are individuals or companies that are mainly focused on enforcing patent infringement claims against accused or potential infringers in order to win litigations for profits or competitive advantage.
Hence, some organizations and individuals, such as patent trolls, do not abuse intellectual property laws.
Answer:
the answer is intentionally
Explanation:
i took the test
Project stem 4.1 code practice
Python!!
Write a program that asks the user to enter a city name, and then prints Oh! CITY is a cool spot. Your program should repeat these steps until the user inputs Nope.
Sample Run
Please enter a city name: (Nope to end) San Antonio
Oh! San Antonio is a cool spot.
Please enter a city name: (Nope to end) Los Angeles
Oh! Los Angeles is a cool spot.
Please enter a city name: (Nope to end) Portland
Oh! Portland is a cool spot.
Please enter a city name: (Nope to end) Miami
Oh! Miami is a cool spot.
Please enter a city name: (Nope to end) Nope
A program that the user to enter a city name, and then prints Oh! CITY is a cool spot as follows:
City_name = input("Please enter a name or type Nope to terminate the program: ")
while( user_name != "Nope" ):
print("Oh! CITY is a cool spot" , City name)
City name = input("Please enter a name or type Nope to terminate the program: ")
What is a Computer Program?A computer program may be defined as a series or set of instructions in a programming language that are utilized by the computer to execute successfully.
The variable "City_name" is used to store the input of the user. He might input his name or "NOPE" to terminate. Then we used a while loop to check if the user input NOPE. Then, we print Oh! CITY is a cool spot for "users input".
Therefore, a program that the user to enter a city name, and then prints Oh! CITY is a cool spot is well-described above.
To learn more about Computer programs, refer to the link:
brainly.com/question/1538272
#SPJ1
Explain why the receptionist responded as indicated in the following scenario.
Situation: Jim and Roger are meeting with the executives of the company. They are both wearing blue jeans, polo shirts, and ties. As they walk past the receptionist, he stops them and reminds them the dress code is white collar.
Which sentence represents the correct precautions to be taken when opening a computer system? you should always work with the power supply connected, as it makes it easier to check different components. Remove any metallic rings that you might have on your fingers, as they may harm the components. Always work in a warm room, as cold temperatures can destroy the components. Ground static by touching a plastic object. Place any screws you remove in a container and label them.
Touch a plastic object to dissipate static. Any screws that remove should be put in a container with a label.
What is components?
Components are individual parts or pieces that make up a larger whole. They are the building blocks of any product, system or structure. Components can be physical, such as parts in a machine, or abstract, such as files in a software program. They are typically designed to work together and perform a specific function, and can be integrated into larger systems. Components can come in many different forms, such as pieces of hardware, software, libraries, data, services, and more. The ability to create and use components allows for greater flexibility and scalability of systems and products.
"If you have any metallic rings on your fingers, take them off since they could damage the equipment. Touch a plastic object to dissipate static. Any fasteners you remove should be put in a container with a label. It is always easier to verify various components while the power supply is connected. Work in a warm environment at all times since chilly temperatures can damage the components."
To learn more about components
https://brainly.com/question/28351472
#SPJ4
Geraldine, the assistant to the company owner, is learning HTML. Her markup as shown
below isn’t rendering as she expected. The boldface doesn’t stop after “Thursday.” The image of the company logo doesn’t display, even though it’s saved in her images subfolder like all of her other images. The alternate text doesn’t display either when she hovers her mouse pointer over the image placeholder. What do you tell her?
good question bro
Answer:
re study about coding of HTML
Explanation:
I will tell her to and start ur study from class LKG
(Maximum 400 words) Describe how this period of Coronavirus (COVID-19) will influence and affect the STEM (Science, Technology, Engineering, and Mathematics) fields.
The period of coronavirus will have both negative and positive impacts on STEM fields.
However, the STEM (Science, Technology, Engineering, and Mathematics) fields have shown significant changes and impacts.
Here is how this period of COVID-19 will affect the STEM fields.
1. Technology
The current situation has increased the use of technology in various fields. Remote work and online meetings are becoming more popular, and this has led to increased technology usage. Technological advancements are expected in the future, leading to new business models that are more efficient.
2. Biomedical research
The COVID-19 pandemic has sparked the need for more biomedical research and led to an increase in research funding. Scientists are researching vaccines, treatments, and diagnostic tools, which is expected to lead to a better understanding of viruses and other infectious diseases.
3. Education
The pandemic has affected the education system globally, with many institutions closing and students learning from home. Teachers and educators are now incorporating technology in teaching, and the pandemic has accelerated the adoption of e-learning platforms. This has led to the development of new ways to learn and teach, and new online learning platforms are expected to emerge in the future.
4. Engineering
The pandemic has led to an increase in demand for essential supplies such as ventilators, personal protective equipment (PPE), and other medical devices. This has led to the development of new designs and manufacturing processes that are more efficient. The need for innovation has also led to the development of new solutions, such as 3D printing of medical supplies.
5. Mathematics
Mathematical models are used to understand the transmission of diseases, and the COVID-19 pandemic has led to the development of new models to understand the spread of the virus. These models help policymakers and public health officials make decisions to control the pandemic.
In conclusion, the COVID-19 pandemic has impacted STEM fields significantly, leading to new developments and innovations. With increased technology adoption, biomedical research, e-learning platforms, and engineering, the STEM fields are expected to change and adapt to the new normal. It is crucial to keep up with these changes and find ways to take advantage of the opportunities presented by the pandemic.
learn more about STEM fields here:
https://brainly.com/question/30082530
#SPJ11
T/F: you can attach more than four wired devices to a network by using a switch.
True, you can attach more than four wired devices to a network by using a switch. A switch is a networking device that allows multiple devices to be connected and communicate with each other.
Switches come in different sizes, from small home switches with four ports to large enterprise switches with hundreds of ports. When a device is connected to a switch, it is assigned a unique MAC address, allowing the switch to direct traffic to the correct device. With a switch, you can connect multiple devices such as computers, printers, and servers to a network, allowing them to share resources and communicate with each other. Overall, switches are a great way to expand your network and connect multiple devices to it.
learn more about wired devices here:
https://brainly.com/question/30774629
#SPJ11
Which type of computer processing is used to find a word on a web page?
Answer:
Word-processing: Used to create documents that include mainly text, like reports or letters.
Explanation:
These documents have a body text area where you type, and the text flows from one page to the next, with new pages created automatically
which of the following is an example of time slicing?question 48 options:a running process is automatically moved to the rear of the ready queue after a few milliseconds of run time.a process is put to sleep as a result of the sleep method, and moves to the rear of the ready queue.a process is waiting for input from a user and is moved to the rear of the ready queue.a process is waiting for a condition to become true, and is moved to the rear of the ready queue.
Option A, "a running process is automatically moved to the rear of the ready queue after a few milliseconds of run time" is an example of time slicing.
Time slicing is a technique used by operating systems to share the CPU time among multiple processes. In this technique, the operating system allocates a small time slice to each process, and after that time slice expires, the running process is moved to the end of the ready queue, and the next process is allowed to run for its time slice. This technique ensures that each process gets a fair share of the CPU time, and no process is starved of CPU time.
Option A is an example of time slicing because in this scenario, the running process is allocated a small time slice to execute, and after that time slice expires, it is moved to the end of the ready queue. This allows other processes to run for their time slice and ensures that no process is starved of CPU time. Option B is an example of process synchronization, where a process voluntarily gives up the CPU to allow other processes to execute. Option C is an example of process blocking, where a process is waiting for input from a user and is not using CPU time. Option D is also an example of process blocking, where a process is waiting for a condition to become true and is not using CPU time. In conclusion, time slicing is an important technique used by operating systems to ensure that each process gets a fair share of the CPU time, and Option A is an example of time slicing.
To know more about automatically visit:
https://brainly.com/question/29784563
#SPJ11
Write a brief reflection paper on Slideshare. What and how will you put it to use in the future? What kind of resources do they have that could help you? Would you ever think about uploading your own resources to Slideshare? How can Slideshare benefit you professionally? How could it benefit you personally?
SlideShare is a popular online platform where users can upload, share, and view presentations, documents, and videos. It offers a range of resources that can be beneficial both personally and professionally.
In the future, I would put Slideshare to use by utilizing its vast collection of presentations and documents to enhance my understanding of various topics. It provides access to valuable educational materials and expert insights, making it a valuable learning resource.Personally, Slideshare can benefit me by expanding my knowledge and helping me stay updated with the latest trends and developments in different fields. Professionally, it can be useful for creating and sharing presentations that showcase my skills and expertise, establishing credibility within my industry.
SlideShare's resources can help me with research, studying, and gaining insights into different subjects. It also allows users to upload their own resources, which could be a great opportunity to share my knowledge and contribute to the platform's content. By doing so, I can establish myself as an expert in my field and potentially gain recognition from a wider audience.
In conclusion, Slideshare is a valuable platform that offers a wide range of resources that can benefit me both personally and professionally. Its vast collection of presentations, documents, and videos can enhance my learning and provide opportunities for sharing my own knowledge. By utilizing SlideShare, I can stay updated, expand my expertise, and connect with a larger community of learners and professionals.
Learn more about PowerPoint Presentation:
brainly.com/question/14498361
#SPJ11
can we save 2 MS Word documents with same names.
Answer:
No, they have different names
Explanation:
The only way to have two rocuments with the same name is if you are creating a dublicate document.
Lily needs to send a digital version of her poster project to her teacher. She is worried that the formatting might change, impacting the look of her poster. How can Lily ensure that the layout and fonts on her poster do not change? A. Design it using simple layouts and fonts B. Email it using the Firefox web browser C. Convert it to a PDF before sending D. Send it as an email attachment
To ensure that the layout and fonts on her poster do not change, Lily should convert it to a PDF before sending.
The best way for Lily to ensure that the layout and fonts on her poster do not change when sending it to her teacher is to convert it to a PDF before sending (Option C). By converting the poster to a PDF, the file will retain its formatting and fonts regardless of the device or application used to view it, ensuring that the teacher sees it as Lily intended.
Designing the poster with simple layouts and fonts (Option A) may also help to prevent formatting issues, but it may not be a viable solution if Lily's project requires more complex designs or fonts. Emailing the poster using the Firefox web browser (Option B) or sending it as an email attachment (Option D) may also result in formatting changes or loss of information, depending on the email client and device used. Therefore, converting it to a PDF is the best option to ensure that the poster looks the same regardless of the device or application used to view it.
Learn more about PDF here:
https://brainly.com/question/14863778
#SPJ4
What is the name of the User-defined function that is mentioned in the code?
The name of the user defined function is: footballMatch
How do i start a war on the Internet
Answer:
give an unpopular opinion to a bunch of angry people
Which word best describes the feeling you have when you are in the learning zone?
A. Comfortable
B. Accomplished
C. Unsure
D. Agitated
Explanation:
This is probably something like a feedback form
but I feel unsure/comfortable
Answer: Accomplished
Explanation:
Made from zinc and copper, brass has been manufactured for thousands of years. It is used in weapons, pipes, musical instruments, and many other important ways. Which of these words best describes brass?.
Brass has been manufactured for thousands of years and has a wide range of uses, including in weapons, pipes, musical instruments, and many other important applications.
It is known for its strength, durability, and corrosion resistance, as well as its ability to be molded, shaped, and worked into a variety of different forms.
What is Brass?
Brass is a metallic alloy. An alloy is a mixture of two or more elements, at least one of which is a metal. Alloys are typically made by combining different metals in specific proportions to create materials with specific properties and characteristics. Brass is an example of an alloy that is made from the metals zinc and copper.
To learn more about corrosion resistance, visit: https://brainly.com/question/13926854
#SPJ4
which of the following student-drawn punnett squares shows a correct setup for a mmhh × mmhh cross?
Two columns and two rows make up a Punnett square. Big-M, big-H are written on the first row.
How do you solve a Punnett square answer key?Find out the parents' genotypes (letters). Bb x Bb.
One parent should be placed on each side of the punnet square.
Fill up the centre square of the Punnet.
Analyze the number of each type's progeny.
These are 2X2 squares with four boxes for a monohybrid cross, with each box signifying a fertilisation between the parent gametes. The second version, which employs a larger Punnett square with sixteen boxes, is used to forecast the results of breeding trials in which two traits are being monitored.
List the dominant and recessive traits in your key. Write out the cross after determining the parents' genotypes. Identify the types of gametes that each parent is capable of producing.
To learn more about square refer to:
https://brainly.com/question/28159858
#SPJ4
types of risks in entrepreneurship
Business risk is a future possibility that may prevent you from achieving a business goal. The following are the common type of business risks.
Strategic Business Risk
Strategic risks result directly from operating within a specific industry at a specific time. To counteract strategic risks, you’ll need to put measures in place to constantly solicit feedback so changes will be detected early.
Legal Compliance Risk
Risks associated with compliance are those subject to the legislative or bureaucratic rules and regulations, or those associated with best practices for investment purposes.
Internal Operational Risks
Operational risks result from internal failures. That is, your business’s internal processes, people, or systems fail unexpectedly. Operational risks can also result from unforeseen external events such as transportation systems breaking down, or a supplier failing to deliver goods.
Reputational and Publicity Risks
Loss of a company’s reputation or community standing might result from product failures, lawsuits, or negative publicity. Reputations take time to build but can be lost in a day. In this era of social networking, a negative Twi tter posting by a customer can reduce earnings overnight.
List two major problems that could be addressed by futuring.
Answer: Climate change and Economic Collapses
Explanation:
Not sure if this helps
which is NOT something that a game producer needs to do?
A- make sure the team has the tools that they need to be successful
B- create and support ways for the team to collaborate
C- plan the script, characters, and how the game is played
D- choose the programming language that will be used to develop the game
Answer:
Plan the script, characters, and how the game is played
An action that a game producer needs not to do is to plan the script, characters, and how the game is played. Thus, the correct option for this question is C.
What are the actions that a game producer needs to do?The actions that a game producer needs to do are as follows:
They choose the programming language that will be used to develop the game.They considerably create and support ways for the team to collaborate on the same mission. They always make sure the team has the tools that they need to be successful togetherly.Apart from this, video game producers have to manage a lot of things. Such as constructing video games, playing an executive role during each development phase, ensuring the quality of the project, managing the timeliness of the teams working on the same project (duration), etc.
Therefore, an action that a game producer needs not do is plan the script, characters, and how the game is played. Thus, the correct option for this question is C.
To learn more about Game producers, refer to the link:
https://brainly.com/question/3863314
#SPJ2
Dave is a recruiter for a large video and animation firm. He is looking for an employee who is willing to give productive hours to activities related to the job. Which quality is he looking for? A. responsibility B. flexibility C. trust D. reliability E. integrity
Answer:
reliabitlity
Explanation:
Order the steps for sharing a contacts folder in Outlook 2016
Answer:
Enter the Contacts view-Select folder in the navigation pane-Click Share Contacts-Fill the To: field with a recipient's address-Click Send.
Explanation:
Got it right on Edge
Outlook is a management application that includes personal information. The first step in sharing the contact folder includes entering the contact view.
What is contact sharing?Outlook is the web platform that contains the personal information of the client and also, the messages, contact cards, calendars, and webmails. etc.
To share contact the contact view should be opened and then the folder should be selected in the navigation pane. The button for sharing contacts should be selected.
In the share contact pop-up, fill out the field to whom the contact is to be shared with their address. After entering the receiver's name and address click the send button to share the contact card.
Learn more about Outlook here:
https://brainly.com/question/19026125
#SPJ2
Select the correct answers.
Which are the benefits of leveraging web technologies?
processing of large amounts of data
more manpower
better marketing and customer service
increased production costs
difficulty in handling customer complaints
Answer:
Explanation:
Select the correct answers.
Which are the benefits of leveraging web technologies?
1) Processing of large amounts of data
2) Better marketing and customer service