Answer:
Script
Explanation:
A set of code blocks which is written to solve a particular problem in a certain programming language and passed to the interpreter to run is called a script.
The script is program's body which is made up of codes written in accordance to the syntax of a certain programming language. In other to execute the program written, it has to be passed to the interpreter, which run the script and produces an output.Hence, the set of code written by a programmer is called the script.
Learn more :https://brainly.com/question/14364607
camera mount that is worn over the shoulders of a camera operator. What is it called?
A large company pays its salespeople on a commission basis. The salespeople receive $900 per week, plus 8.75 percent of their gross sales for that week. For example, a salesperson who sells $10000 worth of merchandise in a week receives $900 plus 8.75 percent of $10000, or a total of $1775. You have been supplied with a list of the products sold by each salesperson. The values of these products are as follows:
Item Value
1 100
2 200
3 300
4 400
Develop a script that inputs one salesperson’s items sold for last week, calculates the salesperson’s earnings and outputs HTML5 text that displays the salesperson’s earnings.
Answer:
Explanation:
Why do some computer systems not allow users to activate macros?
O Amacro can be used by only one person.
0 You must close all other programs to run a macro.
O The Word software does not work well with macros.
O Macros can carry viruses that can harm a computer.
What is ligma? please someone answers ill give the brainliest.
Answer:
Ligma is just a made-up disease, its not real. Tons of people use that word now for a inappropriate joke, don't fall for it!
Explanation:
The sugma and ligma are the rare diseases cause by the bofa family viruses.
What Sugma and Ligma are related?Sugma and Ligma are both diseases and are related to each other where LIGMA is also known as loose internal gene miaasintits and this is the second stage od BOFA which is biologically offset farkowonian asintits and this diseases interferes with the immune system and it increases the risk of having tuberculosis and if in LIGMA a person enter the BOFA stage.
It is considered as last treatable stage and due to highly weakened immune system the people are most likely to die at this stage but still there is one treatment suggested n this case called as LIGMA balls where as SUGMA is the rarest antibiotic strain resistant of LIGMA virus.
The sugma is non lethal but is contagious and can spread very fast and its great prevention is by awareness of BOFA family viruses s sugma strain can be transferred via both verbal and virtual communication and as it is a rare disease.
Therefore, The sugma and ligma are the rare diseases cause by the bofa family viruses.
Learn more about virus on:
https://brainly.com/question/7480851
#SPJ2
Write a function predict_wait that takes a duration and returns the predicted wait time using the appropriate regression line, depending on whether the duration is below 3 or greater than (or equal to) 3.
The appropriate function which could be used to model the scenario can be written thus ; The program is written in python 3 ;
y = 3x + 3.5
#since no data is given ; using an hypothetical regression equation expressed in slope - intercept format ; where, x = duration and y = Predicted wait time.
def predict_wait(x) :
#initialize a function named predict_wait and takes in a certain duration value, x
y = 3*x + 3.5
#input the x - value into the regression equation to calculate y
return y
#return y
Learn more : https://brainly.com/question/25556810