A video clip is normally saved in mp3 format.
True or false

Answers

Answer 1
Answer: False

Explanation: Mp3 is only used for music whereas Videos are saved in a format knows as Mp4.
Answer 2

Answer:

False  :)

Explanation:


Related Questions

Use tar to create a full compressed back up of the /var/log folder. Use the bzip2 compression. The name of the archive should be YOURFIRSTNAME.Tar and it should be saved in the /home/backups folder (you would need to create the /home/backups folder first):

Answers

Answer:

mkdir ~/home/backups

tar -cjf YOURFIRSTNAME.tar.bz /var/log

mv YOURFIRSTNAME.tar.bz ~/home/backups

Explanation:

The bash script makes a new directory called backups in the home directory then archives and compresses the log files in the /var/log folder. Then the compressed file is moved to the newly created backups folder.

Put the steps in order to produce the output shown below. Assume the indenting will be correct in the program.

2 3
2 5
6 3
6 5
Line 3
Line 1
Line 2
for numF in [3,5]:print (numE, numF)for numE in [2,6]:

Answers

Code:

for numE in [2, 6]:

   for numF in [3, 5]:

      print(numE, numF)

Explanation:

Since the first number of the first output is 2, the outer loop must contain the list [2, 6], meaning 'for numE in [2, 6]:' is on line 1. This leaves us with 'for numF in list [3, 5]:' as the nested loop (line 2), and the print statement on line 3 since it needs to print both numE and numF.

Hope this helps :)

Python indentation are used to group statements that belongs to the same block of code.

The correct steps are as follows:

for numE in [2,6]:

      for numF in [3,5]:

             print (numE, numF)

From the output of the program, we have the following highlights.

The program prints 2, two times and then 6, two timesThe program prints 3 and 5, two times

The above highlights mean that: the program iterates through list E, before iterating list F

So, the order of the program is:

for numE in [2,6]:

      for numF in [3,5]:

             print (numE, numF)

Read more about Python indentation at:

https://brainly.com/question/19654717

WILL GIVE BRAINLIEST!! 20 PNTS!!!

What will be the output of these lines of code:

for i in range (1, 5):

print(i)

A. IndentationError

B. PrintError


C. 1 2 3 4


D. 1 2 3 4 5

Answers

Answer:

C 1,2,3,4

Explanation:

This means I want to count from 0-4 and set it o the current loop I am currently on.

for i in range(0, 5):

 print("i currently equals: ", i)

The result will be

i currently equals: 0

i currently equals: 1

i currently equals: 2

i currently equals: 3

i currently equals: 4

Answer:

c. 1 2 3 4

Explanation:

i got it right on edge

Which one do u prefer Xbox, Playstation, Nintendo ​

Answers

Mobile And PC Gaming

When a graphic is positioned in the line of text, thr graphic is positioned directly....
A. at the end of a paragraph
B. at the end of a margin
C. at the position of the insertion point
D. at the right margin

Answers

The answer to this question is option c:

at the position of the insertion point

You can also confirm it from the image attached.

Here in the attached image, the image is inserted in the middle of the text at the place where pointer is present.

So the image is placed at which every position you cursor or insertion point is.

It is neither in:

at the end of a paragraph

at the end of a margin

at the right margin

Which of these is a URL shortening service? O A. Twitter O B. TXTMob OC. TinyURL OD Tumblr​

Answers

TinyURL is a url shortener

Answer:

tiny  url

Explanation:

What do HIPAA guidelines protect?

Answers

Answer:

They protect patient medical records im pretty sure

Explanation:

The pins on the temperature sensor are connected to;

Answers

A temperature sensor creates a changing voltage signal depending on the temperature it senses. It has three pins: one that connects to ground, another that connects to 5 volts, and a third that outputs a variable voltage to your Arduino, similar to the analog signal from a potentiometer.

When should else be used in programming?
Group of answer choices

if something should be repeated several times

in a non-conditional statement

to describe what should happen when the condition of an if statement isn’t met

to begin an infinite loop

Answers

Explanation:

The else statement is usually used when computations are still required when a condition is not met in an if and else-if statement, so the correct option is the fourth one: "to describe what should happen when the condition of an if statement isn't met".

Hope this helps :)

Answer:

he is correct

Explanation:

what is the answer ?? plz help

Answers

3rd: A force applied to a body to propel it in a desired direction.

PLZZZ HELPPPP
Which list can be sorted with a bubble sort?



(4, 5, 6, 7)


('dog', 'cat', 'fish')


['dog', 'cat', 'fish', 'bird']


[2, 5, 'dog', 'cat']

Answers

Answer:

dog cat fish bird

Explanation:

Answer:

dog cat fish bird

Explanation:

i got it right

Which options are qualities of all good requirements documents?
Consistent
llustrated
verifiable
printed
scholarly
feasible

Answers

consistent
feasible
scholarly
verifiable

How do you rename files? *

Answers

Answer: Ok right -click the file you want to rename and then you will see delete,copy,cut,rename, then click the rename button and your files name will be changed

Explanation: Hope this help :)

Tina has taken the time to modify font sizes and colors in a text box and would like to duplicate those settings on other text boxes within her presentation. What should she do to be able to duplicate those settings numerous times?

Duplicate the object.
Double-click the Format Painter command.
Single-click the Format Painter command.
Create a theme.

Answers

Answer:

Duplicate the object.

Explanation:

single click the format painter option

PLEASE ASAP!!

Network risk analysts typically have a college or university degree in psychology or sociology.

True or False

Answers

False

They usually have a degree in computer science or computer programming

Answer:

True

Explanation:

edg2021

Network risk analysts work with corporations to determine the threat of cybercrime and terrorism in their network systems. This includes a behavioral analysis of employees. The ideal candidate would have a background in psychology and/or sociology as well as experience working in the field of network security.

look plz help :))))))))))))))))))))

Answers

Answer:

false

Explanation:the answer is false

WILL GIVE BRAINLIEST!!! 15 POINTS!! HELPPPP!!

Tonya wants to add a button to a webpage. Which language should be used?

A. Python

B. HTML

C. JavaScript

D. CSS

Answers

Answer:

B and C both will be right answers

Answer:

B and C are both correct answers

Explanation:

Among us Question. Worth 15 Points.
Which Vents do the Admin Vents Connect?

Answers

Answer:

Navigation Hallway and Cafe

Answer:

labrotaory and the south corrider

Explanation:

marke me ad brainliest pls

What will happen when you run this program?

num = 10
while num > 0:
print (num)

a Syntax Error
b Logical fallicy
c Infinite loop
d Definite loop

Answers

Answer:

C. Infinite loop

Explanation:

num will be printed continuously since it will always be bigger than [tex]0[/tex] ([tex]10[/tex] is greater than [tex]0[/tex], satisfying the condition num > 0) making it an infinite loop since it will go on forever.

Hope this helps :)

A store has been attaching tags with barcodes to merchandise, allowing employees to use barcode readers to scan merchandise at the cash register. However, the wireless barcode readers need new batteries often, and using this system for inventory tracking is very time-consuming. What emerging technology should the department store use?


touch screen

Smart card

RFID

CAD

pls hurry i need this answer right now.

Answers

Answer:

The right answer is: Option 3: RFID

Explanation:

One of the latest technologies is RFID. RFID stands for radio frequency identification. It is a fast and new technology that can be used for tagging goods in store. It is used to identify tags put on an object using electromagnetic fields.

Hence,

The right answer is: Option 3: RFID

What is output? x = 9 y = -3 z = 2 print(x + y * z)

Answers

Answer:

12

Explanation:

what are the difference between of panchayat and multi party system​

Answers

Answer:

The parties in a multi-party system can control government separately or as a coalition; in a two-party system, however, coalition governments rarely form.

Traditionally Panchayats consisted of elderly and wise people chosen by the local community, who used to settle disputes between individuals and villages. The leader of the panchayat used to be called as Mukhiyas or Sarpanch.

Explanation:

Which type of electromagnetic wave do cell phones send and receive.
A. X-rays
B. Infrared waves
C. Ultraviolet waves
D. Microwaves

Answers

?? it should be radio waves but i guess the next best thing is microwaves

Answer:

D. Microwaves

Explanation:

Did the test !!

why did the chicken cross the road wrong answers only lol

Answers

Answer:

to find the store his dad went to for the milk

Explanation:

trust bro trust

Answer:

becuase he weird

Explanation:

List three things to be safer online.

Answers

Answer:

1. do not give out your age

2. don't use your real name unless you are supervised

3.dont put all your information out there

Who plays Among Us?

who answered first will get a Surprise! :)​

Answers

Answer:

mE now whats the surprise? :P

Explanation:

Tyra is peer conferencing about her project with a friend. Tyra's friend provided feedback that Tyra does not agree with. What should Tyra do? Group of answer choices Be kind and thankful Ignore the feedback Start the project over Tell her friend she is wrong

Answers

Answer:

Be kind and thankful

Explanation:

If Tyra does not agree with her friend's feedback, she does not have to say it outrightly to her friend. She has to use softer words to disagree. This is where being kind comes in.

Her friend has made efforts by providing this feedback Even if it is not exactly what she wants to hear. It would be polite for her to say thank you.

Then she has to respectfully disagree to avoid coming off as someone who is totally unreceptive of the opinion of others.

Micro sleep is when you ____.

Answers

Microsleep refers to periods of sleep that last from a few to several seconds.

Microsleep refers to period of sleep that last from a few to several seconds

Which of the following is NOT a factor of identifying graphic design?

Answers

Answer:

i think it is a

Explanation:

sorry if it is wrong

Answer: answer is B

Explanation:

I am sure about it

Mandy is writing a paragraph about her favorite basketball team. She wants to explain that the team is so successful because the players work together. What would be the best type of evidence to illustrate Mandy’s proposed topic? a few examples of how the players successfully scored points a brief history of the game of basketball a quotation from the coach about the players a comparison of current players with past successful members of the team

Answers

Answer:

A ) a few examples of how the players successfully scored points

edge 2021 :)

Answer: (A)

Explanation: Just got it right.

Other Questions
All living organisms are made up of cells. Cells are the basic units of life. In complex living organisms, cells are organizer into tissues, tissues are organized into organs, and organs are organized into organ systems. What characteristic of life does this information represent? Help me this hard it is due to day plzzzz If K = {(x, y)|x - y = 5}, find the corresponding range of y for the domain {0, 2, 4}.1. {-5, -3, -1}2. {5, 7, 9}3. {0, 2, 4}(provide explanation on how you got the answer) You are given the following information:________. New Empire Small Cap Fund Total assets $760 million Total liabilities $ 30 million Total number of shares 50 million Calculate the net asset value for the New Empire small-cap mutual fund. (Round your answer to 2 decimal places.) can you help me I dont know the answer PLEASE HELP What kind of "theft" is hardest to measure and easiest for employers to chargeagainst employees?A. produce theftB returnsC. time theftD. stolen itemsE. incorrect price increases on store itemsPlease select the best answer from the choices provided B (a) + (b) = ? help please PLZ HELPPPPPP Explain how the authors choice of 3rd person limited point of view affected the storys tone and plot. On the lines provided, write a paragraph that explains your answer. Support your ideas with details from the story. Does the stratosphere have a high or low temperature also what is the temperature 9. Choose the sentence that describes an action that started in the past and continues in the present moment.La calidad de la comida ha bajado en los ltimos meses.Ellos servan la mejor paella en toda la ciudad.Yo coma mucho en ese restaurante.Un dueo (owner) nuevo compr el restaurante el ao pasado. HEEELPPPPP PPLS The second side of a triangle is 8 inches less than the first side. The third side is 14 inches more than the first side. The perimeter of the triangle is 78 inches. Find each side of the triangle. Please help me... please grades are almost in PLZ HELP if u know the amswer According to scientists, all of the bodies in the universe came from a rotating cloud of gases and dust aboutbillion years ago.O 3.5O 2.5O 4.5O 1.2 The first step in the performance planning and appraisal process involves? A. Assembling information for the appraisal B. Observing employee job behavior C. Designing the performance plan D. Setting standards and expectations HELPPP Which made us undergoing the greatest amount of acceleration? 1k sub to a force of 1N1kg sub to a force of 100N 100kg sub to a force of 1N or 100kg sub to a force of 100N I have over 20 pencils in my desk The perimeter of a triangle is 108ft. The sides lengths are in a ratio of 2:3:7. How long is the shortest side? Drag the tiles to the correct boxes to complete the pairs. Match the credit types to the examples. Paying by credit card: House mortgage: Student loan: Tiles: Unsecured credit Installment credit Secured credit To make 8 cups of tomato soup you need 2 pounds of tomatoes. How many pounds of tomatoes do you need to make 32 cups of soup? Show your work using one of the 5 strategies (table)