Which of the following is a type of multimedia?(1 point)

a magazine article about ways to stay active

the handwritten notes from a lecture

a podcast included as part of an online news column

the textbook edition of a Shakespearean play

Answers

Answer 1
C. A podcast included as part of an online news column is a type of multimedia.
Answer 2

Answer: C

a podcast included as part of an online news column

the answers might be in a different order on ur side, but the answer will stil be the same. A podcast included as part of an online news column

I hope this helps : )


Related Questions

I WILL MARK BRAINLIEST 11

Answers

Answer:

Many may answer different to this question, but in my opinion I would say it's false

Read the following scenario:
Two graphic design artists are leaving a major production studio to start a small production company. The artists are in the process of hiring team members when the artists disagree on two potential candidates for one position. Neither artist is willing to compromise, and the hiring process comes to a standstill. Meanwhile, a feature film company has expressed interest in hiring the new production company to work on an upcoming film.
How would this problem most likely be solved?
a. The partners would meet and reevaluate their staff needs, potentially making room for both candidates.
b. The partners would split up and open competing production companies.
c. The partners would defer the hiring of the position to the film producer.
d. The partners would dissolve their business and move into freelancing.
Please answer now !!!

Answers

Answer:

A

Explanation:

None of the other answers suit a professional business and situation.

Write a program that will ask the user to continuously input positive numbers until they type -1 to stop. The program should add up all the number they entered as they are typed ( excluding the -1) then print

example: user enters
8

4.

20

-1
Total: 32

Answers

In python 3:

total = 0

while True:

   number = int(input("Enter a number: "))

   if number == -1:

       break

   total += number

print("Total: {}".format(total))

I hope this helps!

Is anyone doing K12?

Yes

No

Answers

Answer:

No

Explanation:

I need a brainliest to level up please contribute

Answer: Yes I'm doing sixth grade in K12

Which of the following happens during pre-production?

storyboarding

filmmaking

recording

editing

Answers

i want to say storyboarding
I’m pretty sure story boarding

which part of project management involves determining possible risks ​

Answers

Answer:

A Gantt chart is primarily used for project management. Project managers use it frequently for effective project handling. A Gantt Chart enables the following: Easier task scheduling.The triple constraint theory, also called the Iron Triangle in project management, defines the three elements (and their variations) as follows:

Scope, time, budget.

Scope, schedule, cost.

Good, fast, cheap.

A proven methodical life cycle is necessary to repeatedly implement and manage projects successfully.

Write a program that will simulate rolling two dice ( numbers 1 - 6 )
Ask the user how many rolls they want, then using a loop simulate that many dice rolls. Count the number of times the dice land on double 6's and print that total count at the end of the loop.

Answers

import random

rolls = int(input("How many times do you want to roll the dice? "))

i = 0

total_count = 0

while i < rolls:

   die1 = random.randint(1,6)

   die2 = random.randint(1,6)

   if die1 == 6 and die2 == 6:

       total_count += 1

   i += 1

print("The dice landed on double 6's {} time(s)".format(total_count))

I hope this helps!

Input Format:

Get a, b, and c as input.

Output Format:

Output “Yes” or “No” depending on if the given quadratic is factorable. If it is

factorable, output the roots in increasing order. If there are two of the exact same roots, only output it once. Round roots to the nearest hundredth.

Sample Input Sample Output

1 1 -1 Yes -1.00, 0.00

1 3 2 Yes -2.00, -1.00

2 1 2 No

Answers

In python 3:

import math

def quadratic(a, b, c):

   if (b ** 2) - (4 * a * c) < 0:

       return "No"

   root1 = round((-b + (math.sqrt((b ** 2) - (4 * a * c)))) / (2 * a), 2)

   root2 = round((-b - (math.sqrt((b ** 2) - (4 * a * c)))) / (2 * a), 2)

   lst = ([])

   lst.append(root1)

   lst.append(root2)

   lst.sort()

   return f"Yes {lst[0]}, {lst[1]}"

print(quadratic(1, 3, 2))

The print statement tests the function. I hope this helps!

What are the advantages and disadvantages of using a relational database than a flat-file database.

Answers

Advances

Data Integrity, You Only need to change the data in one of the tables, it will then update itselfData Redundancy, By having a relational databse it ensures that no attributes are repeatedData Consistency, There is no chance of the same attribute being stored in a different format in a different fileData Flexibility, When dealing with queries, it gets much easier creating deeper queries with a relational DatabseGreater Efficiency, as you only have to input the data only once into a relational database it saves time and human resources

Disadvantages

Complex, Relational databases can be very complex and without the necessary training can be very hard to break down.Expensive, Relational databases are mostly commercial and require the user to buy that piece of software or licenses for more than one machine

It is easier to minimize duplicate data in a relational database.

It is difficult to use a relational database without prior knowledge.

"How does the INTERNET
work?
O Celluar
O ip Adress
O Twisted Pair
O Fiber Optic
O Server

Answers

Answer:

server

Explanation:

it works through a server

Answer:

IP adress

Explanation:

I WILLMARK BRAINLIEST PLZ ANSWER.

Answers

Answer:

I THINK  its D I THINK

Explanation:

The correct answer is syntax error.

In programming, a syntax error occurs when you forget things such as curly braces, semi-colons, colons, etc.

More pictures more points for everyone :)

Answers

Answer:

WOOF WOOF

Explanation:

MEOW MEOW

Answer:

Nice pics

Explanation:

Love the second one tho

why is what you say in business as important as how you say it

Answers

Answer:

Because the things you say and how you say it can determine whether or not you sell an item, make a deal with another company and things of that nature.  Hope this helps!!

Because you have to be taken serious in business so that’s how it’s different

Joanna is a qualified network specialist and has worked in this role for about six years. Her manager recommends that she enhance her qualifications for career advancement in the same role. What additional certifications can Joanna aim for? SAS Certified Base

Answers

Answer:

Cisco's CCENT

Cisco's CCNA

Explanation:

Since in the question it is mentioned that Joanna who is a  qualified network specialist and has worked for six years also her manager suggest her to enhance her qualification so that the career could be better due to which she can gets the better package and opportunity as compared to before

Therefore the additional certification that needed is CCENT and CCNA and the same is to be considered. These are the networking certifications.

in which grades do students typically take the PSAT?
A. Ninth and tenth grades
B. Eighth and ninth grades
O C. Tenth and eleventh grades
O D. Eleventh and twelfth grades

Answers

B eighth and ninth grade

B. Eighth and Ninth grade.

Assignment 3: Chatbox python coding
I just need something real simple that follows the criteria in simple coding

Answers

In python:

import random

good_responses = (["That's cool!", "Wow!", "That's great to hear!", "Tell me more"])

bad_responses = (["I'm sorry", "That sucks!"])

first_name = input("What's your first name? ")

last_name = input("What's your last name? ")

print(f"Hello {first_name} {last_name}, nice to meet you!")

age = int(input(f"How old are you, {first_name}? "))

if age > 17:

   print("Wow, you're old enough to vote!")

else:

   print("Quite young, aren't you.")

   

color = input("What's your favorite color? ")

print(good_responses[random.randint(0, 3)])

feeling = input("How are you feeling? (sad/happy) ")

if feeling == 'sad':

   print(bad_responses[random.randint(0, 1)])

else:

   print(good_responses[random.randint(0, 3)])

print(f"It's been nice chatting with you, {first_name}!")

I hope this helps!

if you could bring any fictional character to life who would it be and why

Answers

Answer:

someone helpful like: saitama or any hero from any manga, except eryn, spooky.

Explanation:

Answer:

bilbo baggins

Explanation:

huge hobbit fan

1.5 code practice: question 4 edhesive

Answers

print(" \"Computer Science is no more about computers ")
print(" than astronomy is about telescopes\" ")
print ("- Edsger W. Dijkstra")

Pepsi or Coke B)
Or other

Answers

Answer:

Out of Pepsi or Coke, I gotta go with Coke, but in general any soda I would choose Orange Fanta.

Answer:

I prefer cream soda dr. pepper. But out of Pepsi and Coke, I'd choose Coke but I don't really like either.

Explanation:

who invented the computer? ​

Answers

Answer:

Charles Babbage invented computer

Brainliest will be given

Answers

Answer:

c.

Explanation:

Answer:

C

Explanation:

What is a server OS used for?

O Handling requests and supplying responses

O Performing one task, such as in an STM machine

O Running a permanent system, like the timing controls in a washing machine

O Running multiple operating systems on a computer system.​

Answers

Answer:

Handling requests and supplying responses

Server Operating Systems are used to run on servers that operate within a client to handle the requests of the client computers on the network

Give two reasons why an IT manager consider using a cloud software?​

Answers

Answer:

Cloud offers better insight.In a world awash in structured and, increasingly, unstructured data, 54% of leading organizations are using analytics to derive insights from big data, which helps them target customers and product opportunities more effectively.

Cloud helps collaboration. Cloud allows work to be accessed from multiple devices and from anywhere, which in turns makes it much easier for teams to collaborate on shared data.

Explanation:

Type the correct answer in the box.
Which function will display 6 as the output in the following formula?
C1*(C2+B1)
where C1 is 6, C2 is 2, and B1 is 4
___.

Answers

Answer:

3

Explanation:

A program is written to compute the sum of the integers from 1 to 10. The programmer, well trained in reusability and maintainability, writes the program so that it computes the sum of the numbers from k to n. However, a team of security specialists scrutinizes the code. The team certifies that this program properly sets k to 1 and n to 10; therefore, the program is certified as being properly restricted in that it always operates on precisely the range 1 to 10. List different ways that this program can be sabotaged so that during execution it computes a different sum, for example, 3 to 20.

Answers

Answer:

See explanation section

Explanation:

See the program at the end of this solution

The program can be sabotaged if the source file is altered before running the program.

Take for instance,

Someone changes

for(int i =k;i<=n;i++)

to

for(int i =3;i<=20;i++)

This implies that no matter the user input, the program will only calculate the sum of 3 to 20

It is also possible that the program is altered by an external process.

Take for instance;

n = 10

k = 1

And the sum has been calculated for the range of k = 1 to 5.

Then the program is altered by an external process.

15 (sum of 1 to 5) will be displayed instead of 55 (sum of 1 to 10)

Program written in C++

#include<iostream>

using namespace std;

int main() {

int k.n,total=0;

cin>>k;

cin>>n;

//Assume k will always be less than n

for(int i =k;i<=n;i++) {

total+=i;

}

System.out.print(total);

return 0;

}

It’s Edhesive test 2 question 3 I’m confused help please?

Answers

Answer:

"This would cause an error: an integer variable cannot store a string"

Explanation:

The user cannot put letters into an integer line

Can anyone help me I’m giving 11 points

Answers

#1 pairs with D.

#2 pairs with A.

#3 pairs with B.

#4 pairs with C.

I hope this helps!

One pairs of D would be the analysis

HELP ME!!!

Complete the sentence. (2 words) _____ _____ Each packet is addressed to the recipient's .

Answers

Answer:

I'd like to say home address

Explanation:

Home address Each packet is addressed to the recipient's.

What is address?

on which to engrave delivery instructions. a letter's address. To assign responsibility to another party such as an organization or factor: to concentrate one's efforts or attention.

A1. A person's address, which includes their home and workplace addresses as well as the street name and house number where they live or work. a change in tone to pay attention to or address a worry or problem: We'll talk about that at our next meeting.

An address, which is a collection of information presented in a mostly standardized fashion and typically employs political boundaries and street names as references, identifies the location of a building, apartment, or other structure or a plot of land.

Thus, it is Home address.

For more information about address,  click here:

https://brainly.com/question/29065228

#SPJ2

♥my phone is super cracked and i need 30 dollars to fix it. i'm 14. does anyone know how i can make 30 dollars really fast without taking those dumb surveys? i really need help.♥

Answers

Answer:

hi u could sell some old stuff online?

help a nieghbor?

lemonade stand?

Explanation:

1. Why would a designer use thumbnail images?
O a large number of images are needed
O to link to the original full-quality image
O to cut down on loading times
O all of the above

Answers

Answer:

The answer to this question is given below in the explanation section. The correct answer is All of the above.

Explanation:

First, we need to know what is thumbnail images.

The definition of the thumbnail is "A thumbnail is an image with a reduced file size that is used as a placeholder for full-sized multimedia content."

So the answer to this question is all of the above options mentioned in the question.

Designers uses thumbnail images because:

A large number of images are needed:

For websites and applications, the designer uses a large number of thumbnail in their application. Because websites require fast loading the pages and images so in e-commerce websites a large number of thumbnails images are used.

To link to the original full-quality image:

Thumbnail is the compressed view of original images that are used in a placeholder on a website.

To cut down on loading time:

The biggest advantage of thumbnail images is their reduced size to the original image. A website will have a significantly faster loading time if its images and videos initially displayed in a thumbnail.

While the user will decide for themselves which thumbnail content they want to see and click on it to load the original thumbnail content.

Other Questions
Simplify the expression.(45) (5x6) The British viewed Jerry Adams as aterrorist and the Irish as a hero? Explain thereasons why. And knowing Jerry Adams past andpresent how do you view him? A slow steady rainstorm lasted all day the rain was falling at a constant rate. write an equation that relates how much rain has fallen and how long it has been raining.How long will it take for 5 cm of rain to fall? In the federal and state levels of government, which branch is responsible for passing the budget before having it signed by an executive?A.joint branchB.judicial branchC.official branchD.legislative branch Line 25 Social support can broadly be defined as the perception of meaningful relationships that serve as a psychological resource 25 during tough times. Line 26 More specifically, this means emotional support, such as expressions of compassion, and may include access to information or other assistance.As used in line 26, " expressions " most nearly means A. demonstrations. B. declarations. C. revelations. D. look The new interactive technologies are not enough to cement a relationship, because companies need to change their behavior toward a customer and not just their communication. Explain what this statement means. Do you agree or disagree? why did the United States sign the Jay treaty with Britain 41 A store sells new video games for $55 each. Used video games sell for $12 each. Jacob isbuying 3 new video games and x used video games. Which equation can be used to find y,the total price Jacob must pay in dollars?A y = 12x + 55By = 12x + 165Cy 55x + 12Dy - 165x + 12B WILL MARK BRAINLIEST!! A: My mother, my step father, my brother Giuseppe, and my two sisters...clustered on the foredeck...B. The steamer Florida, fourteen days out of Naples, filled to capacity with 1600 natives of Italy...C. The voyage was an ordeal, but it was worth it. They were on their way to America.D. My first impressions of the New World will always remain etched in my memory... Name an animal that both direcrly and Im direcrly benefits humans what is negative 11.0 minus positive 3.5 50 POINTS! HELP ME PLZZ I NEED HELP WITH THIS! what is 7/12 - 2/12 = The degree to which two separate structures that are closed together can be distinguished . SOMEONE HELP ME IM AHOUT TO CRY I DONT UNDERSTAND 2) What advantages do corporations have over earlier forms of business? PLEASEE HELP ME i cant do i eill give brainlist How did the ideas of the Enlightenment challenge the authority of the 17th and 18th centuries? Question 2(Multiple Choice Worth 5 points)Read the speech and answer the question.Voluntourism: An Opportunity Too Good to be TrueA Speech to the Student Body of Evergreen High[1] Picture this: It's Spring Break, and you fly off to some country where there's lush rainforests and beautiful, blue coastlines to explore. There's also people in need, so you decide to blend your vacation with volunteering. Volunteering as a tourist, or voluntourism, seems like a great way to explore new regions and help people at the same time. However, this "volunteer plus travel" experience can actually harm local communities. While many teens might view traveling and volunteering abroad as a worthwhile adventure, there are more genuine and effective ways to make a difference.[2] Most would agree that volunteering in general is a worthy use of time. However, what if you found out the children you are "helping" are actually being kept in poor conditions so voluntourists will spend money to come to the local area? Dale Rolfe, a supporter of ethical voluntourism, explains the shocking reality that "Animal sanctuaries and orphanages are often manufactured for the voluntourist...encouraging a cycle of exploiting the very animals and children the volunteers are trying to help."[3] Proponents of the "volunteer plus travel" experience also argue that traveling to new places builds character and is a valuable way to learn about different cultures. With voluntourism, however, participants often pursue experiences that are all about them. For example, they sign up to build a school for a gold star on their resume, but they have no real building skills and take jobs away from local construction workers (Schulten). Or, they arrive to teach English but instead take selfies with the locals. One world traveler and ethical voluntourist believes voluntourism "can perpetuate small minded views of the world by taking insulated, fake, and structured experiences and selling them as unabridged and eye opening" (Carlos). The voluntour experience is a mirage. The voluntourist's eyes are not opened to real life at the destination, and lasting change is not achieved.[4] If you want a genuine experience where you can see a lasting impact, there are better options than voluntourism. You can volunteer in your local community. Give an hour every week to your town's animal rescue. Serve monthly dinners to the homeless. Be a reliable, positive influence on a child who needs a mentor. Studies show that volunteering and forming lasting relationships with those you help has a positive impact on your physical and emotional health. In fact, blood pressure is reduced, memory is improved, and rates of depression are reduced (Michaels).[5] There is another reason to look into alternatives to voluntourism. Did you know the average "voluntour" travel package costs $3,400 (Rolfe)? Could that travel money be better spent? If the world's citizens are your passion, it could go to an international organization. If you care about education, your funds can be used to buy books for students in faraway lands. If you want villagers to have clean water, contribute funds to local efforts to dig wells. If you want to experience a different culture, travel to the country as a guest, and learn from the locals how you can best help them after you've returned home. But do not voluntour.[6] In reality, there are better ways to make a difference. Voluntourism might appear to be an adventure that blends travel and helping others, but it does little except provide a costly, superficial experience that might actually do more harm than good. So, volunteer where you are most needed-at home, where you can stay to see the job through and form genuine, lasting relationships. Choose a beautiful coastline closer to home and send the travel money you saved to an international organization that will put it to good use. Whatever you do, don't turn someone else's hardship into your vacation.Identify the two strategies the speaker uses to develop the point that people who voluntour often have selfish motivations. Examples Metaphor Repetition Stories Statistics What did the preamble to the Declaration of Independence say?