___ defines a series of standards for encoding audio and video in digital form for storage or transmission. Most of these standards include compression, often lossy compression.a) JPEG b) ANSI c) ISO d) MPEG

Answers

Answer 1
Answer:

Answer:

d) MPEG

Explanation:

MPEG stands for Moving Picture Experts Group.

It defines standards for audio and video compression on digital form for storage and transmission.

  • JPEG (Joint Photographic Experts Group)
  • ANSI (American National Standards Institute)
  • ISO ( International Organization for Standardization)

are also international standards but they are not related to dogotal video compression.


Related Questions

Write a program that can be used to assign seats for a commercial airplane. The airplane has 13 rows, with six seats in each row. Rows 1 and 2 are first class, rows 3 through 7 are business class, and rows 8 through 13 are economy class. Your program must prompt the user to enter the following information: a. Ticket type (first class, business class, or economy class)b. Desired seatSo far the code I have is ... now can I go about finishing to retreive the user input ? (This is for C++)#include #include using namespace std;int main(){ int r, c; char seat_resvr; char tic_type; char availability[13][6], reserved[2]; int row_num, col_num; char seats; cout << "A program that lets you choose your seating arrangement on an airplane"; cout << endl; char A[13][6]; for (int r = 0; r < 13; r++) { for (int c = 0; c < 6; c++) A[r][c] = '*'; } /*int row, seat; cin >> row >> seat; A[row - 1][seat - 1] = 'X';*/ cout << " A B C D E F" << endl; for (int r = 0; r < 13; r++) { cout << "Row" << setw(3) << r + 1 << " "; for (int c = 0; c < 6; c++) cout << A[r][c] << ' '; cout << endl; } cout << endl << "* -- available seat" << endl << "X -- occupied seat" << endl << endl << "Rows 1 and 2 are for first class passengers." << endl << "Rows 3 through 7 are for business class passengers." << endl << "Rows 8 through 13 are for economy class passengers." << endl; cout << "To reserve a seat enter Y/y (Yes), N/n(No):" << endl; cin >> seat_resvr; reserved[2] = 'X'; return 0;}
What two benefits are a result of configuring a wireless mesh network? Check all that apply. 1. Performance 2. Range 3. WiFi protected setup4. Ad-hoc configuration​
Allows an administrator to query a dns database and find the host name associated with a specific ip address or
An attempt to generate a large number of session IDs and have a server process them as part of a session hijack attempt is known as what type of attack
Write an application that calculates and displays the amount of money a user would have if his/her money could be invested at 5% interest for one year. Create a method that prompts the user for the starting value of the investment and returns it to the calling program. Call a separate method to do the calculation and return the result to be displayed. Save the program as Interest.java

Your app needs to store the following information. For each type of information, decide whether you would use an array or a variable to store it:(a) All the messages a user has sent(b) The highest score a user has ever reached on the app(c) A username and password to unlock the app

Answers

Answer:

Array: (a) All the messages a user has sent.

Variable: (b) The highest score a use has reached on the app. (c) A username and password to unlock the app.

Explanation:

An array generally has more than one value whereas a variable can only contain a single value at any particular point in time. In addition, a variable has a limit whereas an array does not have any maximum limit. Therefore, it can be concluded that option (a) will be stored as an array while options (b) and (c) will be stored as variables.

A network engineer is troubleshooting a small LAN network with one border router, GW01 that connects to the Internet Service Provider’s (ISP) network. GW01 uses its Serial 0/2/1 interface to connect to the ISP’s router. Everyone on the LAN network lost connectivity to the Internet. Upon troubleshooting the issue, the network engineer notices the following message after typing show ip route. Gateway of last resort required but not set. What do you suggest the network engineer do to rectify this issue? Assume the problem is only on the organization’s LAN side of the network. Provide as much information as possible including specific commands and all required parameters.

Answers

Answer:

Create a default route on the border router. Check the NAT configuration and network addresses.

Explanation:

The LAN or local area network is a network meant for a small geographic area, ranging from a small home office to office building.

For a LAN to be connected to the internet, it is subscribed to a ISP. The ISP provides the internet/ global WAN resources to the LAN. The border router or stub is configured with a gateway of last resort or default route to route packets to the WAN network and a Network address translation, NAT, is used for a large LAN.

The syntax for default route configuration on the border router is;

Router(config)# IP route 0.0.0.0 0.0.0.0 s0/0/1

Employee names are stored using a maximum of 50 characters. This information is an example of which of the following?Meta-data

Record instance

Data model

Data retrieval

Answers

Answer: Data model

Explanation: Data model is the arrangement of the information in the form of table structure to maintain it in the form of database.They help in the keeping the entities in the sequence and can be tracked when required.Example- vendors records,customer record etc.

Other options are incorrect because the data retrieval is the regaining of the data from database, record instance is the parts of the database records  and meta data give knowledge about other data.

I need help please?!!!

Answers

Answer:

I can't give an answer if you don't tell me what you need help with

Explanation:

I can't give an answer if you don't tell me what you need help with

People convicted of cyberbullying in most statesface no punishment for their actions.
face varying degrees of punishment.
are taught how to use technology positively.
are forced to do community service.

Answers

Answer: The Answer is B. face varying degrees of punishment.

Hope this helps! ^^ (also i know this is the right answer because i got it correct)

Answer:

b

Explanation: the punishment depends on the severeness , so we dont know the exact punishment

What should a web page designer consider when choosing between fixed positioning and absolute positioning?O Fixed positioning is the HTML default element flow, while absolute positioning is relative to the browser window.
O Fixed positioning is an offset placement from the normal element layout, while absolute positioning is the HTML
default element flow
Fixed positioning is relative to the browser window, while absolute positioning is located at a specific place on a
web page.
Fixed positioning is located at a specific place on a web page window, while absolute positioning is an offset
placement from the normal element layout.

Answers

Answer:

Fixed positioning is relative to the browser window, while absolute positioning is located at a specific place on a web page.

Answer:

c

Explanation: trust me bro