Answer:
B. The heading “New Title” will appear in red.
Explanation:
CORRECT
The correct option is B. The heading “New Title” will appear in red.
What is HTML?HTML is the language for describing the design of Web pages. HTML provides authors the means to Publish online documents with titles, text, tables, lists, photos, etc. Retrieve online details via hypertext links, at the click of a controller.HTML is perhaps one of the most comfortable front-end programming languages to captain. So if you want to learn HTML, then go for it! With patience and exercise, you'll learn to make the most of this famous language.It's a text composition saved with the extension. HTML or. htm that possesses texts and some tags written between "< >" which give the instructions required to configure the web page. These identifications are fixed and substantial and will be currently described in the tutorials when involved and needed.To learn more about HTML, refer to:
https://brainly.com/question/4056554
#SPJ2
What responsibilities does the film editor have? (Select all that apply).
Answer:
“Revising the script”, “reading the script”, and “manipulating graphics, plot, sound, and score”
Explanation:
can someone help me answer this, I can’t fail tysm :)
Which is the hanging indent on the ruler?
A
B
C
D
1 Sales tax
5.00%
Use the image to help you answer the question.
Which formula will tell you the total "Before tax"
price using cell references?
A. =3+2+50
B. =B8
C. =B4+B5+B6
D. =B4*B5*B6
Answer:
Future value (FV) tells you the value in the future of money deposited in a bank account ... We can use Excel to make a table of how the future value grows with the ... 1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. A. B. C. D. E. F. Interest. 6% ... To answer the question, we compute the IRR of the investment and compare it.
Explanation:
Answer:
C. = B4+B5+B6
Explanation:
Edge 2020
What are some good digital habits?
Color codes are stored as:
A) int
B) float
C) dec
D) Strings
Answer:
the correct answer is Strings, have a great evening yall
Explanation:
if you hard working right now go to this EASY question
#BRAINLY and I will give you brainlist something I forgot what's it called for your hard work
One tool under What-If-Analysis is Scenarios. Which best describes the purpose of setting up and using scenarios
1. to quickly combine multiple formulas from different cells into just one
2. to instantly compare results when data in numerous cells change to specified values
3. to conduct automatic complex statistical analysis on a range of cells
4. to constrain some cells to certain values so that the wrong data are rejected if entered
Answer:
Option B, to instantly compare results when data in numerous cells change to specified values
Explanation:
Scenario setting with in the What If Analysis is used to compare various scenarios with in the same excel sheet. Scenarios has set of values that are saves and updated automatically as the values with in the cell changes. Also the scenarios can be switched.
Hence, option B is correct
PLEASE ANSWER ASAP!!!
Name the error that can happen as a result of adding binary numbers.
Answer:
Sometimes, when adding two binary numbers we can end up with an extra digit that doesn't fit. This is called an overflow error. This sum is fine as the original numbers have two digits, and the result of the sum also has two digits.
Explanation:
By default, a footnote is placed in which of the following locations?
Answer:
By default, Word puts footnotes at the bottom of the page and endnotes at the end of the document
Why is it a good practice to use functions in programming? Select the best answer.
A.It is faster to run the code using functions.
B.Functions allow us to reuse common code.
C.All of these are correct.
D.It is easier to debug the code using functions.
Answer:
C. All of these are correct answer from the options for the question that u have given...
The good practice to use functions in programming is all of these are correct. The correct option is C.
What are functions in programming?The repetitious codes are removed by breaking a program down into functions, which not only reduces the size of the program but also improves its effectiveness. If there were repetitive codes, we would need to alter the program from several locations rather than just one.
As a result, organizing programs into functions aid in good administration and shortens programs by removing repeated code. A functional programming language is a particular kind of language that allows for the creation and application of pure mathematical functions, along with the use of conditional expressions and recursion to carry out various computations.
Therefore, the correct option is C. All of these are correct.
To learn more about functions in programming, refer to the link:
https://brainly.com/question/24297344
#SPJ6
Surrendering to digital distractions can result in a disappointed
feeling of how you spent your time. True false
edhesive assignment 7 calendar
Answer:
def leap_year(y):
if y % 4 == 0:
return 1
else:
return 0
def number_of_days(m,y):
if m == 2:
return 28 + leap_year(y)
elif m == 1 or m == 3 or m == 5 or m == 7 or m == 8 or m ==10 or m == 12:
return 31
elif m == 4 or m == 6 or m == 9 or m == 11:
return 30
def days(m,d):
if m == 1:
return 0 + d
if m == 2:
return 31 + d
if m == 3:
return 59 + d
if m == 4:
return 90 + d
if m == 5:
return 120 + d
if m == 6:
return 151 + d
if m == 7:
return 181 + d
if m == 8:
return 212 + d
if m == 9:
return 243 + d
if m == 10:
return 273 + d
if m == 11:
return 304 + d
if m == 12:
return 334 + d
def days_left(d,m,y):
if days(m,d) <= 60:
return 365 - days(m,d) + leap_year(y)
else:
return 365 - days(m,d)
print("Please enter a date")
day=int(input("Day: "))
month=int(input("Month: "))
year=int(input("Year: "))
choice=int(input("Menu:\n1) Calculate the number of days in the given month.\n2) Calculate the number of days left in the given year.\n"))
if choice == 1:
print(number_of_days(month, year))
if choice == 2:
print(days_left(day,month,year))
Explanation:
Hoped this helped
The program is an illustration of functions.
Functions are groups of code segments that are executed when called or evoked
The calendar programThe calendar program in Python, where comments are used to explain each line is as follows:
#This checks for leap year
def leap_year(y):
if y % 4 == 0:
return 1
else:
return 0
#This returns the number of days in the month
def number_of_days(m,y):
if m == 2:
return 28 + leap_year(y)
elif m == 1 or m == 3 or m == 5 or m == 7 or m == 8 or m ==10 or m == 12:
return 31
elif m == 4 or m == 6 or m == 9 or m == 11:
return 30
#This returns the number of days left in the month
def days(m,d):
dayList = [0,31,59,90,120,151,181,212,243,273,304,334]
return dayList[m-1] + d
#This returns the number of days left in the year
def days_left(d,m,y):
if days(m,d) <= 60:
return 365 - days(m,d) + leap_year(y)
else:
return 365 - days(m,d)
#The main begins here
#This next three lines gets input for date
day=int(input("Day: "))
month=int(input("Month: "))
year=int(input("Year: "))
#This gets the choice from the user
menu=int(input("Press 1 to calculate the number of days in the given month.\nPress 2 to calculate the number of days left in the given year.\nChoice: "))
#This prints the number of days in the month
if menu == 1:
print(number_of_days(month, year))
#This prints the number of days left in the year
elif menu == 2:
print(days_left(day,month,year))
Read more about Python functions at:
https://brainly.com/question/14284563
The AND operator is a disjunction and the OR operator is a conjunction.
True
or
False
Answer:
True but it might be false but i think is true
3.
What is the meaning of *.VBP.
Answer:
The meaning of VBP is Visual Basic Project
Answer:
visual basic projects thankyouu HAHAHAHA
because cute ako
Boolean Operators help filter information when completing a ________ ________
A. web search
B. column making
which type of hazzard are those substances which threathen you physical safety ?
Answer:
98o
Explanation:
Which of the following is NOT an acceptable way to create a color?
A) O "cyan"
B) O "#ff2341"
C) blue
D) "RGB (0, 15, 234)"
The option that is not an acceptable way to create a color is blue.
How can I create a color?There are a lot of ways to create some unique color such as the additions of colors together. An example is the addition of purple, orange, and green together.
Note that blue on its own cannot create another color and as such, The option that is not an acceptable way to create a color is blue.
Learn more about color from
https://brainly.com/question/4431200
#SPJ2
Nano technology uses include...
A: Tennis racquets (high strength to weight)
B: Self-cleaning fabrics
C. Antibacterial fabrics
D: All of the above
A free software license allows users to
Answer:
C. use, alter, and distribute the software as desired.
Explanation:
A software can be defined as a computer program or application that comprises of sets of code for performing specific tasks on the system
A free software license allows users to use, alter, and distribute the software as desired.
Can somebody do an Algorithm 2 for more?
(Python)
# If the number is positive, we print an appropriate message, else we print the opposite
num = 3
if num > 0:
print(num, "is a positive number.")
num = -1
elif num < 0:
print(num, "is a negative number.")
num = 0
else
print(num, "is neither positive nor negative.")
Which command do you use to save a document with a new name? Choose the answer.
Save As
Save New
Save Type
Save
Answer:
Explanation:
Most word processors use Save As which not only allows you to save with a different name, but the root can be changed as well. I use LibreOffice write. Its Save As Command allows you to change the name from say J1 to Jerome and also to save the document in many of the word formats. That last ability is really important because some people only have Microsoft products. On my old computer, I have Microsoft Word 2000. If I want to transfer files, that is how I have to save the file.
2.32 LAB: Musical note frequencies On a piano, a key has a frequency, say f0. Each higher key (black or white) has a frequency of f0 * rn, where n is the distance (number of keys) from that key, and r is 2(1/12). Given an initial key frequency, output that frequency and the next 4 higher key frequencies. Output each floating-point value with two digits after the decimal point, which can be achieved by executing cout << fixed << setprecision(2); once before all other cout statements. Ex: If the input is: 440.0 (which is the A key near the middle of a piano keyboard), the output is: 440.00 466.16 493.88 523.25 554.37
Answer:
Explanation:
[tex]\text{This is a python code:}[/tex]
[tex]\text{import math}[/tex]
[tex]your {\_} {value 1 }= float(inpu \ t ())[/tex]
[tex]your{\_}value 2 = your{\_}value1*math.exp(1 * math.log(2) / 12)[/tex]
[tex]your{\_}value 3 = your{\_}value1*math.exp(2 * math.log(2) / 12)[/tex]
[tex]your{\_}value 4 = your{\_}value1*math.exp(3 * math.log(2) / 12)[/tex]
[tex]your{\_}value 5 = your{\_}value1*math.exp(4 * math.log(2) / 12)[/tex]
[tex]print('\{:.2f\} \{:.2f\} \{:.2f\} \{:.2f\} \{:.2f\}'.format(your\_value1, \ your\_value2, \ your\_value3,[/tex][tex]\ your\_value4, \ \ your\_value5))[/tex]
[tex]\mathbf{OUTPU \ T :}[/tex]
[tex]\mathbf{440.00 \ 466.16 \ 493.88 \ 523.25 \ 554.37}[/tex]
The code for musical note frequencies On a piano, a key has a frequency, say f0 is in the explanation part below.
Here is a C++ program to the stated problem:
#include <iostream>
#include <iomanip>
#include <cmath>
int main() {
double frequency;
std::cout << "Enter the initial key frequency: ";
std::cin >> frequency;
std::cout << std::fixed << std::setprecision(2); // Set output precision to 2 decimal places
std::cout << frequency << " ";
for (int i = 1; i <= 4; ++i) {
frequency *= std::pow(2, 1.0 / 12); // Calculate the next frequency
std::cout << frequency << " ";
}
return 0;
}
Thus, in this program, we use the user's original key frequency as input. The starting frequency and the following four higher key frequencies are then calculated and produced using a loop.
For more details regarding C++ program, visit:
https://brainly.com/question/33180199
#SPJ6
1) Given what you have learned about computers and information technology thus
far, what IT career interests you the most? Use the job descriptions and titles in the
"Computer and Information Technology" section of the Occupational Outlook
Handbook or the IT career cluster for your answer. (2 points)
B r u h that is mostly based on your opinion
The process of acquiring existing information or developing new information.
Answer:
Various definitions of the SDLC methodology exist, but most contain the following phases.
Preliminary Analysis. In this phase, a review is done of the request. ...
System Analysis. ...
System Design. ...
Programming. ...
Testing. ...
Implementation. ...
Maintenance.
Explanation:
There are four methods of acquiring data: collecting new data; converting/transforming legacy data; sharing/exchanging data; and purchasing data. This includes automated collection (e.g., of sensor-derived data), the manual recording of empirical observations, and obtaining existing data from other sources.
True or False? Security code is almost always open source!
True
False
Answer:
its true
Step-by-step explanation:
Security code is almost always open source is a false statement. Check more about Security code below.
What is security code?The Security code is known to be the number that is known to be found in the front or back of any credit cards. It is made just for security use.
Conclusively, Security code is almost always open source as one cannot get it except one is told about it. Therefore, it is not an open source.
Learn more about Security code from
https://brainly.com/question/26260220
Read the code snippet below and determine which markup language it is:
Sound Card
Creative Labs
Sound Blaster Live
80.00
The code is an example of the (Blank) markup language.
Answer:
Sound Card
Explanation:
HURRY PLEASE ITS A TEST
A military cargo plane is loaded with the maximum weight allowable for the flight. The cargo is heavier than what the pilot usually carries, so the pilot adjusts as follows: Group of answer choices
a. The pilot flies slower to create less thrust and less lift
b. The pilot flies slower to create more thrust and more lift
c. The pilot flies faster to create less thrust and less lift
d. The pilot flies faster to create more thrust and more lift
A.)
It's either A or D both of them stand out and make sense to me so I think that it'll be right if you choose A or D.
-Ɽ3₮Ɽ0 Ⱬ3Ɽ0
What color is (255, 0, 255)?
A) lime
B) yellow
C) fuchsia
D) cyan
Answer:
Fuschia!
Explanation:
Try using rgb.to to find specific colors
Keira is creating an app for her cross-country team. Users will input their race times and the output will be a graph showing their progress.
Which Python module should Keira use to draw a line on the screen?
Design Graphics
Graphics Module
Math Module
Turtle Graphics
Answer:
Design Graphics
Explanation: