Answer:
clip/edit and or photo
Explanation:
are the raw project assets (video or audio streams) that are created or ... is an NLE background process that occurs when certain types of edits are ... is the audio version of compositing—the act of combining multiple audio ... serves as a mask when superimposing one image over top of another.
Define the Database
Select the correct statement(s) regarding direct sequence spread spectrum (DSSS) and orthogonal frequency division multiplexing (OFDM).
a. OFDM is not classified as a spread spectrum technique, although OFDM has the effect of spreading the signal over a larger frequency spectrum
b. OFDM has greater spectral efficiency compared to DSSS
c. DSSS relies upon a PN code that is only shared by the transmitter and receiver pair
d. all statements are correct
Answer:
a. OFDM is not classified as a spread spectrum technique, although OFDM has the effect of spreading the signal over a larger frequency spectrum.
Explanation:
Orthogonal Frequency Division Multiplexing is a technique in which large digital data is sent over radio waves by splitting it into multiple subcarriers. The data is then transmitted to different users who can access the files. OFDM is not a spread spectrum technique, it is based on large frequency spectrum.
GIVING BRAINLIEST ANSWER CORRECTLY! 20 POINTS
What is the purpose of a Post Mortem Review?
To check the code for spelling
To prove the algorithm is correct
To understand how the code can be improved
To check the code for formatting?
Answer:
C . To understand how the code can be improved
Lena is completing her senior year of college and is living in an apartment with three friends. Her family has a subscription to HBO Go, and Lisa is able to use the log-on ID and password while she’s at college. Lena does not have cable TV or satellite TV as she typically streams shows or movies that are available online for free or through HBO Go. Several of Lena’s friends don’t have a subscription to Hulu, so Lena has given them her log-on ID and password so they can watch their shows. She doesn’t mind sharing the HBO Go subscription with her friends—what could it hurt? She has heard that the entertainment industry and HBO Go are upset over people sharing their subscription to the streaming services in this way. Lena’s sharing of her family’s HBO Go subscription is an example of:________
a) streaming piracy
b) illegal sharing
c) consumer copying
d) consumer misbehavior
e) digital stealing
Answer:
d) consumer misbehavior
Explanation:
This is an example of consumer misbehavior. What Lena is doing is not technically piracy or illegal because HBO has created the family feature on their accounts for the account to be used by multiple people at the same time. Yet, the feature was not intended to be used by individuals that are not technically family or even under the same roof. Therefore, what Lena is doing goes against HBO's reason for this feature and sharing the account as Lena is doing is ultimately hurting HBO's streaming service.
PLEASE SOMEONE ANSWER THIS
If the old code to a passcode was 1147, and someone changed it, what would the new code be?
(I already tried 4117)
[I forgot my screen time passcode please someone help I literally can’t do anything on my phone.]
Answer:
Any of these?
Explanation:
1147. 4117. 7411
1471. 4171
1714. 4711
1741. 7114
1417. 7141
Answer:
1417
Explanation:
Which is a potential disadvantage of emerging technologies? A. increased spread of misinformation due to advanced communication technologies B. inefficient usage of energy due to advanced manufacturing technologies C. only benefiting developed countries rather than developing ones D. slowing down global economic growth
Answer: I believe it’s D.
Explanation: Less developed countries may not be able to afford the new technology, while more developed ones will be able to do so. Meaning the less developed countries will most likely not change.
The cat store needs your help! The base class Animal has private fields animalName, and animalAge. The derived class Cat extends the Animal class and includes a private field for catBreed. Complete main() to:
create a generic animal and print information using printInfo().
create a Cat animal, use printInfo() to print information, and add a statement to print the cat's breed using the getBreed() method.
Ex. If the input is:
Dobby
2
Kreacher
3
Maine Coon
the output is:
Pet Information:
Name: Dobby
Age: 2
Pet Information:
Name: Kreacher
Age: 3
Breed: Maine Coon
AnimalIformation.java
import java.util.Scanner;
public class AnimalInformation {
public static void main(String[] args) {
Scanner scnr = new Scanner(System.in);
Animal myAnimal = new Animal();
Cat myCat = new Cat();
String animalName, catName, catBreed;
int animalAge, catAge;
animalName = scnr.nextLine();
animalAge = scnr.nextInt();
scnr.nextLine();
catName = scnr.next();
catAge = scnr.nextInt();
scnr.nextLine();
catBreed = scnr.nextLine();
// TODO: Create generic animal (using animalName, animalAge) and then call printInfo
// TODO: Create cat animal (using catName, catAge, catBreed) and then call printInfo
// TODO: Use getBreed(), to output the breed of the cat
}
}
Animal.java
public class Animal {
protected String animalName;
protected int animalAge;
public void setName(String userName) {
animalName = userName;
}
public String getName() {
return animalName;
}
public void setAge(int userAge) {
animalAge = userAge;
}
public int getAge() {
return animalAge;
}
public void printInfo() {
System.out.println("Animal Information: ");
System.out.println(" Name: " + animalName);
System.out.println(" Age: " + animalAge);
}
}
Cat.java
public class Cat extends Animal {
private String catBreed;
public void setBreed(String userBreed) {
catBreed = userBreed;
}
public String getBreed() {
return catBreed;
}
}
Answer:
Answered below
Explanation:
//TODO1
myAnimal.setName(animalName);
myAnimal.setAge(animalAge);
myAnimal.printInfo();
//TODO2
myCat.setName(catName);
myCat.setAge(catAge);
myCat.setBreed(catBreed);
myCat.printInfo();
//TODO
//Call the getter method of the cat class and //save the returned string in a variable to print //it out.
String breed = myCat.getBreed();
System.out.print(breed);
what is convergence
Answer:
the process or state of converging.
Explanation:
Answer:
the fact that two or more things, ideas, etc. become similar or come together.
What is output if the user enters -5?
What is the output if the user enters 7? Edhesive 7.4 Lesson Practice
Answer:
for question 3 answer : 4 question4: its 28
Explanation:
x+7*2
The output if the user enters -5 is 4, while the output if the user enters 7 is 28. Both of these outputs will eventually depend on the program which is executed by a specific language.
What is the significance of the output of programming language?Programming languages use classes and functions that control commands. The reason that programming is so important is that it directs a computer to complete these commands over and over again, so people do not have to do the task repeatedly. Instead, the software can do it automatically and accurately.
According to the context of this question, the actual number is the first output is found to be 1 and when -5 is added into it, it gives an output of 4. The same principle is applied in the second question as well but the actual number, in this case, would be different to it determines a different output.
Therefore, the output if the user enters -5 is 4, while the output if the user enters 7 is 28. Both of these outputs will eventually depend on the program which is executed by a specific language.
To learn more about Programming languages, refer to the link:
https://brainly.com/question/16936315
#SPJ2
1. Mrs. Bautista has a bank balance of -42 dollars at the start of the month. After she
deposits 6 dollars, what is the new balance?
Answer:
- 36
Explanation:
-42 + 6 = -36
Mrs. Bautista is kinda broke
Please help. 10 points
Question # 1
File Upload
Submit your newsletter that includes the following:
two or three columns
a title
at least three graphics, but not more than six
Answer:
God Is Good He Will Always Help You He Is Good And Always Good!!
If God Is For Us Who Can Be Against us?? Romans 8:31
Explanation:
Sorry im late. Hope I helped.
I will be doing the biography report.
The Biography and Life of Henry Ford.
Column One: Who was Henry Ford?
Henry Ford was the founder of Ford Motor Company and also the mass producer of the automobile. Henry Ford was born in 1863. At the age of 16, he worked as a machinist apprentice. Later, Henry began to work the family farm while still working on creating steam engines. Henry had a big interest in steam engines, which would later contribute to him building his first working automobile.
Column Two: How did Henry Ford contribute to our society?
After marrying in 1888, Ford was hired to work for Edison Illuminating Company. His position was an engineer, and Ford began to accelerate his position in the company quickly. After a while, Ford created his first operating vehicle. This was called the "Quadricycle." Ford wanted to improve on his models, so he founded the Company Ford with others. Ford then began to develop methods of mass-producing automobiles to sell to the public. After success in business, he bought the whole company and owned it all by himself. Ford began to mass-produce automobiles. It is said that " The mass production techniques Henry Ford championed eventually allowed Ford Motor Company to turn out one Model T every 24 seconds." Ford passed away in 1945. He decided to give ownership to his son Edsel Ford before he died, but Edsel sadly died before Henry Ford. The Ford company's ownership was given to Ford's grandson, Henry Ford II.
Three Graphics:
What is the name for a piece of information from one record in one field ?
Answer:
Database field
Explanation:
A database sector corresponds to a specific piece of information from some kind of record. A database record consists of a collection of fields. Name, email, and contact information, for example, are fields in a telephone book record.
Answer: C. Data Value
Explanation:
Intro to Access -Edg2022
From the practice directory, you wish to capture a listing of files and directories to a file in your user2 directory, thus allowing you to keep track of what is in your user2 directory. What command would you use to redirect the output of a long listing of all files and directories under user2 directory and save the result to a new output file called homedir.list which is under the practice directory
Answer:
variable(s) determine the amount of potential energy an object has?
Explanation:
what is memory address map
Question 4
1 pts
Consider the following procedure called square that is meant to multiply a number by
itself and return the value.
PROCEDURE square number
Missing Instructions
RETURN squared
What should go in place of missing Instructions in order to make this procedure work as
intended?
number
number * number
O squared
number + 2
O squared - number number
O square - number number
Answer: squared ← number * number
Explanation:
Which of these conclusions supports the fact that Eclipse is categorized as an IDE?
The user cannot use cheat sheets because it is frowned upon.
The user must get used to a proprietary and unique menu system.
The user must specify the programming language he or she wants to use.
The user must have a high level of expertise before quality results can be obtained.
Answer:
The user must specify the programming language he or she wants to use.
Explanation:
What is the best way to improve an online search?
O use detailed keywords
O use a single keyword
O avoid keywords
O re-order the keywords
Answer: i think it’s A, i’m not sure. i’m still stuck on my own
Explanation:
Answer:
I would suggest:
A.
Explanation:
the more specific you are, the better results you would get.
What is the most likely reason a user would export data with the formatting in place?
A) The fields will not have any errors.
B) The file will be much easier to read.
C) The file is automatically spellchecked.
D) The columns are automatically alphabetized.
Answer:
its d
Explanation:
Answer:
its b on edge
Explanation:
believe me if youre a viber
A gui allows you to interact with objects on the screen such as icons and buttons true or false
Answer:
True
Explanation:
Which of the following characterizes how an enabled security program might react to a new program installation on a computer system?
It might alert you to space requirement excesses.
It might report an error or tell you that the file is corrupted.
It might protect the new installation from getting viruses.
It might automatically set a restore point for the computer system.
Answer:
It might automatically set a restore point for the computer system
Answer:
It might report an error or tell you that the file is corrupted.
Explanation:
Brainly not working for me not showing any ads or answers
Answer:
oof, try reloading the page?
Explanation:
Answer:
You should try logging in out your account
Write a function charInWord that takes in two parameters, a char (character) and a word (string). The program will return true if the character is in the word and false if it is not. If word is not a string type, or if char is not a string type, or if the length of char is greater than 1, the function should return None. Your main program should call the function and print char is in word if the function returns true, or char is not in word if the function returns false, using the user-supplied values instead of char and word. The program should print incorrect input provided if the function returns None. Ex: If the input is: a cat the output is: a is in cat Ex: If the input is: a club the output is: a is not in club Ex: If the input is: ab horse the output is:
Answer:
The program in Python, is as follows:
def charInWord(chr,word):
if len(chr)>1:
print("None")
elif not(chr.isalpha() and word.isalpha()):
print("None")
else:
if word.find(chr) == -1:
print(chr+" is not in "+word)
else:
print(chr+" is in "+word)
chr = input("Character: ")
word = input("Word: ")
print(charInWord(chr,word))
Explanation:
This defines the function
def charInWord(chr,word):
This checks if the length of character is greater than 1
if len(chr)>1:
If yes, it prints None
print("None")
This checks if the character or the word contains invalid character
elif not(chr.isalpha() and word.isalpha()):
If yes, it prints None
print("None")
This is executed for valid parameters
else:
If the character is not present, this is executed
if word.find(chr) == -1:
print(chr+" is not in "+word)
If the character is present, this is executed
else:
print(chr+" is in "+word)
The main begins here
This gets the character
chr = input("Character: ")
This gets the word
word = input("Word: ")
This calls the method and prints the required output
print(charInWord(chr,word))
Rupesh wants to try programming with Eclipse. What is the first step he should take to make that happen?
download the Eclipse IDE
download the current Java Development Kit
create a restore point
disable his security program
Answer:
create a restore point
Explanation:
What is the diagram of a combination circuit that accepts a 3 bit number and generates an output binary number equal to the square of input number?
Answer:
see picture
Explanation:
Disclaimer: I didn't design this; I found it.
Search for "3 bit square circuit".
Which steps will import data from an Excel workbook? Use the drop-down menus to complete them.
1. Open the database.
2. Click the *BLANK*
tab.
3. In the import & Link group, click *BLANK*
4. Click *BLANK* to locate a file.
5. Navigate to and open the file to import.
6. Select the Import option.
7. Click OK.
8. Follow the instructions in the wizard to import the object.
Answer:
what are the blank options
Answer:
The answer is
1. External Data
2. Excel
3. Browse
Explanation:
EDGE 2021
in a swap you need a variable so that one of the values is not lost ? Need help
Answer:
In a swap, the variable is cuttly.x
Explanation:
Answer:
temp
Explanation:
The cutting tool that has a zig zag edge is called a?
asnwer the question 1 name the different kinds of slide views present in power point (plz give me answer of this q plzz
Answer:
1. Slide Sorter.
2. Notes Page.
3. Reading Pane.
4. Presenter view.
Explanation:
PowerPoint application can be defined as a software application or program designed and developed by Microsoft, to avail users the ability to create various slides containing textual and multimedia informations that can be used during a presentation.
Some of the features available on Microsoft PowerPoint are narrations, transition effects, custom slideshows, animation effects, formatting options etc.
Slide transition is an inbuilt feature of a presentation software that automatically changes the slides at regular intervals.
Basically, the different kinds of slide views present in Microsoft PowerPoint application includes;
1. Slide Sorter.
2. Notes Page.
3. Reading Pane.
4. Presenter view.
Presenter view avails the user an ability to use two monitors to display his or her presentation. Thus, one of the monitors displays the notes-free presentation to your audience while the other monitor lets you view the presentation with notes that you have added to the slides, as well as the navigation and presentation tools.
can someone help me find all the solutions to the problem
Roman numbers. Write a program that converts a positive integer into the Roman number system. The Roman number system has digits
I=1
V=5
X=10
L=50
C=100
D=500
M=1,000
Numbers are formed according to the following rules. (1) Only numbers up to 3,999 are represented. (2) As in the decimal system, the thousands, hundred, tens, and ones are expressed separately. (3) The numbers 1 to 9 are expressed as
I=1
II=2
III=3
IV=4
V=5
VI=6
VII=7
VIII=8
IX=9
As you can see, a I preceding a V or X is subtracted from the value, and you can never have more than three I's in a row. (4) Tens and hundreds are done the same way, except that the letters X, L, C and C, D, M are used instead of I, V, X, respectively.
Your program should take an input, such as 1978, and convert it to Roman numerals, MCMLXXVIII.
Answer:
The program in Python is as follows:
def Conversion(num):
digitint = [1000, 900, 500, 400, 100, 90, 50, 40, 10, 9, 5, 4,1]
digitroman = ["M", "CM", "D", "CD","C", "XC", "L", "XL","X", "IX", "V", "IV","I"]
roman_num = ''
i = 0
while num > 0:
for _ in range(num // digitint[i]):
roman_num += digitroman[i]
num -= digitint[i]
i+=1
return roman_num
num = int(input("Enter number: "))
if num > 3999 or num < 0:
print("Out of range")
else:
print(Conversion(num))
Explanation:
See attachment for full program where I use comments to explain each line