Which item can you add using the tag?
OA.
a movie
OB.
an image
OC.
a documentary
OD.
a music file

Answers

Answer 1

Answer:

The answer to this would be D: A music file

Explanation:

Since this tag is is <audio>, all of the other ones are visual and have sound. This means that a tag would need to be able to display visuals as well. Making a music file the only item you would be able to include with the given tag.


Related Questions

You will write code to manipulate strings using pointers but without using the string handling functions in string.h. Do not include string.h in your code. You will not get any points unless you use pointers throughout both parts.
You will read in two strings from a file cp4in_1.txt at a time (there will be 2n strings, and you will read them until EOF) and then do the following. You alternately take characters from the two strings and string them together and create a new string which you will store in a new string variable. You may assume that each string is no more than 20 characters long (not including the null terminator), but can be far less. You must use pointers. You may store each string in an array, but are not allowed to treat the string as a character array in the sense that you may not have statements like c[i] = a[i], but rather *c *a is allowed. You will not get any points unless you use pointers.
Example:
Input file output file
ABCDE APBQCRDSETFG
PQRSTFG arrow abcdefghijklmnopgrstuvwxyz
acegikmoqsuwyz
bdfhjlnprtvx

Answers

Solution :

#include [tex]$< \text{stdio.h} >$[/tex]

#include [tex]$< \text{stdlib.h} >$[/tex]

int [tex]$\text{main}()$[/tex]

{

[tex]$\text{FILE}$[/tex] *fp;

[tex]$\text{fp}$[/tex]=fopen("cp4in_1.txt","r");

char ch;

//while(1)

//{

while(!feof(fp))

{

char *[tex]$\text{s1}$[/tex],*[tex]$\text{s2}$[/tex],*[tex]$\text{s3}$[/tex];

[tex]$\text{s1}$[/tex] = (char*) [tex]$\text{malloc}$[/tex]([tex]$20$[/tex] * [tex]$\text{sizeof}$[/tex](char));

[tex]$\text{s2}$[/tex] = (char*) [tex]$\text{malloc}$[/tex]([tex]$20$[/tex] * [tex]$\text{sizeof}$[/tex](char));

[tex]$\text{s3}$[/tex] = (char*) [tex]$\text{malloc}$[/tex]([tex]$40$[/tex] * [tex]$\text{sizeof}$[/tex](char));

[tex]$\text{int i}$[/tex]=0,j=0,x,y;

while(1)

{

ch=getc(fp);

if(ch=='\n')

break;

*(s1+i)=ch;

i++;

}

while(1)

{

ch=getc(fp);

if(ch=='\n')

break;

*(s2+j)=ch;

j++;

}

for(x=0;x<i;x++)

{

*(s3+x)=*(s1+x);

}

for(y=0;y<j;x++,y++)

{

*(s3+x)=*(s2+y);

}

for(x=0;x<i+j;x++)

{

printf("%c",*(s3+x));

}

printf("\n");

getc(fp);

}

}

Write a Python class that inputs a polynomial in standard algebraic notation and outputs the first derivative of that polynomial. Both the inputted polynomial and its derivative should be represented as strings.

Answers

Answer:Python code: This will work for equations that have "+" symbol .If you want to change the code to work for "-" also then change the code accordingly. import re def readEquation(eq): terms = eq.s

Explanation:

HURRY- I’ll give 15 points and brainliest answer!!
How do you insert text into a presentation??
By selecting text from the insert menu
By clicking in the task pane and entering text
By clicking in a placeholder and entering text
By drawing a text box clicking in it and entering text
(This answer is multiple select)

Answers

Answer:

the last one the drawing thingy:)))

Parts of a computer software

Answers

Answer:

I think application software

utility software

networking software

The city of Green Acres is holding an election for mayor. City officials have decided to automate the process of tabulating election returns and have hired your company to develop a piece of software to monitor this process. The city is divided into five precincts. On election day, voters go to their assigned precinct and cast their ballots. All votes cast in a precinct are stored in a data file that is transmitted to a central location for tabulation.

Required:
Develop a program to count the incoming votes at election central.

Answers

Answer:

Explanation:

The following program asks the user to enter the precinct number and then loops to add votes until no more votes need to be added. Then it breaks the loop and creates a file called results to save all of the results for that precinct.

precinct = input("Enter Precinct Number: ")

option1 = 0

option2 = 0

while True:

   choice = input("Enter your vote 1 or 2: ")

   if int(choice) == 1:

       option1 += 1

   else:

       option2 += 1

   endVote = input("Vote again y/n")

   if endVote.lower() != 'y':

       break

f = open("results.txt", "w")

f.write("Precinct " + precinct + ": \nOption 1: " + str(option1) + "\nOption 2: " + str(option2))

Write an application that combines several classes and interfaces.

Answers

Answer:

Explanation:

The following program is written in Java and it combines several classes and an interface in order to save different pet objects and their needed methods and specifications.

import java.util.Scanner;

interface Animal {

   void animalSound(String sound);

   void sleep(int time);

}

public class PetInformation {

   public static void main(String[] args) {

       Scanner scnr = new Scanner(System.in);

       String petName, dogName;

       String dogBreed = "null";

       int petAge, dogAge;

       Pet myPet = new Pet();

       System.out.println("Enter Pet Name:");

       petName = scnr.nextLine();

       System.out.println("Enter Pet Age:");

       petAge = scnr.nextInt();

       Dog myDog = new Dog();

       System.out.println("Enter Dog Name:");

       dogName = scnr.next();

       System.out.println("Enter Dog Age:");

       dogAge = scnr.nextInt();

       scnr.nextLine();

       System.out.println("Enter Dog Breed:");

       dogBreed = scnr.nextLine();

       System.out.println(" ");

       myPet.setName(petName);

       myPet.setAge(petAge);

       myPet.printInfo();

       myDog.setName(dogName);

       myDog.setAge(dogAge);

       myDog.setBreed(dogBreed);

       myDog.printInfo();

       System.out.println(" Breed: " + myDog.getBreed());

   }

}

class Pet implements Animal{

   protected String petName;

   protected int petAge;

   public void setName(String userName) {

       petName = userName;

   }

   public String getName() {

       return petName;

   }

   public void setAge(int userAge) {

       petAge = userAge;

   }

   public int getAge() {

       return petAge;

   }

   public void printInfo() {

       System.out.println("Pet Information: ");

       System.out.println(" Name: " + petName);

       System.out.println(" Age: " + petAge);

   }

   //The at (email symbol) goes before the Override keyword, Brainly detects it as a swearword and wont allow it

   Override

   public void animalSound(String sound) {

       System.out.println(this.petName + " says: " + sound);

   }

//The at (email symbol) goes before the Override keyword, Brainly detects it as a swearword and wont allow it

  Override

   public void sleep(int time) {

       System.out.println(this.petName + " sleeps for " + time + "minutes");

   }

}

class Dog extends Pet {

   private String dogBreed;

   public void setBreed(String userBreed) {

       dogBreed = userBreed;

   }

   public String getBreed() {

       return dogBreed;

   }

}

You are responsible for a rail convoy of goods consisting of several boxcars. You start the train and after a few minutes you realize that some boxcars are overloaded and weigh too heavily on the rails while others are dangerously light. So you decide to stop the train and spread the weight more evenly so that all the boxcars have exactly the same weight (without changing the total weight). For that you write a program which helps you in the distribution of the weight.
Your program should first read the number of cars to be weighed (integer) followed by the weights of the cars (doubles). Then your program should calculate and display how much weight to add or subtract from each car such that every car has the same weight. The total weight of all of the cars should not change. These additions and subtractions of weights should be displayed with one decimal place. You may assume that there are no more than 50 boxcars.
Example 1
In this example, there are 5 boxcars with different weights summing to 110.0. The ouput shows that we are modifying all the boxcars so that they each carry a weight of 22.0 (which makes a total of 110.0 for the entire train). So we remove 18.0 for the first boxcar, we add 10.0 for the second, we add 2.0 for the third, etc.
Input
5
40.0
12.0
20.0
5. 33.
0
Output
- 18.0
10.0
2.0
17.0
-11.0

Answers

Answer:

The program in C++ is as follows:

#include <iostream>

#include <iomanip>

using namespace std;

int main(){

   int cars;

   cin>>cars;

   double weights[cars];

   double total = 0;

   for(int i = 0; i<cars;i++){

       cin>>weights[i];

       total+=weights[i];    }

   double avg = total/cars;

   for(int i = 0; i<cars;i++){

       cout<<fixed<<setprecision(1)<<avg-weights[i]<<endl;    }

   return 0;

}

Explanation:

This declares the number of cars as integers

   int cars;

This gets input for the number of cars

   cin>>cars;

This declares the weight of the cars as an array of double datatype

   double weights[cars];

This initializes the total weights to 0

   double total = 0;

This iterates through the number of cars

   for(int i = 0; i<cars;i++){

This gets input for each weight

       cin>>weights[i];

This adds up the total weight

       total+=weights[i];    }

This calculates the average weights

   double avg = total/cars;

This iterates through the number of cars

   for(int i = 0; i<cars;i++){

This prints how much weight to be added or subtracted

       cout<<fixed<<setprecision(1)<<avg-weights[i]<<endl;    }

I want to know the basic of Excel

Answers

Answer:

Use Pivot Tables to recognize and make sense of data.

Add more than one row or column.

Use filters to simplify your data.

Remove duplicate data points or sets.

Transpose rows into columns.

Split up text information between columns.

Use these formulas for simple calculations.

Get the average of numbers in your cells.

What are some examples and non-examples of digital security?

Answers

Answer:

Devices such as a smart card-based USB token, the SIM card in your cell phone, the secure chip in your contactless payment card or an ePassport are digital security devices

Note that common skills are listed toward the top, and less common skills are listed toward the bottom. According to O*NET, what are common skills needed by Secondary School Special Education Teachers? Check all that apply.

instructing
installation
learning strategies
repairing
active listening
technology design

Answers

Answer:

A. Instucting   C. Learning Strategies   E. Active Listening

Explanation:

Got it right on assignment

Other Questions
PLZ help me on this ASAP which one is it??? Its due in a couple of mins :((( ILL MARK BRAINILIST AND TO WHO EVER PUTS BIT. WHATEVER STOP I CANT USE THAT. What should you do when you have finished taking notes? (5 points) Question 10 options: 1) put them away for at least several weeks 2) review them to learn important information 3) let a friend copy them down instead of reading 4) move on to another book and new notes need help writing a Conclusion just that. This is what I got so far And need to look something like this the example is my teachers how was the oil crisis resolved? In recent decades, lobbying has become a powerful force in the political world.Lobbyists frequently meet behind closed doors with senators, lawmakers, andcongressmen and women to push influential legislation through the congressionalprocess. VWhich sociological perspective would be most interested in examiningthe lobbying movement? Why? Which of the following patients should be admitted as an inpatient at ahospital?A. Katie's having her tonsils removed and will be able to go homeshortly after she wakes up from surgery.B. Phil's having his blood sugar tested and having his annualphysicalc. Salvatore's having a hip transplant and will need to be closelymonitored for a week.D. Chen's having chest X-rays taken to determine if he has a brokenrib.SUBMIT PLEASE ANSWER IVE BEEN UP SINCE YESTERDAY APPARENTLY AND ITS 2:19 A.M. I am tired and TRYING TO get stuff finished. PRONTOIn a Notes:TM document, your reactions to the text appear in the right-hand column appear in the left-hand column are written in the center of the page are written in the margins of the text Can you define these words?? Thanks!CelluloseChlorophyllChloroplastBryophytePterophyteGymnospermConeAngiospermFlowerCuticleVascular tissueXylemPhloemRootsRoot hairsStemsLeavesPhotosynthesis 1. I can hear the steakon the hot plate.(1) brewing(2) thundering (3) sizzling(4) hissing2. Please(1) sealthe curtains - it is getting too bright.(2) draw(3) lift(4) close()3. The bright(1) hydrogensigns on the streets have attracted my attention.(2) helium(3) rainbow(4) neon()(4)4. He is very particular about personal(1) brightness (2) hygiene(3) spotless(4) hype( )5. I use a wooden(1) cupto make mooncakes.(2) mould(3) cutter(4) shape6. I can hear the patientin pain.(1) mumbling (2) grumbling (3) moaning(4) groaning( )7. The dessert for today is strawberry(1) mousse(2) ice(3) cream(4) gel)8. She(1) performedaround the office with her new outfit.(2) showed (3) paraded(4) sashayed(9. She is so fascinated by the(1) exotic(2) tropicalEast that she eagerly devours books on it.(3) elusive(4) erotic(10. It seems that a conflict between the two parties is(1) inevitable (2) evident (3) unapproachable (4) indefinite11. She is still infor her father so she wears black all the time.(1) remembrance (2) admiration (3) moaning (4) mourning(12. Theresa has been over what to do with the illegitimate baby.(1) cracking (2) considering (3) worrying (4) agonising If x3=125 and y3=8, what is the value of yx What do you plan to do this weekend ! ( Giving out Branliest ) Why did no American president in the 18th and 19th centuries serve for more than two terms? A computer manufacturer built a new facility for assembling computers. There were construction and new equipment costs. The company paid for these costs and made combined profits of $10 million after 4 years, while profits increased$7.5 million per year. Select the correct graph of this function state 3 reasons why should teenagers read newspapers or listen to the news I need an answer to this "Hinky Pinky":A top-of-the-line prisoner A type of stress that is never ending and can damage your health is 8. The speed of adelivery truckvaries inverselywith the time ittakes to reach itsdestination. If thetruck takes 3 hoursto reach itsdestinationtraveling at aconstant speed of50 miles per hour,how long will ittake to reach thesame locationwhen it travels at aconstant speed of 60 miles per hour?2 hours2 1/3 hours 2.5 hours2 2/3 hours #6"Poem" is a free verse poem because it _____.contains no imageryuses elaborate languageendorses a political themehas no fixed rhyme or meter infection can be spread through:a) blood and certain body fluids.b) airborne droplets.c) both of the above Randy is playing a number game. Beginning with the number 6, he adds 4, multiples by5, and then divides by -10. He then subtracts 2. What number does he find at the end ofthe game?A. -7B. -3.6C. -4.6D. -5