You have a computer that runs Windows 10. You configure a backup job to backup all the files and folders on an external NTFS file system hard disk drive. The backup job fails to back up all files that have the encryption attribute set. You need to backup all encrypted files. The backed up files must remain encrypted. What should you do?
A. Manually copy the encrypted files to the external hard disk drive.
B. Schedule a backup job to occur when you are not logged on to the computer.
C. Enable Shadow Volume Copy on the external drive and schedule a backup job.
D. Add the certificate of the local administrator account to the list of users who can transparently access the files, and schedule a backup job.

Answers

Answer 1

The backed up files must remain encrypted - Manually copy the encrypted files to the external hard disk drive.

What is encrypted?

Encrypted data is any type of information that has been transformed using an algorithm in order to make it unreadable to any person or computer system that does not have the necessary decryption key. This type of encryption is used to protect sensitive information from unauthorized access and ensure that it is only readable to those with the correct decryption key. When encrypted data is sent from one system to another, it is typically done so in a secure manner, such as over an encrypted channel or a secure network connection. This ensures that the data remains confidential and secure during transport.

To learn more about encrypted
https://brainly.com/question/28386444
#SPJ4


Related Questions

colleges and universities often offer degrees in computer science with a concentration of network engineering or network security that can help you obtain a job in the industry - true or false

Answers

Answer: The correct answer is true

Explanation:

I got this answer right. Hope this helps :)

Which of the following queries can have a fully Meets result?

Answers

Answer: we need the awnser key

Explanation:

discuss seven multimedia keys​

Answers

Answer:

Any seven multimedia keys are :-

□Special keys

Alphabet keys

Number keys

□Control keys

Navigation keys

Punctuation keys

Symbol keys

Recall your technology experience in the workplace or at home. When adopting a new technology, what specific problems were you or your employer trying to resolve?

Describe your biggest challenge in adopting new technologies based on your experience.
Share how you or your employer overcame these issues.

Answers

Answer:

Use of technology helps solve issues like file management, receipt tracking, report generation and growth tracking that often hamper employee productivity. Modern workplaces extensively rely on computer-aided tools for efficiency. These tools help cut down both the time and money needed for getting the job done.

How do you implement new technology in the workplace?

To help you streamline the process, here are  steps for integrating new technology into your organization:

Identify Your Organization's Needs.

Investigate Technologies That Will Solve Problems for Your Organization.

Develop a Plan for Implementing Your New Technology.

Train Other Employees in Using the New Technology

Create a pseudo code for calculate the sum of squares of given input of numbers

Answers

Put a "0" in sum_of_squares. Calculate the square of each input integer, then add it to sum_of_squares. Sum_of_squares's final number should be printed.

What is pseudo-code made of?

Pseudocode is a loosely defined type of programming description that is unrestricted by underlying technology or strict programming language syntax. It is used to draught a programme's initial draught or outline.

How is a number entered into pseudocode?

The pseudocode expression INPUT() can be used to request human input. Like DISPLAY(), it functions exactly like a procedure but doesn't need any inputs. Instead, the evaluation of the INPUT() expression will merely produce the user-supplied input value.

To know more about sum_of_squares. visit:

https://brainly.com/question/2516345

#SPJ9

how can you stretch or skew an object in paint

Answers

Press Ctrl + Shift + Z (Rotate/Zoom). Rotate the roller-ball control about a bit. The outer ring rotates the layer.

Answer:

Press Ctrl + Shift + Z (Rotate/Zoom). Rotate the roller-ball control about a bit. The outer ring rotates the layer.

Explanation:

If we want to access files located in a directory on a remote server, which of these options would we use?


NTP server


DNS server


VNC client


FTP client

Answers

Answer:

FTP Client

File Transfer Protocol.

The option that we  would use to access files located in a directory is FTP client

FTP client which full meaning is File   Transfer Protocol is a protocol that makes it easier to move files that contains store data from a computer system to the user of it by making use of the Internet.

FTP client  is important as it enables the easy retrieving of files store on the folder in a computer system.

Inconclusion The option that we  would use to access files located in a directory is FTP client

Learn more here:

 https://brainly.com/question/938281

Kiaan wants to give people who attend his presentation a printed copy of the slides. Instead of printing one slide on each piece of paper, he wants to print six slides on each piece of paper. Which setting should he select on the Print tab in Backstage view to do this?

Answers

Answer:

Under the Print Tab of the Backstage view of his presentation, Kiaan can print 6 slides on each piece of paper by selecting the "Full Page Slides" which is under settings.

Once that is done, he will be presented with an array of choices.

He is to select whether to print 6 pages/sheet vertically or horizontally under the "Handouts" section.

Thereafter, he can proceed to click on "Print".

Cheers!

define the word computer

Answers

Answer: an electronic device for storing and processing data, typically in binary form, according to instructions given to it in a variable program.

Explanation: Computer defined

Answer:

A computer is an electronic device that can store, retrieve, and process data. It can perform various operations on the data, including calculations, sorting, and organizing. Computers can run software applications, access the internet, and communicate with other computers. They come in various forms, including desktops, laptops, tablets, and smartphones.

Explanation:

Current Tetra Shillings user accounts are management from the company's on-premises Active Directory. Tetra Shillings employees sign-in into the company network using their Active Directory username and password.

Answers

Employees log into the corporate network using their Active Directory login credentials, which are maintained by Tetra Shillings' on-premises Active Directory.

Which collection of Azure Active Directory features allows businesses to secure and manage any external user, including clients and partners?

Customers, partners, and other external users can all be secured and managed by enterprises using a set of tools called external identities. External Identities expands on B2B collaboration by giving you new options to communicate and collaborate with users outside of your company.

What are the three activities that Azure Active Directory Azure AD identity protection can be used for?

Three crucial duties are made possible for businesses by identity protection: Automate the identification and elimination of threats based on identity. Use the portal's data to research dangers.

To know more about network visit:-

https://brainly.com/question/14276789

#SPJ1

What computer part it this? Explain to get brainliest. People that don't explain, won't get it, but will get a thanks + a 5 star rate.

What computer part it this? Explain to get brainliest. People that don't explain, won't get it, but will

Answers

Answer:

That is a motherboard, a circuit board containing the main components (CPU, RAM, etc) of a computer. It contains connectors in which other circuit boards can be slotted into.

Explanation:

A motherboard is a specialized circuit board (a thin board containing a electrical circuit) used for containing major components of a computer and allowing the parts to be used in conjunction with each other. This is why you'll find a motherboard in a large variety of computers, from phones, to PC's and laptops.

Answer: Motherboard.

Explanation: it's the backbone of a computer, it ties all the computers components together.

A sequence of integers such as 1, 3, 5, 7, … can be represented by a function that takes a non-negative integer as parameter and returns the corresponding term of the sequence. For example, the sequence of odd numbers just cited can be represented by the function

int odd(int k) {return 2 * k + 1;}
Write an abstract class AbstractSeq that has a pure virtual member function

virtual int fun(int k) = 0;
as a stand-in for an actual sequence, and two member functions

void printSeq(int k, int m);
int sumSeq(int k, int m)
that are passed two integer parameters k and m, where k < m. The function printSeq will print all the terms fun(k) through fun(m) of the sequence, and likewise, the function sumSeq will return the sum of those terms. Demonstrate your AbstractSeq class by creating subclasses that you use to sum the terms of at least two different sequences. Determine what kind of output best shows off the operation of these classes, and write a program that produces that kind of output.

Answers

Answer:

1,3,5,7 i thinks , wait for 5 minuts

Explanation:

vvv

Which term refers to a contract specifically negotiated for the construction of an asset or a combination of assets that are closely interrelated or interdependent in terms of their design, technology and function or their ultimate purpose or use (GAAP)



A. Fixed price contract
B.Construction contact
C. Cost plus contract
D.None of these


I’m not accepting links or files.
Will mark brainliest for best explanation :)

Answers

Answer:

B. Construction contact

Explanation:

It is a contract specifically negotiated for the construction of an asset or a combination of assets that are closely interrelated or interdependent in terms of their design, technology and function or their ultimate purpose or use.

Please have a great day <3

MVC stands for Model-View-Controller. Where is business data and logic mainly kept?
Views
Controllers
Models
None of the above

Answers

Answer:

Controllers

Explanation:

Business Logic goes to Model part in MVC . Role of Model is to contain data and business logic. Controller on the other hand is responsible to receive user input and decide what to do. A Business Rule is part of Business Logic .

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

Answers

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

What happens with  e-commerce

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

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

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

#SPJ1

what is the mean of "*" in wild card?​

Answers

Answer:

a playing card that can have any value,suit,color or other property in a game at the discretion of player holding it

plss. give me briniest ty.

What is the largest software application on a computer?

Answers

Answer:

Mac OS X I believe

Answer: Mac OS X is considered to be the largest operating system ever written. It contains over 85 million lines of codes.

Explanation:

A company purchases a flood insurance policy for its data center. What is its risk

management decision?

1) Mitigation

2) Acceptance

3) Avoidance

4) Transference

Answers

When a company purchases a flood insurance policy for its data center, the risk management decision it took is: 4) Transference.

Risk management can be defined as a process which involves identifying, evaluating, analyzing and controlling potential risks (threats) that are present in a business, which can serve as an obstacle to its capital, revenues and profits.

Basically, risk management decision typically involves prioritizing cause of action or potential threats, so as to avoid, mitigate or transfer the risk that are likely to arise from such business decisions.

The risks or threats that are faced by a business firm can be transferred to a third-party such as an insurance agency, especially to protect its assets and resources in the event of a natural disaster such as flood, fire, earthquake, etc.

In conclusion, transference is a risk management decision that occurs when  a company purchases a flood insurance policy for its data center.

Read more on risk management here: https://brainly.com/question/13760012

Define the instance method inc_num_kids() for PersonInfo. inc_num_kids increments the member data num_kids. Sample output for the given program with one call to inc_num_kids():

Answers

Answer:

This is the instance method inc_num_kids()

def inc_num_kids(self):

       self.num_kids += 1

Explanation:

The first line is the definition of function inc_num_kids() which has a parameter self. self is basically an instance of  class PersonInfo

self.num_kids += 1 this statement incremented the data member num_kids by 1. This means that the instance method inc_num_kids, using instance self, increments the value of num_kids data member by 1.

The complete program is as following:

class PersonInfo:  #class name PersonInfo

   def __init__(self):   #constructor of the class

       self.num_kids = 0  # data member num_kids

   def inc_num_kids(self):  # method inc_num_kids

       self.num_kids += 1  #increments num_kids by 1

person1 = PersonInfo()  #creates object person of class PersonInfo

print('Kids:', person1.num_kids)  # prints num_kids value before increment

person1.inc_num_kids()  #calls inc_num_kids method to increment num_kids

print('New baby, kids now:', person1.num_kids) #prints the value of num_kids after increment by inc_num_kids method

The person1 object first access the initial value of num_kids initialized by the constructor. So the first value of num_kids is 0. self.num_kids = 0  This statement assigns the value 0 to num_kids data member. Next the method inc_num_kids() using the object person1. Now when this method is called the value of data member num_kids is incremented to 1.

So previously the value was 0 which now increments by 1 and becomes 1. Last print statement displays this new value which is incremented by the inc_num_kids() method.

Hence the output is:

Kids: 0

New baby, kids now: 1

The program along with its output is attached.

Define the instance method inc_num_kids() for PersonInfo. inc_num_kids increments the member data num_kids.

In this exercise we have to use the knowledge of computational language in python to describe a code, like this:

The code can be found in the attached image.

To make it easier the code can be found below as:

class PersonInfo:  

  def __init__(self):  

      self.num_kids = 0  

  def inc_num_kids(self):  

      self.num_kids += 1  

person1 = PersonInfo()

print('Kids:', person1.num_kids)  

person1.inc_num_kids()

print('New baby, kids now:', person1.num_kids)

See more about python at brainly.com/question/26104476

Define the instance method inc_num_kids() for PersonInfo. inc_num_kids increments the member data num_kids.

How long will it take to send 1.1 million bits using the Stop and Wait ARQ protocol if each packet contains 1000 bits and the only delay is propagation delay

Answers

Answer:

1.111 second

Explanation:

We know propagation speed =  \($2 \times 10^8$\) m/s

                                                 =  \($2 \times 10^5$\) km/s

One packet size = 1000 bit

Distance between sender and the receiver = 1000 m = 1 km

The channel data rate = 1 Mbps =   \($1 \times 10^6$\) bits per sec

There is no transmission delays of ACKs,

The time to transmit one data packet  = \($T_{trans}+2T_{prop}$\)

Here, time to transmit frame = \($T_{trans}$\)

          propagation time = \($T_{prop}$\)

Therefore, \($T_{trans}$\) = \($\frac{bits\ per\ frame}{transmission \ speed}$\)

                            = \($\frac{1000}{1 \times 10^6}$\)      = 0.001 seconds

\($T_{prop}=\frac{distance\ between\ sender\ and\ receiver}{propagation \ speed}$\)

         = \($\frac{1}{2 \times 10^5}$\)            

         = 0.000005 seconds

Therefore, T = 0.001 +2(0.000005)

                     = 0.00101 seconds

We known, 1.1 million bits= 1100 packets

Therefore to transmit 1 million bits = 1100 x 0.00101

                                                         =  1.111 second

When writing an algorithm, plans are reviewed before they are carried out.

True or False?

Answers

Answer: True

Explanation:

thats the main step of algortithm lol

Consider the following statements: Statement A: In Duplex transmission, either node can transmit while the other node can receive data Statement B: In half-duplex transmission, both the nodes can transmit as well as receive data at the same time. Which of the following is true with respect to the above statements?

a. Both statements A and B are false
b. Statement A is false and statement B is true
c. Both statements A and B are true
d. Statement A is true and statement B is false

Answers

Answer:

d. Statement A is true and Statement B is false

Explanation:

Indeed, when using duplex transmission either node can transmit while the other node can receive data from the network. Also, in half-duplex transmission, both the nodes can transmit as well as receive data.

However, in half-duplex transmission, the nodes cannot transmit and receive data at the same time. Hence, this makes Statement B false, while Statement A is true.

1.
Question 1
An online gardening magazine wants to understand why its subscriber numbers have been increasing. What kind of reports can a data analyst provide to help answer that question? Select all that apply.

1 point

Reports that examine how a recent 50%-off sale affected the number of subscription purchases


Reports that describe how many customers shared positive comments about the gardening magazine on social media in the past year


Reports that compare past weather patterns to the number of people asking gardening questions to their social media


Reports that predict the success of sales leads to secure future subscribers

2.
Question 2
Fill in the blank: A doctor’s office has discovered that patients are waiting 20 minutes longer for their appointments than in past years. To help solve this problem, a data analyst could investigate how many nurses are on staff at a given time compared to the number of _____.

1 point

doctors on staff at the same time


negative comments about the wait times on social media


patients with appointments


doctors seeing new patients

3.
Question 3
Fill in the blank: In data analytics, a question is _____.

1 point

a subject to analyze


an obstacle or complication that needs to be worked out


a way to discover information


a topic to investigate

4.
Question 4
When working for a restaurant, a data analyst is asked to examine and report on the daily sales data from year to year to help with making more efficient staffing decisions. What is this an example of?

1 point

An issue


A business task


A breakthrough


A solution

5.
Question 5
What is the process of using facts to guide business strategy?

1 point

Data-driven decision-making


Data visualization


Data ethics


Data programming

6.
Question 6
At what point in the data analysis process should a data analyst consider fairness?

1 point

When conclusions are presented


When data collection begins


When data is being organized for reporting


When decisions are made based on the conclusions

7.
Question 7
Fill in the blank: _____ in data analytics is when the data analysis process does not create or reinforce bias.

1 point

Transparency


Consideration


Predictability


Fairness

8.
Question 8
A gym wants to start offering exercise classes. A data analyst plans to survey 10 people to determine which classes would be most popular. To ensure the data collected is fair, what steps should they take? Select all that apply.

1 point

Ensure participants represent a variety of profiles and backgrounds.


Survey only people who don’t currently go to the gym.


Collect data anonymously.


Increase the number of participants.

Answers

The correct options are:

Reports that examine how a recent 50%-off sale affected the number of subscription purchasespatients with appointmentsa way to discover informationA business taskData-driven decision-makingWhen conclusions are presentedFairnessa. Ensure participants represent a variety of profiles and backgrounds.c. Collect data anonymously.d. Increase the number of participants.What is the sentences about?

This report looks at how many people bought subscriptions during a recent sale where everything was half price. This will show if the sale made more people subscribe and if it helped increase the number of subscribers.

The report can count how many nice comments people said  and show if subscribers are happy and interested. This can help see if telling friends about the company has made more people become subscribers.

Learn more about  gardening    from

https://brainly.com/question/29001606

#SPJ1

Final answer:

Reports, investigating, fairness, data-driven decision-making, gym classes

Explanation:Question 1:

A data analyst can provide the following reports to help understand why the subscriber numbers of an online gardening magazine have been increasing:

Reports that examine how a recent 50%-off sale affected the number of subscription purchasesReports that describe how many customers shared positive comments about the gardening magazine on social media in the past yearReports that compare past weather patterns to the number of people asking gardening questions on their social mediaReports that predict the success of sales leads to secure future subscribersQuestion 2:

A data analyst could investigate the number of patients with appointments compared to the number of doctors on staff at a given time to help solve the problem of longer waiting times at a doctor's office.

Question 3:

In data analytics, a question is a topic to investigate.

Question 4:

When a data analyst is asked to examine and report on the daily sales data from year to year to help with making more efficient staffing decisions for a restaurant, it is an example of a business task.

Question 5:

The process of using facts to guide business strategy is called data-driven decision-making.

Question 6:

A data analyst should consider fairness when conclusions are being presented during the data analysis process.

Question 7:

Transparency in data analytics is when the data analysis process does not create or reinforce bias.

Question 8:

To ensure the collected data is fair when surveying 10 people to determine popular classes for a gym, a data analyst should: ensure participants represent a variety of profiles and backgrounds, collect data anonymously, and increase the number of participants.

Learn more about Data analysis here:

https://brainly.com/question/33332656

1.Cassandra just left her doctor’s office with a referral to a dietician and an appointment with a radiology technician. Describe a scenario in which Cassandra would work with both a radiology technician and a dietician.

2.The Health Science and Law, Public Safety, Corrections, and Security clusters both feature careers that seek to help people thrive. In your own words, explain what makes these clusters different.

3.You might have noticed that many careers require the common skills of empathy and critical thinking/problem solving. When you’re dealing with people, and their health and safety, these skills are often required! Choose a career you find interesting from the clusters in the Unit. Explain, using a scenario, why EITHER empathy or critical thinking skills would be important in that job.

4. Vlad wants a career that will offer him a great wage. He realizes the university administrator career might be a good fit for him. Why is the average salary for a university administrator much higher than most of the other salaries covered in the lessons?
5. Why are foreign service officers part of the Government and Public Administration career cluster rather than the Law, Public Safety, Corrections, and Security cluster?

Answers

Cassandra is likely seeing the radiology technician and dietician for a weight-loss plan.

What is technician?

A technician is a professional who has specialized knowledge in a specific area, such as computers, electronics, engineering, mechanics, and other technical fields. Technicians are often responsible for troubleshooting, installing, repairing and maintaining equipment, as well as providing technical support and advice to customers.

They typically have a wide range of skills and knowledge and may specialize in a certain type of equipment. Additionally, technicians may be required to develop and test new equipment, or to manage a team of other technicians.

1. Cassandra is likely seeing the radiology technician and dietician for a weight-loss plan. The radiology technician will likely take images of her body to give her an idea of where she is starting from and to provide a baseline for tracking her progress. The dietician will help her create a meal plan and discuss how to make healthy choices that will support her goals.

2. The Health Science and Law, Public Safety, Corrections, and Security clusters are both focused on helping people, but the Health Science cluster focuses on providing medical care and promoting health, while the Law, Public Safety, Corrections, and Security cluster is focused on protecting people and maintaining justice and order.

3. Let's say Vlad is interested in being a police officer. In this job, empathy is important in order to build relationships with the community and to understand how to best help people. At the same time, critical thinking skills are essential in order to make quick decisions and assess the situation in order to keep everyone safe.

4. University administrators are responsible for managing the day-to-day operations of a university, such as budgeting, fundraising, and managing staff. Because of the level of responsibility and the importance of the job, university administrators tend to make a higher salary than most other careers.

5. Foreign service officers are part of the Government and Public Administration cluster because they are responsible for representing their country in foreign nations. This includes managing economic, cultural, and diplomatic relations with other countries, which are all tasks that are part of the duties of a government official.

To learn more about technician
https://brainly.com/question/18428188
#SPJ1

In cell F15 insert a function that will automatically display the word discontinue if the value in cell D15 is less than 1500, or the text No Change if the value in the cell D 15 is greater than or equal to 1500

Answers

The question demonstrates the illustration of the IF function in Microsoft Office Excel. The required IF function may be as follows:

IF(D15<1500, "Discontinue", "No Change").

What is the IF function in Excel?

IF function in excel may be characterized as one of the most important functions that allow a user to make logical comparisons between a value and what you expect. So an IF statement can have two results that are as follows:

The first result is if your comparison is True, The second is if your comparison is False.

Assuming that this is excel, you can locate the cell F15 and input the IF function. The formula for the IF function is IF(<condition>, <action if true>, <action if false>).

So before the 1st comma, we place the condition which is D15 < 1500. In the middle, before the 2nd comma, we place the text to display if D15 is less than 1500, which is "Discontinue". In the last place, we place the text to display if D15 is greater than or equal to 1500, which is "No Change"

To learn more about the IF function, refer to the link:

https://brainly.com/question/20497277

#SPJ1

what you have to order an online transportation in your celluler phone ? a. data package b. Pulsa c. GPS d. Online transportation application e. Drivers number​

Answers

To order an online transportation in your cell phone, you would need to have the online transportation application installed on your phone. (Option D)

What is the rationale for the above response?

The above application will allow you to browse and select available drivers in your area, enter your pickup and drop-off locations, and request a ride.

You may also need to have a sufficient amount of pulsa or mobile data to use the application and track your ride's progress. GPS functionality is built into most modern smartphones and can be used by the online transportation application to locate and guide the driver to your location.

The driver's number may be provided by the application once a ride is accepted to allow you to contact them if needed.

Learn more about cellular phone at:

https://brainly.com/question/17246941

#SPJ1

investigation on how to feed pets technology sub​

Answers

The field of pet feeding technology has seen significant advancements in recent years, with a range of new products and solutions being developed to help pet owners feed their pets more effectively and efficiently.

One popular technology in pet feeding is the automatic pet feeder. These feeders use timers and sensors to dispense food at predetermined times, allowing pet owners to set a feeding schedule and ensure that their pets are getting the right amount of food, even when they are not at home. Some automatic feeders also have features such as portion control and the ability to dispense different types of food, making them a convenient and versatile solution for pet owners.

Another type of pet feeding technology is the connected pet feeder. These feeders use Wi-Fi or other wireless technologies to connect to a smartphone or other device, allowing pet owners to remotely control the feeding schedule, monitor food levels, and receive alerts when the feeder needs to be refilled. Some connected feeders also have features such as video cameras, which allow pet owners to watch their pets eat from anywhere.

There are also smart pet feeders that use artificial intelligence and machine learning to tailor feeding schedules to the individual needs of each pet. These feeders can track a pet's eating habits, learn their preferred meal times and portion sizes, and adjust the feeding schedule accordingly. This type of technology can help pet owners ensure that their pets are getting the right amount of food and can also help prevent overeating and related health issues.

In addition to these products, there are also various apps and services available that help pet owners manage their pet's feeding. For example, there are meal planning apps that help pet owners track their pet's food intake and make sure they are getting the right nutrients. There are also services that provide custom-made pet food, formulated to meet the specific nutritional needs of each individual pet.

In conclusion, there are a variety of technologies available for pet owners to help them feed their pets more effectively and efficiently. From automatic feeders and connected feeders to smart feeders and meal planning apps, these technologies offer a range of solutions that can help pet owners ensure that their pets are getting the right amount of food and the right nutrients.

HELP ME OUT PLEASE!!!!

Knowing how you are going to deliver your presentation- live or online is important because you can make sure that you have exported your presentation correctly and know what to practice.

True

False​

Answers

this is true I’m pretty sure!
I’m pretty sure that’s true

Guess the output of this code:print( (3**2)//2 )

Answers

Answer:

Assuming that's in python, the answer would be 4

Explanation:

The ** operator is for raising a number to a power.

The // operator returns the number of times the right number can fit into the left (i.e round division).

So the answer would be three squared over two rounded down, or 4.

What year was "scripting" first invented

Answers

Answer:

Late 1950's

Explanation:

I hope this helps, have a great day :)

Other Questions
In what organelle of the cell does oxidation of fatty acids take place?chloroplastscytosolnucleusmitochondriaGolgi apparatus What is the emergency air line for? 1. To engage the trailer brakes in case of air pressure loss2. To have extra air pressure in case you need it3. To engage the front brakes of the tractor in case of an emergency what are end-product of digestion of starch,proteins and fats. Liquids are used in thermometer but not the solid. 4y 4y 17y = g(t); y(0) = 0, y (0) = 0 Most pharmaceuticals, whether pills. capsules, or liquids, consistent primarily of "filler, inactive ingredients that have no direct medicinal purpose. These hliers known as excipients, serve a variety of purposes they insure the stability of the API (active pharmaceutical ingredient) they aid in consistent disintegration of a pill upon ingestion they insure proper absorption of the active ingredient, and, especially in the case of pills, may be present simply to provide bulk on many cases, low dosages such as 10mg of API would yield an extremely tiny pill were no bulk fillers present). In fact the median tablet contains about 300mg of materials of which the excipients might represent 50 to 95% of the total mass. Because of this mikit te necessary to insure that each pill contains the right dosage Acme Pharmaceuticals manutctures Gliquidone in 400mg tablets with some of API. The process has a standard deviation of 0.302 me if the process mean delivers 51.092 mg of API per tablet and the upper and lower specification limits are 50 and 52831 mg, calculate the value of Cok Enter the value below to 3 decimal precision Show your work in the following question HELP PLEASE I WILL GIVE RAINLIST Help help correct answers only the proposition that color vision is based on coding things as red or green, yellow or blue, or black or white is known as . Taylor's family took a road trip to Mount Rushmore. Taylor slept through the last 21% of the trip. If Taylor fell asleep after they had travelled 711 miles, what was the total length of the trip? In which part of the animal cell is DNA found?inside the nucleusinside the chloroplastinside the membraneinside the cytoplasmOutline the steps needed to analyze media messages we experience each day. The integral (cos(x - 2) dx is transformed into L'a(t)dt by applying an appropriate change of variable, then g() is : g(t) = 1/2 cos (t-3)/2 g(t) = 1/2 sin (t-5/2) g(t) = 1/2cos (t-5/2) g(t) = 1/2sin (t-3/2) Identify the slope in y=-1/3x + 2Hint: y = mx + b1. -1/32. 23. -2/34. 1 a cpa prepares income tax returns for a client. after the client signs and mails the returns, the cpa discovers an error. according to treasury circular 230, the cpa must what major event occurred in bob dylan's life in the late 70's that had a profound impact on his songwriting? What evidence exists to support the assertion that Jefferson was a racist? Decease the temperature of 2. 80mol of an ideal gas by 25k if the diatomic gas is held at a constant pressure? during a teaching session on the care of the client with diabetes, the nurse should make which statement to explain the differences in insulin? A bond with a call provision would generally be sold to yield Multiple Choice less than a noncallable bond of similar character. the same as a similar noncallable bond. more than a noncallable bond of similar character. the same as similar convertible bonds. Explain the role of government in reconstruction according to president Andrew Johnson