plz help me I need help​

Plz Help Me I Need Help

Answers

Answer 1

Answer:

ok i will help you

you can asked


Related Questions

Which IPR will provide legal protection to the product from competitior infringement

Answers

The product would have legal protection from competitor infringement under trade mark protection.

In order for people to coexist in freedom, regardless of their lifestyle or political views, the Ministry of Justice and Security is tasked with upholding the law. Because it safeguards original expression that is fixed in a tangible medium and the result of writing, copyright law is distinctive within the broader intellectual property regime. As used herein and as supported by an inquiry, the phrase "Protection Cases" refers to instances of child abuse, institutional abuse, neglect, and/or institutional neglect. Making sure a person's rights are not disregarded or violated is what it means to protect rights. From service commencement to discharge and follow-up, every step of the process reflects this affirmation and protection.

Learn more about legal protection here

https://brainly.com/question/30433228

#SPJ4

the selection of the short-run rate of blank______ (with existing plant and equipment) is the production decision.

Answers

The selection of the short-run rate of output (with existing plant and equipment) is the production decision.

What is production?

Production is the process of converting raw materials into usable goods. The term "production" can also refer to the production of services. Production refers to the process of combining resources to create something useful or valuable.

It is the process of transforming natural resources and raw materials into finished goods that can be sold for a profit. Production decisions are concerned with the management of resources to produce the desired output.

The selection of the short-run rate of output (with existing plant and equipment) is the production decision. The rate of output refers to the number of units of a good or service that a company produces in a given time period. In the short run, a company can only adjust its production level by changing the amount of labor and other variable inputs used while keeping the level of fixed inputs constant.

Therefore, the selection of the short-run rate of output (with existing plant and equipment) is the production decision.

Learn more about Production:https://brainly.com/question/16755022

#SPJ11

which answer illustrates “compound interest”

Answers

Answer:

d- you earn interest on the money in your savings account. Then you, in addition earn interest on interest

Explanation:

The compound interest means the interest i.e. earned on the money that saved by you and the interest you earned.

Therefore as per the given options, the last option is correct as it represents the interest earned in the saving account plus it earns interest on interest

Hence, all the other options are incorrect

what is the technology to encode filr or messages?​

Answers

Answer:

Encryption is ur ansqwer

B. Directions: Fill in the blanks with the correct answer.

___1. is a tool used for grasping and holding things.
___ 2. caregiving tools, equipment and paraphernalia is used for holding and carrying the laundry before and after washing lamparable ___3. is an instrument used for measuring body temperature.___ 4. is a tool use to destroy microorganisms in container like babies bottle through boiling ____5. An electrical device used for slicing food is ____6. is an electrical appliance use for cleaning floors, carpets and furniture by suction. ___7. is a device usually found in a clinic, hospitals or in a Barangay health centers is used for listening the heart and lungs action. ___8. A is used to blend, chop, dice and slice foods and allowing to prepare meals quicker. ____9. is a device that automatically wash the dishes like plates, pots, etc. ___10. is an appliance used in washing clothes without doing it manually.​

Answers

Answer:

TONGS BASKETTHERMOMETER AUTOCLAVES ELECTRIC KNIFE VACUUM STETHOSCOPEBLENDER DISHWASHER WASHING MACHINE

100 POINTS!!! Write in python

100 POINTS!!! Write in python

Answers

Here's a Python statement to create a label widget with the text "Programming is fun!" as a child of self.main_window:

The Python Program

tk.Label(self.main_window, text="Programming is fun!").pack()

This statement creates a new Label widget with the specified text as the child of the self.main_window parent widget using the tk.Label() constructor.

\

The .pack() method is then called on the Label widget to add it to the window.

The pack() function is among the various layout managers offered by Tkinter, which is the premier Python GUI toolbox. Multiple geometry managers, such as .grid() and .place(), offer varied options for controlling the spatial placement and arrangement of widgets in a window.

Read more about programs here:

https://brainly.com/question/28938866

#SPJ1

what is an information technology? ​

Answers

Answer:

PLEASE BRAINLIEST

Explanation:

Information Technology means the use of hardware, software, services, and supporting infrastructure to manage and deliver information using voice, data, and video.

Answer:

Information technology is a subject that is the use of computers to store, retrieve, transmit and manipulate data or information, often in the context of business or other enterpise.

PLEASE HELP!!!!! WILL MARK BEST ANSWER BRAINLIEST!!!~~~

Which statement about broadcasting a slideshow online is true?

All transitions are properly displayed to the audience when broadcasting online.
Broadcasting a slideshow online is not an option for most PowerPoint users.
Third-party desktop sharing software must be used to broadcast online.
PowerPoint has a free, built-in service for broadcasting online.

Answers

Answer: D. PowerPoint has a free, built-in service for broadcasting online.

Explanation:

Answer:

D) PowerPoint has a free, built-in service for broadcasting online.

Explanation:

PLEASE HELP!!!!! WILL MARK BEST ANSWER BRAINLIEST!!!~~~Which statement about broadcasting a slideshow

What is output? x = 9 y = -3 z = 2 print(x + y * z)

Answers

Answer:

12

Explanation:

+10 points~~~Which option is used in emails to inform the recipient that they should exercise discretion in accordance with sharing the content of the message?

priority levels
sensitivity levels
follow-up flags
attachment icons

Answers

Answer:

Sensitivity Levels

Explanation:

Sensitivity Level is option use in email to inform the recipient that they should exercise discretion in accordance with sharing the content of the message.

Answer:

its sensitivity levels on edge 2020

Explanation:

List some of the icons present in Microsoft Windows 7 desktops.​

Answers

Answer:

Common desktop icons include Computer, your personal folder, Network, the Recycle Bin, Internet Explorer, and Control Panel.

Explanation:

what is the most popular monitor​

Answers

Probably a television or a radio I guess

A ________ is designed for a individual user

Plz help :)

Answers

It is a Profile (i think)

Which display value would work best to prevent the pictures from displaying when the web page loads?

Answers

To prevent pictures from displaying when a webpage loads, the CSS `display` property can be set to `none`. This value will make the images invisible on the webpage and keep the page layout intact.

The CSS `display` property determines how an element is displayed in the browser. When set to `none`, the selected element is completely removed from the document's flow, making it invisible to the user. In the context of images, using `display: none;` will hide the images upon page load. However, it's worth noting that while the images aren't visible, they're still loaded by the browser and can be revealed using JavaScript or by altering the CSS. This technique is often used in scenarios where content should be hidden initially and then revealed based on user interaction or other events.

Learn more about the CSS display property here:

https://brainly.com/question/30167754

#SPJ11

What is the average age for married people in this dataset?

In [ ]: avg_age_married = # fill in here

print(avg_age_married) # do not change this

Answers

Use the code below to get average age of married individuals in the dataset.
```
In [ ]: married_data = dataset[dataset["marital_status"] == "married"]
avg_age_married = married_data["age"].mean()
print(avg_age_married)
```

To calculate the average age for married people in the dataset, first filter the dataset to only include married individuals and then calculate the average age of those individuals. This step will be performed by this code -
In [ ]: married_data = dataset[dataset["marital_status"] == "married"].
Now assuming the age column is labeled "age" and the marital status column is labeled "marital_status", the mean of married data will be calculated which will eventually give the avg_age_married.
avg_age_married = married_data["age"].mean()
print(avg_age_married)
This will output the average age of married individuals in the dataset.

Learn more about Datasets: https://brainly.com/question/14548171

#SPJ11

What is the purpose of an End User License Agreement?

Answers

Answer: An End User License Agreement, or EULA for short, is a set of conditions under which a licensor gives a licensee permission to use a piece of intellectual property in the form of proprietary software. The licensor is the person or business that designed or developed the software.

Explanation:

What is more important, the individual or the collective (the group)? Why?
Least 2 paragraphs

Answers

Answer:

It's complicated.

Explanation:

I don't want to write the entire thing for you. However, there are multiple ways to think about this. Individualism vs. collectivism (groupthink) is a big debate itself.

---

Couple of points for the individual:

- Choice of personal freedom

- Not overly complicated (focuses on the self)

- The needs of the self comes before the needs of the many (in some situations, this might prove helpful)

Couple of points for the group:

- Shared thoughts and feelings may result in a bigger camaraderie than the thoughts of the self

- Compassion for humanity vs. selfishness

- A tendency to forge alliances

---

Interpret these for yourself. One's own mind is crucial in understanding the philosophical structures of life's biggest questions. And for it only being 2 paragraphs. Like, isn't that 10 sentences? I don't know what your teacher is looking for but your own personal thoughts on the matter may be good writing.

---

Here's a very-hard-to-see-the-text-but-helpful website, from the City University of New York (this talks about the theories of the individual and group interest in relation to government, but it may provide useful to you in understanding): https://www.qcc.cuny.edu/socialsciences/ppecorino/intro_text/Chapter%2010%20Political%20Philosophy/Group_vs_Individual_Interest.htm

To print preview a document, navigate to the _____ tab and select the Print option. File Page Design View Insert

Answers

Answer:

Option A

Explanation:

The process of viewing the print preview option in MS word is as follows -

a) First of all click on the File tab

b) After clicking on file tab, click on the print button at the left hand side

c) In the new tab that open up after clicking on the print button will provide an option of print preview.

Hence, option A is correct

Answer:

b. page layout

Explanation:

What arguments do the families have about food and the war

(anne franks diary)

Answers

In Anne Frank's diary, families argue about food and the war due to scarcity and the strain of living in hiding.

Why do families in Anne Frank's diary argue about food and the war?

In Anne Frank's diary, the families in hiding face the harsh reality of war and the scarcity of food, which gives rise to arguments and tensions. As they live in a confined space, the occupants must rely on rationed supplies and make do with limited resources. The war exacerbates their already strained living conditions, with constant fear of discovery and the uncertainty of the future.

Food becomes a focal point of contention, as hunger becomes a persistent companion and the struggle to sustain themselves intensifies. Furthermore, the pressure of living in close quarters for an extended period leads to heightened emotions and differing opinions, fueling conflicts within the families.

Learn more about Anne Frank's diary

brainly.com/question/751822

#SPJ11

When working with text boxes and shapes, which tab contains settings for applying shadows and 3-D rotation to objects?

Answers

Answer:

The answer is "Effects".

Explanation:

The effects and 3-D rotary features were included in the Home tab of Microsoft Presentation. It allows some special effects on the slides. In the presentation, it can animate text, images, forms, tables, SmartArt graphic-plural as well as other objects. The object could appear, disappear or travel through effects. You can change the size or color of an item.

show the productname, category, price, and number of characters in the product description for all heels (category) in the database. give the last column an alias of descriptionlength.

Answers

Answer:

To display the productname, category, price, and description length for all heels in the database, we can use the following SQL query:

SELECT productname, category, price, CHAR_LENGTH(description) AS descriptionlength

FROM products

WHERE category = 'heels';

This query will retrieve all products with 'heels' as their category from the products table, and display the productname, category, price, and number of characters in the description column as the last column, which we've aliased as 'descriptionlength'. This information can be used to compare the length of descriptions for different heel products and make informed purchasing decisions.

which of the following is an application layer protocol that is used throughout the internet for translating hostnames into their associated ip addresses?

Answers

The Domain Name System (DNS) is an application layer protocol that is used for translating hostnames into their associated IP addresses.

What is a domain name system (DNS)?Internet domain names are located and converted into Internet Protocol (IP) addresses using a database called the domain name system (DNS). The domain name system links a website's name that people use to find it to the IP address that a computer uses to find it.DNS servers translate domain names and URLs into IP addresses that computers can utilize. They convert the information a person types into a browser into information that a computer can use to discover a webpage. DNS resolution refers to this process of translation and lookup.Both internal and external queries are answered by DNS servers. When a server is asked by a client outside the domain for details regarding a name or address inside the domain, it offers the conclusive response.

To learn more about Domain Name System , refer:

https://brainly.com/question/18274277

#SPJ4

write a program to calculate the amount that will result from the doubling to understand which choice results in a larger amount.

Answers

Using the python program, calculating the amount that will result from the doubling to understand which choice results in a larger amount is given below

for num in range(30,31):

   if num==30:

       print(0.01*(2**num))

   else:

       print(0.01*(2**num),end=' ')

What is a range() function?

The range() function returns a series of numbers that, by default, starts at 0 and increments by 1 before stopping before a given number.

What is python programming?

A high-level, all-purpose programming language is Python. Code readability is prioritised in its design philosophy, which heavily uses indentation.

Steps for the Program:

Using the For loop and assigning a range of variables 30,31

Then if...else is used to print the largest amount if the num=30

If the if statement fails then it will print the else statement

Therefore the program to calculates the amount that will result from the doubling to understand which choice results in a larger amount being given.

To learn more about the python programming from the given link

https://brainly.com/question/26497128

#SPJ4

what is database management?​

Answers

Answer:

Database management is the process of organizing, storing, retrieving, and protecting data using a database management system (DBMS). The DBMS is a software application that enables users to interact with the database and manage data efficiently.

Database management involves designing the database schema, creating tables and fields, defining relationships between tables, and ensuring data integrity by enforcing constraints and validation rules. It also involves querying the database using SQL or other programming languages, updating or deleting data, and creating reports or visualizations of data.

You need to install several USB devices on a server. You have been asked to attach USB hubs to the computer. Only one USB port is available. How many hubs can you daisy chain using the single port?

Answers

Answer:

5 Hubs

Explanation:

Only up to 5 hubs you can have connected without problems.

Type the correct answer in the box. Spell all words correctly.
What kind of graph or chart does this image represent?


The given image represents a
.

Type the correct answer in the box. Spell all words correctly.What kind of graph or chart does this image

Answers

Answer:

its a bar graph

but some people also call it a line graph

i hope that helped

Answer:

bar graph

Explanation:

lots of bars

The vendor of your accounting software recently released an update that you downloaded and installed on your Windows system. Unfortunately, now your accounting software crashes when launched. Which action can you take to get your system running properly as quickly as possible without losing your accounting files

Answers

To resolve the issue of your accounting software crashing after installing an update, you can take the following steps:

1. Restart your computer: Sometimes, a simple restart can fix software issues. Close any open programs, restart your Windows system, and try launching the accounting software again.

2. Check for compatibility: Ensure that the updated version of the accounting software is compatible with your Windows system. Visit the vendor's website or contact their support team to verify compatibility requirements.

3. Update drivers: Outdated or incompatible drivers can cause software crashes. Update your device drivers by going to the manufacturer's website or using a driver update tool.

4. Reinstall the software: Uninstall the current version of the accounting software, including any associated files. Then, download the latest version from the vendor's website and reinstall it. Make sure to follow the installation instructions carefully.

5. Restore from backup: If reinstalling the software doesn't resolve the issue, restore your accounting files from a backup that you have previously created. This will ensure that your data is preserved while you troubleshoot the software problem.

If none of these steps solve the issue, consider reaching out to the vendor's support team for further assistance. Provide them with specific details about the problem, including any error messages you receive, to help them diagnose and resolve the issue more effectively.

To know more about software crashing, visit:

https://brainly.com/question/31625938

#SPJ11

WHAT IS A COMPUTER ????

Answers

A piece of technology

Answer:

A device for storing and processing data, a computer can perform sets of operations, called programs. These programs enable computers to perform an extremely wide range of tasks.

Suppose an object-relational mapping (ORM) library syncs a database from source code models. What is an advantage of supporting migrations of existing tables? Select the correct answer: To allow additional constraints on the tables To guarantee test database schemas match the production schema To populate test fixtures Faster creation of test databases Select your answer

Answers

An advantage of supporting migrations of existing tables is that it allows for faster creation of test databases. The object-relational mapping (ORM) library can sync a database from source code models, making it possible to create new tables and modify existing tables according to changes in the source code.

However, when changes are made to the schema of an existing table, it can be difficult and time-consuming to recreate the test database from scratch. This is where supporting migrations can be useful, as it allows the ORM library to modify the existing table schema in place, rather than creating a new table. This can significantly reduce the time and effort required to create and maintain test databases.

Other benefits of supporting migrations may include:Allowing additional constraints on the tables: By modifying the table schema, it may be possible to add additional constraints or rules to enforce data integrity.Guaranteeing test database schemas match the production schema: By syncing the test database with the production database, it ensures that the test data accurately reflects the state of the production data.Enabling easier rollback of changes:

To know more about library visit:

https://brainly.com/question/31630680

#SPJ11

In Secure Electronic Transaction, the purpose of Dual Signature is to link two messages that are intended for two different recipients. Discuss these two messages that are intended for two different recipients along with the need of linking. Also discuss if this purpose is fulfilled if we use KUc instead of KRc in the given model. Justify your answer with appropriate discussion.

Answers

Answer:

The analysis of the question is summarized in the following explanation.

Explanation:

The dual signature would be intended as a connector for both signals, we can clearly distinguish between the transmit antennas by delivering each statement with such a separate signing, thus making the linkage of certain messages possible via the World wide web.No violation of the records allows data easily accessible to a third party so we can improve the safety of 2 statements linking, because nobody can identify how the data have been authenticated as well as how the text could be decrypted to gather intelligence.

Other Questions
Before meeting with the principal, melody and wilmer conduct random surveys of parents and teachers to determine their preferences. use these data to make a comparative inference. 8. Torin is painting a portrait. He wants it to be square, with the mat aroundit to be 7 cm wide. The area of the mat should be equal to the area of theportrait itself. What should the dimensions of the portrait be, to the nearesttenth of a centimetre? what is the perimeter of the haxagon? How long would it take a jellyfish to float the 201 miles of the North Carolina coastline if it was in a current moving 4 miles per hour? Why did the cartoonist title this political cartoon Rough Sailing Ahead? -2(y-5)=3y+10-5y PPLLZZ HELPP ASAP Which lines best set a romantic mood in Act II, scene ii of Romeo and Juliet?What man art thou, that, thus be-screend in night,So stumblest on my counsel?How camst thou hither, tell me, and wherefore?The orchard walls are high and hard to climb,But, soft! what light through yonder window breaks?It is the east, and Juliet is the sun!At what oclock to-morrowShall I send to thee? Draw a diagram of The British political system showing the relations among elements (14 elements). the health care provider (hcp) is calling in a prescription for ampicillin for a neonate. what should the nurse do? select all that apply. amos works as a manager in the marketing department of a pharmaceutical firm. the time has come to develop sales forecasts for the next year. this year the company wants to increase the reliability of the sales forecast. amos was asked to participate in this process because of his extensive market knowledge. he joins a group of other experts in the area. individuals in amos's group all submit their own forecasts. these forecasts are then averaged, and the results are given back to the group so they can refine them. the intent is to reach a consensus by working separately on these forecasts. what type of forecasting technique is this? All of the following are marketing management philosophies except? sales orientation societal marketing orientation market orientation profitability orientation Find all the missing elements.Round to the nearest tenth.a = 10a b = 7C = 6bBoA = [ ? 1B = [ ]C = [ 1Enter Explain the destruction of the atomic bombing of Hiroshima and Nagasaki. M2Q10Net Realizable Value Method, Decision to Sell at Split-off or Process Further Arvin, Inc., produces two products, ins and outs, in a single process. The joint costs of this process were \( \$ 50,000 \ Why is pollution in the Mediterranean so problematic PLEASE HELP WILL GIVE BRAINLIEST What is the opposite of the opposite of the opposite of 29? he saw happiness as an important human goal and is known to have introduced the science of happiness mi esposo y yo ------------enfermos What does a liver cells shape say about what it does.