Environmental include disturbances in the external environment.​

Answers

Answer 1

Answer:

from what i know, Stuff like corona and no air can disturb the Environment.


Related Questions

What is the main purpose of the status report? O A. To ensure that management and the team has a clear picture of the state of the project. B. To alert management to exceptional or unusual situations, C. To document the impact of change requests from the client. D. To detail the mistakes made in planning and budgeting,​

Answers

Answer:

A. To ensure that management and the team has a clear picture of the state of the project

Explanation:

hope this helps!

Answer:

A

Explanation:

4
Multiple Choice
You wrote a program to find the factorial of a number. In mathematics, the factorial operation is used for positive integers and zero.
What does the function return if the user enters a negative three?
def factorial number):
product = 1
while number > 0
product = product number
number = number - 1
return product
strNum = input("Enter a positive integer")
num = int(str Num)
print(factorial(num))
O-6
O-3
O There is no output due to a runtime error.
0 1
< PREVIOUS
NEXT >
SAVE
SUBMIT
© 2016 Glynlyon, Inc. All rights reserved.
V6.0 3-0038 20200504 mainline

Answers

The function will output positive 1 to the console. This happens because we declare product as 1 inside our function and that value never changes because the while loop only works if the number is greater than 0.

If anyone has the answer for this that would be really helpful!!

Answers

Hope this will help you...

Answer:

1.a

2.f

3.b

4.c

5.e

6.g

7.h

8.d

Explanation:

what does libtard mean

Answers

Answer:

Normally, It is a person of the opposite political belief that thinks that liberals/leftists are stupid for what they say. Most of the time, this "insult" is mostly used by Right-Winged Conservitives or used as a joke by leftists to show how funny it is when conservitives say it.

Answer:

it means a liberal r3tard. lib-tard

Explanation:

a file named loan.html, write an HTML document that looks similar to figure 9-7 in the textbook. Write four functions with these headers:
function doPayment ( )
function doBalance ( )
function computePayment (principal, annualRate, years, periodsPerYear)
function computeBalance (principal, annualRate, years, periodsPerYear, numberOfPaymentPaidToDate)
The first two functions (doPayment and doBalance) do the following:

Take no parameters.
Are called from an onclick attribute.
Get input from the user.
Call the computePayment or the computeBalance function.
Display a result to the user.
The computePayment function computes and returns the monthly payment for a loan with a fixed annual interest rate. The formula for computing a loan payment is

p = ar
1 − (1 + r)−n
Where p is the payment per period, a is the loan amount, r is the interest rate per period, and n is the total number of periods throughout the life of the loan.

The computeBalance function computes and returns the balance for a loan with a fixed annual interest rate. The formula for computing the balance of a loan after d payments have been made is

b = a (1 + r)d − p ( (1 + r)d − 1 )
r
Where b is the balance or payoff amount, a is the loan amount, r is the interest rate per period, p is the payment per period, and d is the number of payments paid to date.

Answers

Answer:

function computePayment(principal, annualRate, periodsPerYear){

   var pay;

   pay = (principal * annualRate)/(1-(1+annualRate)-periodsPerYear);

   return pay;

}

function computeBalance(principal, annualRate, periodsPerYear, numberOfPaymentsPaidToDate){

   var balance ;

   let num = (principal*(1+annualRate)*periodsPerYear);

   let denum = numberOfPaymentsPaidToDate *((1+annualRate) * periodsPerYear-1)*annualRate;

   balance = num-denum;

   return balance;

}

function doPayment(){

   let loanAmount = document.getElementById("principal").value;

   let rate = document.getElementById("rate").value;

   let duration = document.getElementsById("time").value;

   let result = computePayment(loanAmount, rate, duration);

   document.getElementsById("periodPay").value = result;

}

function doBalance(){

   let loanAmount = document.getElementById("principal").value;

   let rate = document.getElementById("rate").value;

   let duration = document.getElementById("time").value;

   let currentPaid = document.getElementById("paidMonths").value;

   let result = computeBalance(loanAmount, rate, duration, currentPaid);

   document.getElementById("displayBalance").value = result;

}

Explanation:

The javascript source code defines four functions. The 'doPayment' and 'doBalance' functions are initiated with the onclick properties of the HTML file buttons of the loan calculator. The doPayment function gets the user input from the HTML file and assigns them to variable which are used as the parameters of the computePayment function called.

The doBalance function also retrieve user input from the HTML file and calls the computeBalance function to calculate and return the balance of the loan to be paid.

What can be harmful to your computer?

Mobile Devices
Fogd and Drinks
Respect
Cyberbullying

Answers

Answer:

B, Food and Drinks......

Which task can be completed with the Template Organizer?
A. grouping templates based on categories
B. adding styles from one template to another
C. listing template names in ascending order
D. defining the numbering properties of templates

Answers

Answer:

B is the answer

Explanation:

i just got it right

Answer:

b thats the answer bby <3

Explanation:

power point programm

Answers

huhhhhhhhyyyyhheyeydud

4.5 code need help we are not to the stage .format Teacher does not want that

Answers

i = 0

while True:

   word = input("Please enter the next word: ")

   if word == "STOP":

       break

   i += 1

   print("#"+str(i)+": You entered "+word)

print("All done. "+str(i)+" words entered.")

I hope this helps!

what is collaboration

Answers

Answer:

the action of working with someone to produce or create something.

Collaboration is the process of two or more people, entities or organizations working together to complete a task or achieve a goal. Collaboration is similar to cooperation. Most collaboration requires leadership, although the form of leadership can be social within a decentralized and egalitarian group.

Create a script to input 2 numbers from the user. The script will then ask the user to perform a numerical calculation of addition, subtraction, multiplication, or division. Once the calculation is performed, the script will end.

Answers

Answer:

The code given is written in C++

First we declare the variables to be used during the execution. The names given are self-explanatory.

Then the program outputs a request on the screen and waits for user input, for both numbers and one more time for the math operation wanted, selected with numbers 1 to 4.

Finally, the program executes the operation selected and outputs the result on screen.  

Code:

#include <iostream>

int main()

{

// variable declaration

float numberA;

float numberB;

int operation;

float result=0;

//number request

std::cout<<"Type first number:\n"; std::cin>>numberA;

std::cout<<"Type second number:\n"; std::cin>>numberB;

 

//Operation selection

cout << "Select an operation\n";

cout << "(1) Addition\n";

cout << "(2) Subtraction\n";

cout << "(3) Multiplication\n";

cout << "(4) Division\n";

std::cout<<"Operation:\n"; std::cin>>operation;

switch(operation){

 case 1:

  result = numberA+numberB;

  break;

 case 2:

  result = numberA-numberB;

  break;

 case 3:

  result = numberA*numberB;

  break;

 case 4:

  result = numberA/numberB;

  break;    

 default:

  std::cout<<"Incorrect option\n";

 }

//Show result

std::cout<<"Result is:"<<result<<::std::endl;

return 0;

}

Write a program that prompts the user to enter a Social Security number in the format ddd-dd-dddd, where d is a digit. The program displays Valid SSN for a correct Social Security number or Invalid SSN otherwise.

Answers

ssn = input("Enter a valid Social Security number: ")

dashes = 0

nums = 0

message = "Invalid SSN"

if len(ssn) == 11:

   for x in ssn:

       if x.isdigit():

           nums += 1

       elif x == "-":

           dashes += 1

if nums == 9 and dashes == 2:

   message = "Valid SSN"

print(message)

I wrote my code in python 3.8. I hope this helps!

The program that prompts the user to enter a Social Security number in the format ddd-dd-dddd, where d is a digit can be implemented in Python using regular expressions. The regular expression pattern for the SSN format can be used to validate the input.

Pythons code:

```python

import re

ssn_pattern = re.compile(r'^\d{3}-\d{2}-\d{4}$')

ssn = input("Enter your Social Security Number (format: ddd-dd-dddd): ")

if ssn_pattern.match(ssn):

print("Valid SSN")

else:

print("Invalid SSN")

```

In the above code, we first import the `re` module to work with regular expressions.

We then define the regular expression pattern for the SSN format as `^\d{3}-\d{2}-\d{4}$`. This pattern matches any string that starts with three digits, followed by a hyphen, then two digits, another hyphen, and finally, four digits.

We then prompt the user to enter their SSN using the `input()` function. We then check if the entered SSN matches the pattern using the `match()` function of the regular expression object `ssn_pattern`.

If the SSN matches the pattern, we print "Valid SSN". Otherwise, we print "Invalid SSN".

Know more about SSN,

https://brainly.com/question/31778617

#SPJ4

HELP PLEASE

Today, not only do companies employ public relations managers but so do many
celebrities and politicians. Research and explain what the role of a public relations
manager is and see if you can think of the reasons why many public figures seem
to find them useful.

Answers

Answer: The role of a public relations manager is to keep the image of a celebrity, politician, ect. good so that they can keep their career going while constantly in the eye of the public. Public figures may find this useful because it can help them keep their record clean and have a personal life while also making it seem like they are perfect people to their audience, which in hand can help with business.

Explanation:

3. Describe what is happening in this code

import java.util.Scanner;

public class WordFinder {
public static void main(String[] args) {
Scanner s = new Scanner(System.in);
System.out.println ("Please enter a word");
String usrWord = s.nextLine();
String alph = ("ABCDEFGHIJKLMNOPQRSTUVWXYZ");

for(int i = alph.length () - 1; i >= 0; i--){
System.out.println(alph.charAt (i) + usrWord);

}
}
}

Answers

Answer:

Prints out the word a user has inputted once for each letter of the alphabet string, with the letter (starting from "Z") and the word together.

Explanation:

Hi there! I program in C# and javascript mainly but I'm pretty sure I can see what's happening here. :)

Scanner is used to get user input.

We import the library at the top so that we can use it.

Inside main in the WordFinder class we create a new instance of the Scanner object so we can use it to get input. We assign this to the variable "s".

On the next line we use System.out.printIn to print a message that asks the user to enter a word.

On the next line we use s.nextLine() ("s" to reference the Scanner) to get the input from the user and we assign the string to the String type variable called "usrWord".

On the next line we assign a string that is all capital letters of the alphabet to a String type variable called "alph".

Under this, we create a for loop

"i" is the length of the alph string minus one (so 25, it doesn't need to be 26 as java uses zero-based indexing which is just a fancy way to say counting starts at 0 instead of 1)

The for loop says that while "i" (starting from 25) is more than or equal to 0, to minus 1 from "i".

For each time it does this, it cycles through each letter of the alphabet string backwards (because we're starting at 26 printing the letter and the word as one string each time.

(charAt is a method that returns the character at the index number in the string it is given btw)

Example output of the code, if the user inputs the word "cat", it would print:

Zcat

Ycat

Xcat

Wcat

Vcat

(and so on, you get the picture)

Let me know if you need any of that clearing up! :)

Hope that helps!

Answer:

lol

Explanation:

write a program to prompt for a score between 0.0 and 1.0. If the score is
out of range, print an error. If the score is between 0.0 and 1.0, print a grade
usmg the following table:
Score Grade
0.9 A
08 B
07
= 0.6 0
0.6
if the user enters a value out of range, print a suitable error message and exit.
For the test enter a score of 0.85.
Check Code
Reset Code​

Answers

score = float(input("Enter Score: "))

message = "Score out of range"

if score >= 0.9:

   message = "A"

elif score >= 0.8:

   message = "B"

elif score >= 0.7:

   message = "C"

elif score >= 0.6:

   message = "D"

elif score < 0.6:

   message = "F"

else:

   message = "Out of Range"

print(message)

I hope this helps!

The Review tab in Microsoft Publisher provides two groupings called _____. Proofing and Language Spell Check and Research Proofing and Thesaurus Language and Comments

Answers

Answer:

Proofing and language.

Explanation:

Environmental ____ include disturbances in the external environment.​

Answers

Answer:What are external environmental factors?

Customers, competition, economy, technology, political and social conditions, and resources are common external factors that influence the organization. Even if the external environment occurs outside an organization, it can have a significant influence on its current operations, growth and long-term sustainability.

Explanation:

Imagine you have a friend who is new to computing. He is not necessarily interested in going into programming, but he would like to know the basics in terms of how computers work, how programs are written, and how computers communicate with each other. You are talking to him about the basics, but he keeps confusing operating systems, programming language, computer language, and markup language. How would you use very plain language to explain to him the differences between these things and how they interact with each other?

Answers

An operating system is responsible for the overall function of a computer system and it enables us to program a computer through thes use of a computer language.

What is programming?

Programming can be defined as a process through which software developer and computer programmers write a set of instructions (codes) that instructs a software on how to perform a specific task on a computer system.

What is an operating system?

An operating system can be defined as a system software that is pre-installed on a computing device, so as to manage computer hardware, random access memory (RAM), software, and all user processes.

Basically, an operating system is responsible for the overall function of a computer system and as such without it, a computer cannot be used for programming. Also, a computer language is typically used for programming while a markup language is a type of computer language that is mainly used for designing websites through the use of tags.

Read more on software here: https://brainly.com/question/26324021

Other Questions
What is the y=Mx+b of this equation Which statement is an important point in the passage? A. Computers are used to create many of a movie's special effects. B. An artist can add scales to an alligator using a computer drawing program. C. Artists sometimes work 12-hour days. if u = < 8,6> and v = (-8,-8>, what is u + v What is the quotient of 6/7 and 3/14 Ghengis Khan wanted control of thedue to its trade value,ASilk RoadBHagia SophiaCRoman EmpireDByzantine Empire 45/56 divided by (-.15) - Responder las siguientes preguntas. A).- What is your favorite music ? My favorite music is Rock B).- who is your favorite singer? . C).- What is your favorite song ?..................................................................... D).- What is your favorite musical instrument ? E).- Where do you listen music ? F).- When do you listen music? WILL MARK BRAINLIEST IF CORRECT!!!!!!!!!!!!The mouth generally has a neutral pH close to 7. When salivary enzymes are swallowed and enter into the stomach, which of the following will occur?a. The enzymes will be deactivated by the change in pH.b. The enzymes will be activated by the change in pH.c. The enzymes will be deactivated by inhibitors in the stomach. d. The enzymes will be activated by coenzymes in the stomach. According to the Twenty-sixth Amendment, who can vote?O high school studentO women18-year-oldsO people of any race A saleswoman is paid $10 per hour and $6 for each sale she makes. She wants to earnmore than $150 in an 8-hour work period.What inequality that represents the number of sales, x, the saleswoman must make in an 8-hourperiod to earn more than $150.O A 80 + 62 > 150OB. 80 + 62 > 150o C 80+ 6 > 150D. 802 + 6 > 150Activity 2 of 2What is the least number of sales she must make to reach her sales goal? Show your work orexplain your answer. this fortress was a major battle station for the french and indian war and seven years war and it was a victory for the british Which statement describes photosynthesis?a. Carbon dioxide and water combine to form glucose and oxygen.b. Carbon dioxide and glucose combine to produce energy and water.c. Carbon dioxide, glucose, and water are released to produce energy.d. Carbon dioxide and water are released when glucose and oxygen combine. Find the area. Simplify your answer. wanna know ur iready math scores? Someone help pls ? Pauvre Malik!A. Lisez l'histoire de Malik.Il est midi, Malik a faim et va au restaurant. Il regarde distraitement les gens qui passentdans la rue. Soudain, il voit sa petite amie Mina avec un autre garon! Ils ont l'air de biens'amuser! Malik est furieux. Il sort du restaurant en courant et cherche le couple travers See image below for question Yeast are capable of EITHER aerobic respiration OR fermentation. If the situation always for either pathway to proceed, which pathway would yeast cells use and why?PLEASE HELP ME THIS IS DUE IN 1 hour who plays among us????? It is difficult to burn a heap of green leaves but dry leaves catch fire easily.Explain. How do the lines on a topographic map indicate the steepest side of a hill/mountain?