this activity involves the final processing and complete sterilization of the process finish product

Answers

Answer 1

Answer:

which activity is that am just asking


Related Questions

Demographics and psychographics influence database marketing.


False

True

Answers

Answer:

true is the correct answer

What is a server? Why is it so important?

Answers

Answer:

Servers not only help your business with data storage, but they will also improve efficiency and productivity. As employees can access data and information from any workstation it means they can work from home, while travelling or from a different office.

Answer:

hope this help

Explanation:

A server is a computer or system that provides data,resources,service or programs. This is important because this stores our information and helps us surf online.

Which action is applicable only to tables?

Answers

Answer:

the answer is adding and deleting rows

Write a function named buildArray that builds an array by appending a given number of random two-digit integers (10-99). It should accept two parameters — the first parameter is the array, and the second is an integer for how many random values to add, which should be input by the user.

Answers

Answer:

The function in C++ is as follows:

void buildArray(int arr[], int n){

   srand(time(NULL));

   for(int i = 0;i<n;i++){

       arr[i] = rand() % 99 + 10;    }

   for(int i = 0;i<n;i++){

       cout<<arr[i]<<" ";

   }

}

Explanation:

This defines the function

void buildArray(int arr[], int n){

This klets the program generate different random numbers

   srand(time(NULL));

This iterates from 0 to n - 1 (n represents the length of the array)

   for(int i = 0;i<n;i++){

This generates random 2 digit integer into the array

       arr[i] = rand() % 99 + 10;    }

This iterates through the array and print the array elements

   for(int i = 0;i<n;i++){

       cout<<arr[i]<<" ";

   }

}

See attachment for complete program that includes the main

There have not been any changes to instruments or music in the last 50 years. The technology in music is still the same.
Group of answer choices

True

False

Answers

Answer:

False i hope this is rigth

is the most important characteristic of a hard drive.​

Answers

Answer:

sfywajsc

Explanation:

,.jQNMs

Answer:

Available Storage Space

Explanation:

How much data a hard drive can store is one of its most prominent characteristics; capacity is often the only difference between otherwise identically performing models. Flash-based hard drives cost more than platter-based hard drives relative to capacity.

Select the correct images Jane has to pick images that portray action photography. Which of these images would she pick? please help me​

Answers

Answer: i think its the horse the basketball and the bike hopefully i helped

Explanation:

Choose the correct term to complete the sentence.

Professional communication must be objective,

, and unemotional
informal
technical
rational

Answers

Answer:

the answer to your question is obviously "rational"

The correct option is rational.

What is Professional communication?Professional communication is a metier subfield of communication that pays close concentration to the theories and methods of communication within professional contexts.After reading this direction, you will better comprehend the four main types of contact: Verbal, non-verbal, written, and visual. You will be able to use this knowledge to improve your transmission and make sure that you are encouraging effective communication skills within your organization. Proficient communication refers to the oral, written, visual, and digital forms of providing information in the context of a workplace. Practical professional communication is essential in today's world. Most situations in an institution arise as a result of poor communication.

To learn more about Professional communication, refer to:

https://brainly.com/question/26152499

#SPJ2

15.A telecommunication company wants to start a business in Dera Ghazi khan. For Information technology (IT) support, they hired an IT Staff and want to buy hardware from the market. Choose the hardware name which is important for the company.

Answers

Answer:

The company should have computer with secured bandwidth and LAN system which can connect employees on one network.

Explanation:

Telecommunication company will require a network setup which can connect employees on a single network. The network security should be efficient which keeps the LAN network secure from cyber attacks. The IT staff should buy Telecoms equipment and hardware and keep them in a secured control room whose access is limited to certain users only.

What is modularity?
A.
the process of reusing existing modules from other programs
B.
the process of grouping together smaller segments into larger modules
C.
the process of consolidating different parts into a whole program
D.
the process of breaking down a program into small

Answers

Answer:

Option D

Explanation:

Modularity in general defines the flexibility of a system. It is the degree to which a system can be broken down into smaller segments and then rearranged or recombines into new groups. Modularity is determined for multiple disciplines each having their own drawbacks.

Convert the given for loop to while loop and find the output of the program assuming the
value entered for num is 15.
num = int (input ("Enter a value"))
sum =0
count=0
for i in range (1, num):
if i%2 == 0:
count += 1
sum += i
print(sum)
print(count)

Answers

Answer:

Explanation:

num = int (input ("Enter a value"))

sum =0

count=0

i = 1

while i < num:

 if i%2 == 0:

        count += 1

        sum += i

        i += 1

 i += 1

print(sum)

print(count)

The output assuming num is 15 would be

56

7

You are a manager and one of your team member ask why using slide presentations are a good idea. What’s the best way to respond

Answers

Answer:

tell them that the slides help u organize the info easly

so that the peaple/audience will understad

Explanation:

Answer: Slide presentations are familiar to most audiences, and will help them focus on the content.

Explanation: Got it correct on the quiz.

3.4 lesson practice quiz edhesive

Answers

3.4 lesson practice quiz edhesive :

Write a program to check if user inputs "yellow"

Answer:

In Python:

col = input("Enter Color: ")

if col == "yellow":

   print("True")

else:

   print("False")

Explanation:

This prompts the user for color

col = input("Enter Color: ")

This checks if color is yellow

if col == "yellow":

If true, this prints true

   print("True")

If otherwise, this prints false

else:

   print("False")

What is the advantage of using the Selection pane to modify SmartArt?
O It can insert or edit individual graphic boxes on a slide.
O It helps to reorder or remove on-screen elements that overlap.
O It adds a new overlay for creating overlapping graphics and text.
Olt automatically aligns graphic elements to on-screen guidelines.

Answers

Answer:

B

Explanation:

Bc I said so

Answer:

It helps to reorder or remove on-screen elements that overlap

Explanation:

edge 2022

Select all the correct answers.
Which of the following are advantages of using a word processor?
makes revision easier
O helps in analyzing data tables
supports versioning
enables sharing
simplifies video editing

Answers

Answer:

these answers look correct to me

Explanation:

The advantages of using a word processor make revision easier, supports versioning, and enables sharing. Hence, options A, C, and D are correct.

What is a word processor?

A word processor is a software application used for creating, editing, formatting, and printing electronic documents. It allows users to enter and manipulate text, as well as add graphics, tables, and other elements to a document.

Word processors are widely used for creating various types of documents such as letters, reports, essays, and more.

Word processors offer a variety of features and tools for formatting text, such as font styles and sizes, bold and italic formatting, bullet points and numbering, and margins and indentation.

Thus, options A, C, and D are correct.

To learn more about the word processor, follow the link:

https://brainly.com/question/31851148

#SPJ2

Multiple choice:
Select the terms relating to comparisons for equality.


A) ==

B) ^=

C) <>

D) =

E) <

F) !=

G) <=

H) >=

Answers

Answer:

Well there is only 1

"==" is checking for equality and "=" is assigning a value to a variable. Although "==" should be the only answer, since the question is asking you to select multiple, I'd select both of those

Define an array and why it is needed in programming

Answers

Answer:

An array is a data structure, which can store a fixed-size collection of elements of the same data type. An array is used to store a collection of data, but it is often more useful to think of an array as a collection of variables of the same type.

Explanation:

Happy to help :-)

Answer:

An array is a data structure, which can store a fixed-size collection of elements of the same data type. a array is used to store a collection of data, but it´s often more useful to think of an array as a collection of variables of the same type.

Explanation:

Michelle works in retail and can't decide what product to include in the store's front window display. what is the first step she should take to solve this problem?

Answers

Answer:

she should look at the most wanted product she has in her store and put that out on display

Explanation:

How do they disguise the cameras placed around the secret cove?

Answers

Answer:

Portions were filmed secretly in 2007 using underwater microphones and high-definition cameras disguised as rocks.

Portions were filmed secretly using underwater microphones and high-definition cameras disguised as rocks.

2. The
is the main and usually largest data storage hardware device in a computer​

Answers

The answer you are looking for is either Hard Drive or SSD (Solid State Disk).

How many days are depicted in the movie stand by me?

I need the answer

Answers

Answer:

I have no idea

Explanation:

While many instruments have been "electrified", there is no such thing for the drums.
Group of answer choices

True

False

Answers

False, because they are called percussion group
False. Because it is fake not true

The sun emits invisible _____> A) electromagnetic waves B) Waves C) Radiation D) Wavelength E) Ultraviolet Light

Answers

Answer:

Ultra violet light.

Explanation:

plzzz help ya girl out due soon

Answers

The answer to this question is D. This is because programming language is a language used to run the application software. A programmer or developer writes code, and the code language (most common is JavaScript) is translated and it runs the program.

What are three types of audio editing techniques?
Sound Forge, Audacity, and Pro Tools
burning, copying, and fading
non-destructive, destructive, and constructive
professional, open-source, and free

Answers

Answer:

non-destructive, destructive, and constructive

Explanation:

The three audio editing techniques involve sound forge, audacity, and pro tools. Thus, option A is correct.

What is audio editing?

The audio editing is given as the change in the audio, volume, with the length, speed of the audio or other manipulations.

The audio editing is performed with the use of the software in the computer that enables the generation of the audio data.

The three types of audio editing techniques involves:

Sound Forge: It mediates the edit in the sound files with playback. Audacity: It is a free software that has been used for long with multi-track audio editor and recorder.Pro Tools: It enables the use of the view and edit of the track.

Thus, option A is correct.

Learn more about audio editing, here:

https://brainly.com/question/24228690

#SPJ2

what is the full form of CCTV​

Answers

Answer:

CCTV stands for closed-circuit television

closed-circuit television

What finger should be on the Y key?
1. Left Middle finger
2. Right Index finger
3. Left Index finger
4. Right Middle finger

Answers

Answer:

Right index

Explanation:

it's 2, right index finger

Hope these points help you.
I love.

Answers

Answer:

Explanation:

thanks, have a great day

Answer:

Thank you so much for the free points! You are so kind.

Explanation:

I hope you have a wonderful rest of your day and if these points were not for me then I must have misunderstood. Have a good one!

(ɔ◔‿◔)ɔ ♥
Other Questions
Because subjective decisions are based on a person's unique values and beliefs, economic decisionsA. follow a personal production frontierB. can be reduced to utility preferencesC. vary from person to personD. are always based on monetary considerations Which statement best characterizes power relations among the centers of Eurasian civilizations as they approached the year 1450?a. Islamic caliphates are reaching the height of their power and influenceb. Ming rulers of China have redoubled their efforts to move to the center of maritime trading networks in the East Asian and Indian Oceanc. A power vacuum of sorts has opened, as Byzantine, Abbasid, and Ming Chinese powers become less of a force in global affairsd. Western Europe dominates world tradee. South and East Asia are no longer important sources of luxury items in long-distance trade networks and become increasingly isolated 1.Donald is 16 years old, and his neighbor Betty is 24 years old. What will the ratio of their ages be in 10 years?A.16 : 24B.2 : 3C.26 : 34D.13 : 172.If you were asked to divide $1120 into three shares proportional to 6, 7 and 3. What is the value of the largest shareA.$490B.$90C.$400D.$270 {57, 53, 53, 71, 73, 57, 61, 58, 78. 64, 54, 69, 56, 58, 49, 56, 53, 52, 82, 62, 61, 60, 71, 75, 60} Whats the mean? the median and mode. what is the range. and the iqr? what is the five number summary? what is Q3? and the data set is? At which value(s) of x does the graph of the function f(x) have a vertical asymptote? Check all that apply F(x)=x-5/3x(x+1) Please help, I'm in a test! Question is in the image attached! if you think you could help me out more, let me know and I'll post more questions like this! A teacher has 36 students who were randomly assigned to 6 rows of 6 desks. She wants to survey the studentsabout the homework policy. Which of the following uses cluster sampling?O Roll a fair number cube. Use the number rolled to pick a row of students. Survey every student in that row.List the students according to their grade in the class. Survey one A student, one B student, etc.For each row, flip a coin. If it is heads, survey all the boys in that row. If it is tails, survey all the girls in that row.O Select a student by rolling a fair number cube twice. The first roll gives the row number, and the second roll givesthe seat number. Then repeat. Help please ill give brainly Meine Mutter ist Richterin. Sie arbeitet vor Gericht und Sie leitet Gerichtsverhandlungen und fllen am Ende das Urteil. Richter sind fr die Rechtsprechung verantwortlich. Sie entscheiden objektiv aufgrund von Sachlagen nach dem Gesetz. Is it without mistakes? HELP IM ALMOST BRAIN DEAD:P 100 POINTS!!! ONLY 1 QUESTION! WILL GIVE BRAINLIEST. Please EXPLAIN how you got the answer In one well written paragraph, discuss how Bilbo's journey is following JosephCampbell's Hero's Journey, How do Cartographers show information on a map? You spent $175 on a pair of shoes and three shirts. Each shirt cost the same amount. The shoes cost four times the amount of one shirt. A) Graph the system of equations. B) What was the price of the shoes and each shirt? Please answer and take seriously will give brainliest 10 POINTS (and no its not 5 and I gave 10 its 10 and I gave 20)In the Northern Hemisphere, winds associated with a high-pressure system blow clockwise toward the center clockwise outward from the center counterclockwise outward from the center counterclockwise toward the center The women in the village carry water to their village. (State whether transitive orintransitive with reason) Michael wants to plant a circular flower garden in his backyard. If the radius of his garden is 12.5 feet, what is the circumference of the garden in terms of pi? If you were at the Alamo, who would you want to lead you 1- William B.2- Travis 3- Jim Bowie If you have 4 moles of barium hydroxide, how many moles of oxygen atoms do youhave? At Sophia's gymnastics camp, the gymnasts spent 2 hours and 45 minutes on the balance beam and 2 hours and 50 minutes on practicing vaulting. If the gymnastics camp ended at 2:25 P.M., what time did it start?