c) Put these stages into the correct order.
(i) Script (ii) aim
(iii) Outline

Answers

Answer 1

Answer:

Aim

Script

Outline

Yan po answer, wag nang echoss mwa mwa


Related Questions

A(n) _____ is a formal meeting between an employer and a job applicant
a.
background check
b.
gatekeeper
c.
interview
d.
personality test


Please select the best answer from the choices provided

A
B
C
D

Answers

Answer:

C. Interview

Explanation:

Interview

Answer:

C. interview

Explanation:

edge 2022

________ is a function pertaining to a particular database that develops procedures and practices to control and protect the database.

Answers

Answer: Database administration

Explanation:

Do you want to run a listing to see files that were used by the last access date is date does not display by default which command would you use to find additional properties of the files to reference.

Answers

Considering the situation and the computer application, the command you would use to find additional properties of the files to reference is "Get-childitem | get-member "

What is Get-childitem command?

Get-childitem command in computer applications is used to get the items in specific locations.

Get-childitem command can be used to gets the items inside a file container, usually referred to as child items.

Similarly, the Get-member command used to gets the members, the properties, and methods of files.

Hence, in this case, it is concluded that the correct answer is Get-childitem | get-member

Learn more about Computer commands here: https://brainly.com/question/25243683

can some one make me a pandora account and give me the email and the password to it please

Answers

Answer:

Ill do it but you do know someone can see the information right?

Explanation:

¿Qué juegos pueden jugarse en un Raspberry 4 B con 2 GB de RAM?

Answers

Answer:

flow chart of sales amount and commission %of sales

imagery functions as a coding system to help individuals acquire movement patterns. this describes

Answers

Answer:

Imagery can be used to develop qualities in yourself you'd like to have — it's like emotional body-building — and using a technique called “Evocative Imagery” you can cultivate courage, patience, tolerance, humor, concentration, self-confidence or any other quality you'd like to embody.

which of the following is a true statement?

A. in the customary system measurements are often expressed as decimals.

B. in the metric system measurements are often expressed as fractions.

C. in the customary system measurements are often expressed as fractions.

D. fractions are equally common in both the metric and customary systems.​

Answers

Answer:

C

Explanation:

yeah-ya........ right?

Please define processor​

Answers

Processor means to break down something.

Write true or false:-
1. The start attribute always accept an integer value.
2. Description list is used to create a bulleted list.
3. The <DT> tag is used to create a table in HTML.
4. The <TR> tag is used to create cells in the table.
5. The VALIGN in attitude of the <TD> tag is used to Align the position of text in the cell vertically.

And please don't give only one answer, if you are giving, then please give all the answers. ​

Answers

Answer:

false

true

false

true

false

Explanation:

.

Why should you pay your full credit card balance by the due date every month?​

Answers

Answer: to avoid late fees and interest

Explanation:

Can anyone help me out with my photography questions?

Answers

Verifying, The answer above me is correct

I need an If else statement that sorts three numbers from a file from least to greatest

Answers

void sort3(int& a, int& b, int& c)
{
if (a > b)
{
std::swap(a, b);
}
if (b > c)
{
std::swap(b, c);
}
if (a > b)
{
std::swap(a, b);
}
}

"schools should use a wireless network instead of a wired network".

discuss this statement.

(6 marks) ​

Answers

hi there!

Answer:

I agree with this statement as wireless networks are better than wired ones especially for a huge structures like a school. in a big you will have to use kilometers of cables to set up a network, whereas you can set up the same network using a few access points and much less cables of course.

hope this helps.

Megan owns a small neighborhood coffee shop, and she has fifteen employees who work as baristas. All of the employees have the same hourly pay rate. Megan has asked you to design a program that will allow her to enter the number of hours worked by each employee and then display the amounts of all the employees’ gross pay. You determine that the program should perform the following steps:

1. The text that is in the file is stored as one sentence. Incorporate the code that reads the file’s contents and calculates the following:
a. total number of words in the file
b. total average number of words per sentence
c. total number of characters in the file
d. total average number of characters per sentence


file name: employee_names.txt
file text:
George Thomas
Melinda Harris
Norah Jeddery
Jorge Ortiz
Samantha Gregory
Tanvi Gupta
William Edwards
Tania Gomez
Erica Sanders
Gracie Lou Freebush
Tony Montana
Obi-Wan Kenobi
Cruella De Vil
Marty McFly
Napoleon Dynamite

Answers

Answer:

she gives 10 dollars an hour

Explanation:

no

What commands does SuperKarel know that regular Karel does not?

turnleft() and jump()

O

turnRight() and jump()

O

turnAround() and turnRight()

O

turnAround() and jump ()

Answers

Answer:

turnRight and turnaround

Explanation:

The regular karel does not know these commands

The command that SuperKarel know that regular Karel does not is turnAround() and turnRight(). The correct option is C.

What is Karel?

Richard E. Pattis created Karel, an educational object-oriented programming language, to help teach programming to his Stanford University students.

Through simple object-oriented commands, the student learns to program by instructing Karel, a robot, to move, pick up a beeper, place a beeper, and turn off.

KAREL was developed as an educational tool to teach programming language elements to students studying robotics.

KAREL has since evolved into the primary FANUC programming language for robots and robot controllers. This powerful CNC programming language is extremely versatile.

SuperKarel understands two commands that regular Karel does not: turnAround() and turnRight ().

Thus, the correct option is C.

For more details regarding KAREL, visit:

https://brainly.com/question/13278951

#SPJ5

How does a cell phone change the
incoming signals from a caller into sound that
you can hear

Answers

Answer:

they send electrical signals to the buzzer. The buzzer changes those electrical signals into sound. You hear the buzzer sound and know that someone is calling you.

Explanation:

Answer: Cell phone or any electric device you can say changes the electric signal to radio waves at transmitting end which is converted back to electric signal and perceived as sound waves at receiving end

Explanation:

how to send an email to multiple recipients individually outlook

Answers

Answer:

Include multiple people in the "To" section. picture attached below.

PLEASE I NEED HELP ASAP PLEASE PLEASE!!!

For a list of numbers entered by the user and terminated by 0, find the sum of the positive numbers and the sum of the negative numbers. C++ language only.

Answers

Answer:

Following are the program in the Python Programming Language

#set variables to 0

positive_sum=0  

negative_sum=0  

#print message  

print("Enter 0 to terminate")  

#set the while loop  

while(True):  

#get input from the user  

num=float(input("Enter positive or negative numbers: "))  

#set if statement to check condition  

if(num==0):  

  break  

elif(num>0):  

  positive_sum+=num  

else:  

  negative_sum+=num  

#print output with message  

print()  

print("sum of positive numbers: ", positive_sum)  

print("sum of negative numbers: ", negative_sum)  

Output:  

Enter 0 to terminate  

Enter positive or negative numbers: 1  

Enter positive or negative numbers: 3  

Enter positive or negative numbers: 5  

Enter positive or negative numbers: -7  

Enter positive or negative numbers: -2Enter positive or negative numbers: 0  

sum of positive numbers:  9.0  

sum of negative numbers:  -9.0

Explanation:

Here, we set two integer data type variables "positive_sum", "negative_sum" and initialize to 0.

Then, we set the while infinite loop inside the loop.

Set a variable "num" and get input from the user in it.

Set the if conditional statement and check condition the variable "num" is equal to 0 then, loop will terminate.

Set the elif statement and check condition the variable "num" is greater than 0 then, add that input and store in the variable "positive_sum"

Otherwise, add that input and store in the variable "negative_sum".

Finally, we print the output with the message.

Pomelo and Calamansi Trees are type of plants that suitable in this method.A. Cleft-Grafting B. Marcotting C. Layering D. T-Budding

Answers

Pomelo and Calamansi Trees are type of plants that suitable in this method.A. Cleft-Grafting

The ____ layer in the TCP/IP model is a direct equivalent to the Network layer in the OSI reference model.

Answers

Answer: Application

Explanation:

The ________ command is one of the most commonly used command-line commands. It can be used to check IP connectivity between two network devices.

Answers

Answer:

ipconfig

Explanation:

That is the actual

command

Sidney needs to create a decimal number variable that will be added to another number. What kind of variable is required?binaryBooleanstringfloat

Answers

Answer:

Option D. float is the correct answer.

Explanation:
Decimal number contains decimal point. Out of all the given data types, float data type store the number with decimal point.
As the number has to be further used for calculations float ahs to be used. Because the numbers can also be stored in string but cannot be used for further calculations.

can someone pelaseee help

Answers

Answer:

Explanation:

develloppemetn de grace en option est logiquement une biologiste experimenter des annes 1256 a toulouse en france

1. Encrypt this binary string into cipher text: 110000. Include in your answer the formula the
decoder would use to decrypt your cipher text in the format (coded answer) x N mod (m)
= Y
2. Decrypt this cipher text into a binary string: 106

I am very stuck and still don’t know how these work.

Answers

Answer:

Encrypt this binary string into ciphertext: 110000. Include

in your answer the formula the decoder would use to decrypt your cipher text in the format (coded answer) x N mod (m) = Y

-Decrypt this ciphertext into a binary string: 106

Now that you can see how public and private keys work in a real-world scenario, please explains how it works for computers and internet communications in relation to cybersecurity.

Explanation: ……………..

Is this statement true or false? While in slide show mode, a click and drag is no different than a click. True false.

Answers

In slide show mode, it should be noted that a click and drag is the same as a click. Therefore, the statement is true.

It should be noted that slide show mode typically occupies the full computer screen. One can see how the graphics and animations will look during the actual presentation.

Rather than waiting and clicking, one can make the PowerPoint files open directly in the slide show mode. Therefore, it's not different from clicking.

Learn more about slideshow on:

https://brainly.com/question/25327617

Answer:

"True"

Explanation:

I took the test!

software ............. the hardware what to display on the user's screen​

Answers

A monitor? This displays on the users screen but I’m not sure if that’s what your asking good luck on finding the right answer.

please help
Felicity wants to take her DSLR camera on vacation, but she can take only one bag. Why is taking a DSLR camera with her not a good idea?

Answers

The reason why taking a DSLR camera with her is not a good idea is because a DSLR camera and its accessories usually require their own bag and can be heavy.

A digital single-lens reflex (DSLR) camera is being used by photographers especially for shooting stunning landscapes or portrait images. DSLR cameras are durable and can be used with a variety of lenses and attachments, they have a long battery life, and provide faster shooting speeds with better autofocus.

Therefore, the reason why taking a DSLR camera with her is not a good idea is because a DSLR camera and its accessories usually require their own bag and can be heavy, whereas she can only take one bag with her.

Learn more about digital single-lens reflex (DSLR) camera here:

https://brainly.com/question/13972212

Answer:

I got the answer here:

Explanation:

Fill in the blank: With ticket ________, you are able to edit ticket properties according to which team owns the ticket.

Answers

Answer: records customization

Explanation:

Which of the following is true regarding computer science careers? There are a limited number of jobs in this field. There are not different job types in this field. The number will increase over the next several years. You must be a programmer to work in this field.

Answers

Answer: There are several types of jobs in this field

Explanation: i did the test

The practice of applying technology to address difficult organizational issues is known as computer science. Thus, option D is correct.

What is the carrier in the computer science?

Computers and technology have been incorporated into almost every economic sector, industry, and even organization operating in the modern economy, which is why this field is so crucial.

Because it allows me to pursue my two interests in problem-solving and creating engaging experiences, computer science is my field of choice.

I can come up with problems that are unique to a user, create and brainstorm solutions, and then put those ideas into practice through coding.

Computer scientists build, develop, and improve supply chains, content algorithms, and even job application platforms. We are already living in the age of computer science.

As technology grows increasingly pervasive in our lives and the economy, computer science becomes more crucial.

Learn more about computer science here:

https://brainly.com/question/20837448

#SPJ2


DOES ANYONE KNOW COMPUTER SCIENCE?

Answers

Answer:

statClass.java

Explanation:

You use the classname of the public class.

One of those will contain main()

Note that this example has a typo. statClass vs startClass.

Other Questions
read the following passage from resistance to civil government by Henry David Thoreau: Yet this government never of itself furthered any enterprise, but by the alacrity with which it got out of its way. it does not keep the country free. it does not settle the west. it does not educate. the character inherent in the american people has done all that has been accomplished; and it would have done somewhat more, if the government had not sometimes got in its way. how does Thoreau use a parallelism in this passage? a. to emphasize the words but by the alacrity with which it got out of its wayb. to draw attention to what the american people do that the government doesnt c. to add the surprising revelation that the government gets in the way of progress d. to compare the government to an obstacle, such as a tall mountain or river Based on this map, which of the following countries do you think contributes most to global climate change? |Area of a square field is 617796cm . Find length of its each side. At the movie theatre, child admission is 56.00 and adult admission is $9.60. On Sunday, twice as many adult tickets as child tickets were sold, for a total salesof $907.20. How many child tickets were sold that day? Find the area of the shaded region. Change into indirect speech.Please anyone Gilchrist Corporation bases its predetermined overhead rate on the estimated machine-hours for the upcoming year. At the beginning of the most recently completed year, the Corporation estimated the machine-hours for the upcoming year at 44,800 machine-hours. The estimated variable manufacturing overhead was $4.65 per machine-hour and the estimated total fixed manufacturing overhead was $1,239,616. The predetermined overhead rate for the recently completed year was closest to: The endogenous cholesterol synthesis by the liver that we need to function normally it can lead toplaque formation within the blood vessels..Falseb. True On June 1, 2019, Irene places in service a new automobile that cost $21,000. The car is used 70% for business and 30% for personal use. (Assume this percentage is maintained for the life of the car.) She does not take additional first-year depreciation. Determine the cost recovery deduction for 2020. Allocative efficiency occurs:a. Anywhere inside or on the production possibilities frontier.b. When the total cost of production is minimizedc. At all points on the production possibilities frontier.d. At only one point on the production possibilities frontier.e. At the points where the production possibilities frontier crosses the horizontal or vertical axis. From a chemical view, how is an amino acid is being recognized by its specific aminoacyl tRNA synthetase? find the composition of transformations that map ABCD to EHGF.Reflect over the (y) -axis then translate (x+?,y+?) A DVD player was marked down by 30 percent from its original price of $75. Including a 7 percent sales tax, what is the final cost of the DVD player? What is a paraphilia? Define the term and explain how paraphilias are different from normal sexual variations. In addition, what are the eight categories of paraphilias that are recognized by the American Psychiatric Association? List the eight categories, and give an example of each one. writte theories of race ? if u can answer all .. Guys the polygons in each pair are similar find the scale factor smaller figure to the larger It is said that in a perfectly competitive market, raising the price of a firm's product from the prevailing market price of $179.00 to $199.00, ____________________. will likely cause the firm to reach its shutdown point immediately will cause the firm to recover some of its opportunity costs could likely result in a notable loss of sales to competitors is a sure sign the firm is raising the given price in the market Don't forget...........following rule..a.an.the.no article the gap between 'where we are now' and 'where we want to be' is known as the..... 1. In 2-3 sentences, describe your response to this event and what, if anything, you think Washington State government should do about the Hanford Nuclear Site? (Right answer only please) :)