A video project needs to be encrypted as it is going from a source to a destination. What can be added to the video

Answers

Answer 1

Answer:

A video encoder

Explanation:

an encoder is used to make a video encrypted so nobody can take your copy it. For instance You Tube uses an encoder


Related Questions

Decide whether each source would be considered a primary or secondary source

Answers

Answer:

Can you attach a picture so we can see?

Explanation:

Answer:

yea we cant see any sources

Explanation:

An ad agency is interested in keeping track of their clients a little more easily. Help them out by creating two ArrayLists :


1. Create an ArrayList called company Name that stores an ArrayList of all the company names.


2. Create an Integer ArrayList called contractValue that stores the value of the contract that the ad agency has with its clients.

Answers

Answer:

Explanation:

The only things requested in this question were the two Arraylists. These following arraylists need to be called and values need to be added to them by the corresponding code. At the moment they would be empty.

1.         ArrayList<String> Names = new ArrayList<>();

2.        ArrayList<Integer> contractValue = new ArrayList<>();

They can be added to any code or in the main method as long as they are within the scope of the code that will be calling them.

When your grounded and the only thing you can get on is a computer........................oh wellllllllllllllllllllllllllllllllllllllll

Answers

Answer:

I feel your pain

i mean u could log into ur snap and ig but i mean sure why not???


Which approach is ideal for ensuring that a Webpage is maintained and does not appear neglected to users?

A. Using more images

B. Using a GUI HTML editor

C. Using automated link-checking software

D.Using internal hyperlinks in essential pages

Answers

Answer:

D

Explanation:

I think putting hyperlink in essential pages is a good idea as it may guide a user

write an application of computer in robotics?​

Answers

Answer:

In robotics, one use the computer has is to help program the robots.

add my sna-p dkarpik58?...

Answers

This is for answers not snap

match each label to the correct location on the image match the process to its characteristics

Answers

Answer:

The 2 on the right belong in the drawing section. The left 2 being on the sketch section

Explanation:

A technical drawing is all about precision and using a computer to refine sketches.

Which of the following repetition operator can help initialize an empty list with values.

A. &
B. $
C. *
D. !

Answers

Answer:

C. *

Explanation:

For instance, [10]*4 gives [10, 10, 10, 10].

Madeleine's Instructor praised her for capturing a nearly perfect image. It included dominance, harmony, and proportion among other
principles. Which design principle involves all aspects of delign?
The_____________
design principle involves all aspects of design

Answers

Answer:

Unity design principle

Explanation:

Why do companies implement new technology?Select all that apply.
1. to help their company work more efficiently and more effectively
2. to keep up with their competitors
3. to have the latest greatest technology out there
4. to grow their profits
5. to generate a lot of new work for their employees

Answers

All of them are correct except the last one

Which hand does a user click and drag to simultaneously change the width and height of an object? A. corner sizing handle B. side sizing handle C. top sizing handle D. bottom sizing handle

Answers

Answer:

corner sizing handle

Explanation:

as you drag the top corners and opposite bottom corners, it will expand

Edhesive intro to CompSci Test 7 answers pls

Answers

Answer:

nothing

Explanation:

nothing

I will give brainlyest if someone names 15 mcyt on the dream smp.

Answers

Answer:

Antfrost

Awesamdude

BadBoyHalo

Callahan

CaptainPuffy

ConnorEatsPants

Dream

Eret

Foolish Gamers

Fundy

GeorgeNotFound

Hannahxxrose

HBomb94

ItsAlyssa

JackManifoldTV

Jschlatt

Karl Jacobs

LazarBeam

Nihachu

Ph1LzA

Ponk

Punz

Purpled

Quackity

Ranboo

Sapnap

Skeppy

Slimecicle

Technoblade

TommyInnit

Tubbo

Vikkstar123

Wilbur Soot

Ponk

Awesamdude

Tommyinnit

WilburSoot

Philza

Technoblade

Tubbo_

Nihachu

CaptianPuffy

Ranboo

Dream

GeorgeNotFound

Sapnap

Antfrost

BadBoyHalo

Skeppy

ConnorEatsPants

JSchlatt

Quackity

Karl Jacobs

Punz

Purpled

Hbomb94

Callahan

JackManifoldTV

ItsFundy

The_Eret

i listed as many as i could think of lol

I need answers ASAP
Thx

Answers

The answer is 63 a+b=18x7X0.5

Which of these is NOT an example of intellectual property? O a song you wrote O an article you published O hardware you purchased O a sculpture you created Question 5 9​

Answers

Answer:

hardware you purchased

Explanation:

Copyright law can be defined as a set of formal rules granted by a government to protect an intellectual property by giving the owner an exclusive right to use while preventing any unauthorized access, use or duplication by others.

Patent can be defined as the exclusive or sole right granted to an inventor by a sovereign authority such as a government, which enables him or her to manufacture, use, or sell an invention for a specific period of time.

Generally, patents are used on innovation for products that are manufactured through the application of various technologies.

Basically, the three (3) main ways to protect an intellectual property is to employ the use of

I. Trademarks.

II. Patents.

III. Copyright.

An intellectual property can be defined as an intangible and innovative creation of the mind that solely depends on human intellect. They include intellectual and artistic creations such as name, symbol, literary work, songs, graphic design, computer codes, inventions, etc.

Hence, a hardware you purchased is not an example of an intellectual property.

which element can be changed using the Print pane? Check all that apply

Answers

Answer:B C D E

Explanation:

EDGE 2021

Which option in PowerPoint allows users to configure the number of columns and rows manually, using numerical
values?
O Insert Table dialog box
Draw Table option
Insert Table drop-down menu
O Excel spreadsheet

Answers

Answer:

Insert Table dialog box

Explanation because i took the test

The option in PowerPoint that allows users to configure the number of columns and rows manually, using numerical values is Insert Table drop-down menu.

What is PowerPoint used for?

The PowerPoint is known to be one that helps in slide show presentation program.

Note that the Insert Table drop-down menu is known to be the option in PowerPoint that allows users to configure the number of columns and rows manually, using numerical values.

Learn more about PowerPoint from

https://brainly.com/question/1130738

#SPJ2

Put the parts of the program in order to have the output shown below.
16

1. First part
2.second part
3. Third part

answer = multiply(8,2)

def multiply(numA, numB):
return numA* numB

print (answer)

Answers

i have no idea how to get this answer, but here.

edge 2021

First part

answer = multiply(8, 2)

Second part

def multiply(numA, numB):

      return numA * numB

Third part

print(answer)

16

How to model a programming process

In the field of programming, functions are a set of code lines that represents a process. Processes involve inputs, steps and outputs. Hence, we can runs a function by the following procedure:

Create a variable.Associate a function with given inputs to the variable.Run the function.Return the output.Print the output.

Now we proceed to present the procedure:

First part

answer = multiply(8, 2)

Second part

def multiply(numA, numB):

      return numA * numB

Third part

print(answer)

16

To learn more on programming, we kindly invite to check this: https://brainly.com/question/11023419 #SPJ2

difference between if then and if then else statement ​

Answers

Answer:

if..then statement is used to make a decision when there is only two options.

&

you have to write a program that have to choose from three options then we use if..then..else statement.

I HOPE THIS WILL HELP YOU IF NOT THEN SORRY

HAVE A GREAT DAY :)

Data sets can be described as instances when the software didn't work as expected.
True or false?

Answers

Answer:

True.

Explanation:

This is true because that can mean the same thing.

Data sets can be described as instances when the software didn't work as expected is true.

What is software?

The software is the main thing of any device. The device can not run without software. The software is a combination of algorithms.

The programs that control how machine programs, and even the documentation that explains how and when to use them

Thus, the statement is true.

More about the software link is given below.

https://brainly.com/question/1022352

#SPJ2

If I got a monitor and kept my garbage laptop could I play games on max graphics?

Answers

Answer:

No?

Explanation:

Well depending on the hardware of the laptop, all this would do is force the laptop to on top of processing your games, output frames onto the monitor. This monitor is just another screen along with the built-in one of the laptop. Thus, you really can't go max graphics unless your laptop was able to do so in the first place.

I'm kinda lazy if anyone agrees with me. I couldn't write the question but I took a pic.

Answers

Answer:

eat the stick

Explanation:

because its long and juicy

What is information cycle

Answers

Answer:

The term information cycle refers to the way information is processed and distributed and how it changes over time. It is usually used to describe the progression of media coverage relating to a particular newsworthy event or topic during which information goes through various stages of reporting and publication.

I didn’t know the answer just need to “answer” a question to get help.

Entities allow us to capture specific information in the user input
True
False

Answers

Answer:

True

Explanation:

A database management system (DBMS) can be defined as a collection of software applications that typically enables computer users to create, store, modify, retrieve and manage data or informations in a database. Generally, it allows computer users to efficiently retrieve and manage their data with an appropriate level of security.

An entity can be defined as an object, thing, place, people, etc., that exists in a database. The data are captured and stored as workflow, tables and properties in a computer database.

This ultimately implies that, all entities must have a property and are identifiable from every other object.

Hence, entities allow us to capture specific information in the user input such as people, place, object, thing, unit, etc.

When you insert a USB drive into a computer and get the following error: "USB drive is
not accessible". What system perform the task to generate the error message.​

Answers

Answer:

Uh, the CPU?

Explanation:

what do you mean, when you put the drive in the port it automatically tries to read it because physics, but if it can't you get an error message.

ㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤ​

Answers

Answer:

ㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤ​

Explanation:

Answer:

Plzzzzzzzzzzzzzzzz tell me what is your question I will try to solve it

What is a semiconductor

Answers

A semiconductor material has an electrical conductivity value falling between that of a conductor, such as metallic copper, and an insulator, such as glass. Its resistivity falls as its temperature rises; metals behave in the opposite way. I hope this helps and have a great day! (Also brainliest would be appreciated but you don’t have to) :)

Answer:

Explanation:

Semiconductors are materials which have a conductivity between conductors  and nonconductors or insulators.

Semiconductors can be pure elements

30 POINTS PLS HELP AND DONT PUT ANYTHING IF U DK PLS

Explain what might have gone wrong in the following situation:

Sandra is putting together a new computer and network out of used parts. She has sufficient parts that should work together—NIC card,
cables, hub, etc.—and all of them are functional by themselves, but somehow her computer is not successfully able to connect to the
network. What might be going wrong

Answers

Answer:

The issues that may be wrong are;

1) Improper connections

2) The drivers for the Network Interface Card, NIC card is not properly configured, installed, or missing

3) Reset the network settings

4) IPv6and ipv4 Compatibility

5) Other IP related IP issue

Explanation:

From the question, we have that Sandra has the required used and functional hardware for putting a new computer and a network together but her computer is not successfully able to connect to the network, which may be due to the following reasons;

1) Improper connections

Ensure that the connections are properly made and that the network cables are straight through when connected to a network or hub or crossover cables when connected directly between devices used for computing

2) The drivers for the Network Interface Card, NIC card is not properly configured, installed, or missing

When the issue is due to the drivers for the NIC card, it can be resolved by uninstalling and deleting the driver software from the computer and then rebooting the computer for the operating system (Windows 10 etc.) to search for and install the correct drivers for the used NIC

3) Reset the network settings

When the network settings are improperly configured or configured to a setting used in another network, it can lead to not successfully being able to connect to a network

The network settings should be reset

4) IPv6and ipv4 Compatibility

Ensure that the hardware are compatible to IPv6 and/or IPv4 and adjust the settings of the network as required

5) Other IP related IP issue

An IP issue can lead to not being able to successfully connect to a network which can be resolved releasing the IP and flushing the DNS cache.

The list blocks that allow for storing and accessing a list of numbers and strings is called.


String manipulation


Arrays


Variable


Random

Answers

Hey so the answer to this is a variable because variables can store text and numeral values when an array can only store numbers

hope this helps

have a great day

-scav aka Toby

Answer:Array is the right option because array accessing the list of variables and integers like 1,2,4..etc variables just hold the data.

give three reasons why it s important to ensure your portfollo is professional

Answers

Answer:

1. Showcase your skills

Explanation:

2. Stand out from the crowd

3. Keep track of all emails, notes, and performance reviews

Other Questions
In which layer is the ozone layer found Question in link. Please help :( There was an agreement that employees will get extra payment for overtime but the management fails to implement the agreement which principle is violated? 0.8km need to be convert into hour an minute please help Match each sound feature to its descriptionamplitudethe density of the medium's particlesat the compressions of the wavecompressionthe part of a wave where the particlesof the medium are farther apartwavelengththe distance between compressionsor rarefactionsrarefactionthe part of a wave where the particlesof the medium are closer togetherIntroDonetivitybe here to searchGOS where does the letters go A small wooden block with mass 0.750 kg is suspended from the lower end of a light cord that is 1.40 m long. The block is initially at rest. A bullet with mass 0.0100 kg is fired at the block with a horizontal velocity v0. The bullet strikes the block and becomes embedded in it. After the collision the combined object swings on the end of the cord. When the block has risen a vertical height of 0.800 m, the tension in the cord is 5.00 N.Required:What was the initial speed v0 of the bullet? Graph the image of points A and B after the reflection over the X axis Which of the following could be the graph of y = xn where n is odd? An interior designer wants to place a bed in a home, and she is especially concerned about the headboard, which is 5 feet wide and 5 feet tall. Shell place the headboard on a wall that is 8 feet wide and 10 feet tall. What is the area of the space that will remain on the wall after she places the bed against the wall? show work If two pieces of ocean crust meet at a convergent boundary, which piece tends to curl under and back into the mantleOlder crust Or Younger crust Please help! Like please. Kathryn is 1.6 meters tall. Convert her height to feet. Round to the nearest tenth. When a birdie is hit back and forth together in badminton, it is called________This is a PE question and I know it's weird but I need help Help me plzzzzz euebdmso The growth in per share FCFE of FOX, Inc. is expected to be 10%/year for the next three years, followed by a growth rate of 5%/year for two years; after this five year period, the growth in per share FCFE is expected to be 3%/year, indefinitely. The required rate of return on FOX, Inc. is 12%. Last year's per share FCFE was $1.8. What should the stock sell for today? What cause of erosion was most surprising to you? How does this natural phenomenon (water, wind, or ice) cause erosion? Can I get help with these three What are some of the patterns you noticed when looking at the maps in guided practice? Why do you think this might be? Reduce -56/-70 to lowest terms -2/3-4/54/58/10