PLEASE HELP!!! Me turn this into a video & add liana flores- raise the moon (instrumental) in the background for the music. If you could help that would be great. Please this is due tomorrow at 11:59 PM and i don't have a phone to take a video of this and my computer is not letting me do it.

If I can mark B I will. Just please help me this is worth my entire grade for this year

Answers

Answer 1

Answer:

Try going to your settings and allow output camera

Explanation:

Answer 2

Answer:

Step 1: Export all images from the pdf using a screenshot tool (I used the built-in snip tool).

Step 2: Convert the music to an mp3.

Step 3: Combine everything together using ffmpeg.

Explanation:

The ffmpeg tool can perform many tasks. In this case, I added a filter configuration to create a nice crossfade effect. The tool has an infinite amount of options to achieve these results.

PLEASE HELP!!! Me Turn This Into A Video & Add Liana Flores- Raise The Moon (instrumental) In The

Related Questions

Who is responsible for managing a website? Check all of the boxes that apply.
website supervisor
website host
web designer
webmaster

Answers

Answer:

website host web designer webmaster

Explanation:

Q:

Who is responsible for managing a website? Check all of the boxes that apply.

A:

website host web designer webmaster

The people who are responsible for managing a website may include the website host, web designer, and webmaster. Thus, the correct options for this question are B, C, and D.

What is a website?

A website may be defined as a collection of World Wide Web pages that usually contain links to each other and are made available online by an individual, company, or organization. It includes a collection of files and related resources accessible through the World Wide Web and organized under a particular domain name.

According to the context of this question, except for the website supervisor, all are responsible for managing a website. This is because it usually supervises and regulates websites that are managed by other people like website hosts, web designers, and webmasters.

Therefore, the people who are responsible for managing a website may include the website host, web designer, and webmaster. Thus, the correct options for this question are B, C, and D.

To learn more about Websites, refer to the link:

https://brainly.com/question/28431103

#SPJ2

The __str__ method of the Bank class (in bank. Py) returns a string containing the accounts in random order. Design and implement a change that causes the accounts to be placed in the string in ascending order of name. Implement the __str__ method of the bank class so that it sorts the account values before printing them to the console. In order to sort the account values you will need to define the __eq__ and __lt__ methods in the SavingsAccount class (in savingsaccount. Py). The __eq__ method should return True if the account names are equal during a comparison, False otherwise. The __it__ method should return True if the name of one account is less than the name of another, False otherwise

Answers

class Bank(object):

   def __str__(self):

       """Return the string rep of the entire bank."""

       #get a sorted copy of the list

       #using default SavingAccount comparison            

       pTemp =sorted(self._accounts)

       return '\n'.join(map(str, pTemp))

A section with information that prints at the bottom of every page of a report is called a page [ ] section.

Answers

Answer:

Foot pager section

Explanation:

Please give brainliest please and good luck :)

what is a fandango confirmation number for? Like do i need to confirm something? Right after my pruchase i got an email saying "Fandango Purchase Confirmation" what should I do?

Answers

Answer:

Confirmation numbers are given out so that if there is ever a problem with your purchase, they can pull up the transaction on their end. It's simply an identifier for the transaction. If they ever need to validate that it is truly your purchase, they will ask for the confirmation number. You don't need to do anything, just pull up the ticket when you get to the theatre and let them scan it off your phone. You should be able to add it to your Apple Wallet if you use that (makes it easy).

The extends keyword applies to: [Choose all that apply - there may be more than one correct answer] Group of answer choices a member variable a method of the class an expression a class inheriting from another class the overridden toString method

Answers

The extends keyword extends a class (indicates that a class is inherited from another class). In Java, it is possible to inherit attributes and methods from one class to another.

Which programming paradigm focuses on abstraction to the level of math and the elimination of side-effects and state based programming

Answers

Answer:

The functional programming paradigms has its roots in mathematics and it is language independent.

Explanation:

The key principle of this paradigms is the execution of series of mathematical functions. The central model for the abstraction is the function which are meant for some specific computation and not the data structure.

What year did apple computer introduce the first ipod?.

Answers

Apple first released the first ipod in 2001

Dr. Bloom is writing a test for a history class and wants to ask a question that will have a Boolean value for the answer. Which of these should Dr. Bloom use?

Answers

Answer:?The answer is c: multiple  choice questions.

Explanation:

Dr. Bloom is writing a test for a history class and wants to ask a question that will have a Boolean value for the answer. Which of these should Dr. Bloom use.

I fill like he should use this if he had a test for history class because it really makes sent and that what a lot of teacher when its time for a test. When its a test you weren't supposed to use short answer you were supposed to use big answers.

Question 1 of 1
What are some of the things your employer should do to prevent worker falls and
accidents using portable ladders at the workplace?

Answers

Answer:

Ladders are not moved, shifted, or extended while a worker is on them.

Explanation:

It's the most logical answer out of the others.

What is the difference between HTML and XML?

HTML and XML are two common markup languages. HTML is primarily used for
. XML is primarily used for

Answers

Explanation:

HTML displays data and describe the structure of a webpage while XML stores and transfers data.

1- Identify the face expressions is considered....

A) Classification problem
B) Clustering Problem
C) Regression Problem

Answers

Answer:

C) Regression Problem

Hope this helped you!

What threat do insiders with authorized access to information?

Answers

Answer:

An insider threat uses authorized access, wittingly or unwittingly, to harm national security through unauthorized disclosure, data modification, espionage

Explanation:

A command line above the worksheet where text, numbers, and formulas are entered into a worksheet. Question 18 options: Formula Formula Bar Worksheet Workbook

Answers

Formula bar is a command line above the worksheet where text, numbers, and formulas are entered into a worksheet.

What is the formula bar?

Formula bar is the white strip like space in above the worksheet, where what we write in the sheet, the text and formula are displayed. It is a place where you can edit the text and formula.

Thus, Formula bar is a command line above the worksheet where text, numbers, and formulas are entered into a worksheet.

Learn more about formula bar

https://brainly.com/question/14694227

#SPJ1

What tool would you use if you want to collect information as it is being transmitted on the network and analyze the contents for the purpose of solving network problems

Answers

Answer:

packet sniffer

Explanation:

Q:

What tool would you use if you want to collect information as it is being transmitted on the n…

a. content filter

b. vulnerability scanner...

A:

packet sniffer

(Python coding)4.3 Code Practice: Question 2
instructions:
Write a program that uses a while loop to calculate and print the multiples of 3 from 3 to 21. Your program should print each number on a separate line.

Expected Output:
3
6
9
12
15
18
21

Answers

Answer:

i = 3

while i <= 21:

   print(i)

   i+=3

Explanation:

First, we will declare i as 3 because otherwise Python will yell at you and say there is no variable with i, we set it to 3 because we will print then increment in the while loop instead of increment then print

Next the while loop, it will go until i is less than or equal to 21 to print from 3 to 21

Then we will print i as an output. The print command will print each number on a separate line

After that we will increment i by 3 to find the next multiple of 3

This solution will print the following:

3

6

9

12

15

18

21

If an array is sorted from lowest to highest, then the smallest item will always display in the first element of the list / array and the largest item will display in the last element of the array.

A. True
B. False

Answers

It will be ascending, so it is true

Which version of HTML provides the lowest common denominator of HTML tags

Answers

Answer:

HTML 1.0.

Explanation:

The basic version of HTML has support for basic elements like text

The version of HTML provides the lowest common denominator of HTML tags is HTML 1.0. The correct option is C.

What is HTML?

Not being a programming language, HTML. A markup language is used. In fact, HyperText Markup Language is the name of the technology.

The coding that organizes a web page's content is called HTML (HyperText Markup Language). Content may be organized using paragraphs, a list of bulleted points, graphics, and data tables, for instance.

The first version of HTML was written by Tim Berners-Lee in 1993. Since then, there have been many different versions of HTML.

Therefore, the correct option is C, HTML 1.0.

To learn more about HTML, refer to the link:

https://brainly.com/question/24065854

#SPJ2

The question is incomplete. Your most probably complete question is given below:

HTML 2

HTML 4.01

HTML 1.0

HTML 3.2

If you aren’t familiar with the idea of a leap year, read “Why Is There a Leap Day?” before continuing with the lab.

Your friend is writing a program that will allow the user to input a year and then print “LEAP!” if that year is a leap year or print “not a leap year” if it is not. However, the program isn’t working properly, and your friend asked you for help in debugging.

Before you take a look at the program, you should know these rules for leap years:

A year is a leap year if it can be divided by 400 without a remainder.
A year is a leap year if it can be divided by 4 without a remainder, unless it can also be divided by 100 without a remainder; if that is the case, it is not a leap year.
All other years are not leap years.
Here is your friend’s code:

year=int(input()
if year%400=0:
print("LEAP!")
else:
print(not a leap year")
elseif year%4==0 and year%100!=0
print(“not a leap year")
Note: You may not have seen the % symbol used this way before. It calculates the remainder of the number to the left of it when it is divided by the number to the right of it. So, 10%3 is 1, because when you divide 10 by 3, the remainder is 1.

Answers

The correct debugged code is attached below

What is a leap year

A leap year is a year with 366 days and this year occurs once every 4 years. The debugged code line of code of the program written, is as attached below. because the line of code in the question lacks some functions and symbols

Hence we can conclude that the correct debugged code is attached below.

Learn more about Python coding : https://brainly.com/question/16397886

#SPJ1

From the ITAdmin workstation, use the tracert command to identify the devices in the path between ITAdmin and a remote computer on the internet that has an IP address of 206.8.28.127. How many routers are in the path between ITAdmin and the remote computer

Answers

Answer:

This problem has been solved! From the IT Administrator workstation (named ITAdmin), use the tracert command to identify the devices in the path between itself and a remote computer

Explanation:

This problem has been solved! From the IT Administrator workstation (named ITAdmin), use the tracert command to identify the devices in the path between itself and a remote computer

An IP address is an application programming interface connected to a computer network. There are six routers in the path between IT admin and remote computer.

What is a router?

A router is a device that brings the internet service to your linked devices. It is used to forward the data packets on the network channel and also, maintain the traffic of the data on the server.

The default gateway is the IP of the local router that is not routed somewhere else but can be used to manage the router. The default gateway serves as the forwarding host.

Therefore, six routers are placed between the IT admin and the remote computer.

Learn more about IP address here:

https://brainly.com/question/20372171

#SPJ1

What does a file extension tell your computer?.

Answers

Extensions tell your computer which application created or can open the file and which icon to use for the file. For example, the docx extension tells your computer that Microsoft Word can open the file and to display a Word icon when you view it in File Explorer.

This is an example of what type of formula?

=(D1-D17)

Question 3 options:

ADDITION


SUBTRACTION


RANGE


AVERAGE

Answers

The type of formula that is represented by the given example =(D1+D17) in excel is known as; The SUM Formula function

What are functions in excel?

There are different types of formula functions in excel such as;

SUM

COUNT

COUNTA

IF

TRIM

MAX & MIN

Now, in this question, the formula we are given is =(D1+D17) and the example it represents is the SUM formula function.

Why were different data types developed? Discuss the commonly used data types in programming languages.

Answers

Answer:

Different types of data are represented in different ways inside a computer and need varying amounts of memory to store them. Commonly used data types integer, real, character or string, and Boolean.

Explanation:

A programmable machine can:

Answers

Answer:

Either be an embedded system, or a general purpose system.

Design, implement and test a Java class that processes a series of triangles. The triangle specification will be identical to that in Programming Assignment #2 (part A). As in that assignment, you will read in the three sides of the triangle, check the input for errors (and handle them if found), classify the triangle and compute its area. For this assignment, triangle data will be read from an input file and the program’s output will be written to another file. The output file will also include a summary of the data processed. You must use at least one dialog box in this program.


The data for each triangle will be on a separate line of the input file, with the input data echoed and the results referred to by the line number (see example).

Some things to note:

• All input data lines must be processed.

• A new line with triangle data always starts with the ‘#’ marker.

• If an error is encountered on a given line, it must be handled. Afterwards, the program will continue on the next line without processing the triangle. An example of such an error is a non-integer appearing in the first three values of a given line.

• Extraneous data must be discarded. This is data that appears after the first three triangle sides are found, but before a new triangle marker is found.

• If the end of file (EOF) is found, a message should be printed out

• There shall be no unhandled file related exceptions and an end-of-file exception must be avoided.


On initialization, the program will prompt the user for both an input and an output file. If a non-existent input file is specified, the appropriate exception must be handled, resulting in an error message. For the exception case, re-prompt the user for the correct input file [Extra credit if you implement a JFileChooser type dialog box]. Once the I/O file is specified, the program will read in and process all the entries in the file. The output of the program will be written to the specified output file and echoed to the console.


The program will evaluate each line and determine the validity of the triangle. If valid, the program will output summary line for the triangle calculation (see Programming Assignment #2A). If invalid, the program will output a description of the error found in the entry. Your program must be robust and handle situations where all the triangle inputs are not proper and/or present.


Once all the entries are processed, a summary will be generated providing the following information:

• Pathname of the input file

• Number of lines processed

• Number of valid triangles

• Number of invalid triangles



You should be able to reuse much of your Programming Assignment #2A code for this project. However, strongly recommend that you rewrite your code and put this functionality in separate method(s). Likewise, any residual problems from #2A should be fixed in this version. The main features you will be adding are:


• Multiple methods

• Exception handing

• File I/O

• Dialog box

Answers

public class GeometricObject {

   private String color = " white ";

   private boolean filled;

   private java.util.Date dateCreated;

   public GeometricObject() {

       dateCreated = new java.util.Date();

   }

   public GeometricObject(String color, boolean filled) {

       dateCreated = new java.util.Date();

       this.color = color;

       this.filled = filled;  

   }

   public String getColor() {

       return color;

   }

   public void setColor(String color) {

       this.color = color;

   }

   public boolean isFilled() {

       return filled;

   }

   public void setFilled(boolean filled) {

       this.filled = filled;

   }

   public java.util.Date getDateCreated() {

       return dateCreated;

   }

   public String toString() {

       return "Created on " + dateCreated + "\n color: " + color + " and filled ";                

   }  

}

What should a pie chart represent?

data that steadily increases
data that adds up to 100%
a set of unrelated data
a list of items that frequently changes

Answers

Answer:

Data that adds up to 100%

Explanation:

Select the three careers in the technical aspect of digital media.
A engineering
B Advertising
C coding
D server maintenance
E journalism

Answers

Engineering, coding, server maintenance are three careers in the technical aspect of digital media. Through numeric encoding and decoding of data, video, audio, software, or other content is created, modified, saved, or accessed in digital form.

What is digital media?

Digital media is a mix of technology and content, and creating digital media products necessitates a multi-skilled team.

Digital media dissemination will soon overtake conventional newspaper, magazine, and book sales. Digital photographs, Digital books, Websites and Blogs,  are some example of Social Media.

Thus, A, C and D are correct.

For more details about digital media, click here

https://brainly.com/question/17858199

#SPJ1

Answer:

engineering, coding, server maintenance

A form of wireless transmission called _____ is very popular for short-distance wireless communication that does not require high power

Answers

Answer: Wi-Fi

Wi-Fi doesn’t use that much power and is very popular form of wireless communication. But this could also be Bluetooth because it is also a tarnsmission that occurs wirelessly.

state how to transfee information from website to el processing document in computers and technology.​

Answers

Answer:

This is typically done either by downloading or by copying and pasting.

Explanation:

A member has been asked to co-sign checks with a client employee while the company president is on vacation. Which statement about the application of the AICPA independence rules to this situation is correct

Answers

The statement about the application of the AICPA independence rules that is used in this situation is Because check-signing is a management function, independence is impaired.

What is AICPA independence rules?

The independence state that firm's partners and professional employees, have to be independent in line with the “Independence Rule” as well as others.

Note that the  statement about the application of the AICPA independence rules that is used in this situation is Because check-signing is a management function, independence is impaired.

Learn more about AICPA from

https://brainly.com/question/8026742

#SPJ1

You are responsible for creating a database with information about each state in the United States as well as three cities in each state. You will include information on population, primary industry, and area in square miles. How should you set up the database? Use one large table containing all information. Use several interrelated tables. Use one table for each city and each state.

Answers

Answer:gps trends are like the images that are being displayed on the map.

Explanation:

Other Questions
. I'm afraid I can't afford that much. Would you be prepared _____ the price if I pay cash Explain the difference between proactive interference and retroactive interference. 64,000 110 Estimate :Quotient :Remainder: Consider the reaction hc2h3o2(aq) h2o(l) h3o (aq) c2h3o2(aq). Which species is the conjugate acid?a. C2h3o2-(aq)b. H2o(l)c. H3o (aq)d. Hc2h3o2(aq)e. Two of these (Will mark brainliest) help public static String[] strArrMethod(String[] arr) { String[] result = new String[arr.length]; for (int j = 0; j < arr.length; j++) { String sm = arr[j]; for (int k = j + 1; k < arr.length; k++) { if (arr[k].length() < sm.length()) { sm = arr[k]; // Line 12 } } result[j] = sm; } return result; } As a result of the [Spanish-American] war, the U.S. got a bunch of new territories - the Philippines, Puerto Rico, and Group of answer choices Work out the volume for this prism What do you call the system that categorizes organisms by using a naming system that includes the genus and species?. Pls help me and show work! Thank you Pernicious anemia is most common in older people. Which choice lists the correct relationships among the factors that cause this disorder? Why is the sustainability of water for the future generations to come so important 1. Jessica and her family are driving to see friends who live 750 miles away. They dri for 12.5 hours before they arrive. What is their rate of change?1. 60 miles per hour2. 50 miles per hour3. 75 miles per hour4. 55 miles per hour Which of the following was NOT a stop on the Silk Road?A. Central AsiaB. ChinaC. IndiaD. Scandinavia Find the minimum energy needed to eject electrons from a metal with a threshold frequency of 5. 651014 s1 Pleeaaaaase help!!!!!!!!!! Which of these excerpts from the end of the poem suggests that imogen has reconciled herself to her situation in life? Interest rate. Multiple choice what happened to three of the first students to arrive in Mississippi and why were they there in the first place?help me please There are two cubes, one smaller than the other. The two cubes combined has a volume of 118.125in. Find the side length of each cube if the smaller cube is 2/3 the length of the larger cube.