Wwhat is the main difference between structured and unstructured data?.

Answers

Answer 1

Structured data and unstructured data are two types of data. Structured data refers to the data that has a particular format, including the data in rows and columns, whereas unstructured data doesn't have a particular format. The main differences between structured and unstructured data are mentioned below:

Structured data:

Structured data is highly organized and easily searchable. In structured data, data is usually presented in a format that is consistent, which makes it easier to understand and analyze. Structured data is usually stored in a database, making it easily accessible. Structured data is primarily used in traditional database management systems. Examples of structured data are bank transactional data, sensor data, and enterprise resource planning systems (ERP).Structured data is easy to search and organize.

It is easy to analyze with the help of tools like SQL. Structured data is easy to store and maintain. It's mostly static and doesn't change much. It has a well-defined structure. It is relatively easier to handle and process. Unstructured data: Unstructured data is the opposite of structured data. Unstructured data has no particular format or structure. It's not organized in a specific way, and it's not easily searchable.

Unstructured data is usually in the form of text, audio, and video. Examples of unstructured data are images, social media data, videos, and email messages. Unstructured data is challenging to search and organize. It is tough to analyze using traditional tools. Unstructured data can be in different formats and is mostly dynamic. It doesn't have a predefined structure. It is relatively harder to handle and process.

To know more about Structured data visit:

https://brainly.com/question/32132541

#SPJ11


Related Questions

Read-only memory (ROM)is temporary and volatile. RAM is more permanent and non-volatile. True or False?

Answers

The given statement "Read-only memory (ROM) is temporary and volatile. RAM is more permanent and non-volatile" is False.

What is Read-only memory (ROM)?

Read-only memory (ROM) is a type of computer memory that is permanent and non-volatile. It stores data that can't be modified once it has been written. This means that any data that has been written to ROM can't be changed or overwritten.

What is RAM?

RAM is the primary memory of a computer that is used to store data temporarily. It's a volatile memory, which means that when the computer is turned off, any data stored in RAM is lost. When a program is executed, the data is loaded into RAM for fast access by the processor.

Why is ROM referred to as non-volatile and RAM as volatile?

ROM is non-volatile since the data stored in it can't be changed or overwritten, and it remains there even when the computer is turned off. RAM is volatile because the data stored in it is lost when the computer is turned off.

Learn more about Read-only memory (ROM) at https://brainly.com/question/29518974

#SPJ11

Que compone una maquina Rube Goldberg (operadores mecánicos- maquinas simples – mecanismos)

Answers

Answer:

dominoes, fans, PVC pipe, magnets, duct tape, marbles, cups or bowls, miniature toy cars, paper towel tubes, string.

------------------------------------------------------------------------------------------------------------

dominó, abanicos, tubos de PVC, imanes, cinta adhesiva, canicas, tazas o cuencos, carros de juguete en miniatura, tubos de toallas de papel, cuerdas.

Explanation:

Write a pseudocode algorithm that uses the For Each loop to display all of the
values in the following array:
Constant Integer SIZE = 10
Declare Integer values[SIZE] = 1, 2, 3, 4, 5, 6, 7, 8, 9, 10

Answers

so i’m not sure it’s making me answer a question

Here is a pseudocode algorithm that uses the For Each loop to display all of the values in the given array:

```

declare a constant integer named SIZE and set its value to 10

declare an integer array named values with SIZE elements and initialize it with the values 1, 2, 3, 4, 5, 6, 7, 8, 9, and 10

for each integer value in values do

display the value

end for

```

This algorithm first declares a constant integer `SIZE` and an integer array `values` with `SIZE` elements, initialized with the given values. It then uses a For Each loop to iterate through each value in the `values` array and display it. The loop will execute 10 times, once for each element in the `values` array.

Payton bought a couple new dog toys for her puppy. The bone she bought cost $5.25 and the frisbee cost $6.75. About how much did the toys cost?

Answers

All together the toys cost 12 dollars

Answer:

$12

Explanation:

                          1 00

                          5.25

                       + 6.75

                          -------

                          12.00

HELP ME PLEASE PLSSSS HOW DO YOU GET RID OF THIS LINE?

HELP ME PLEASE PLSSSS HOW DO YOU GET RID OF THIS LINE?

Answers

Explanation:

which line pls. I can't see the line

How did u get the line the first place? Have u tried to restart ur device?

URGENTTTT

What do you think would make a specific game different if it were developed for a particular platform?

Answers

When it comes to game development, the platform on which a game is developed can have a significant impact on its overall experience.

For example, a game developed specifically for a mobile platform may have different controls, graphics, and gameplay mechanics compared to a game developed for a console or PC. Mobile games are often designed to be played in shorter bursts and with touch controls, while console and PC games tend to have more complex gameplay mechanics and more immersive graphics. Similarly, virtual reality games are designed to be played with specialized headsets and controllers that provide a more immersive experience. Overall, the platform on which a game is developed can greatly influence its gameplay, controls, graphics, and overall experience, making each game unique and tailored to the platform it is designed for.

To know more about graphics visit:

https://brainly.com/question/14191900

#SPJ11

How do you answer this ?

How do you answer this ?

Answers

Answer:

Just put True or false for your answer

Explanation:

Use a Dictionary

Write a Java program which declares and populates an array with some values (at least 5 values). Then it should call a method passing it the array. The method should modify the array values using a loop. Lastly, after the program calls the method, it should display the modified array contents to the console.

Answers

Answer:

CODE IN JAVA :

import java.util.*;

public class Main

{

public static void modifyArray(int[] arr, int n){

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

arr[i] = -1; // each value is modified to -1

}

}

public static void main(String[] args) {

int n;

System.out.print("Enter size of array(atleast 5): ");

Scanner sc = new Scanner(System.in);

n = sc.nextInt();

int array[] = new int[n]; // array with size n declared

// populating the array

System.out.print("Enter array elements: ");

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

array[i] = sc.nextInt();

}

// modifying array via a function

modifyArray(array, n);

// printing array values after modifiction

System.out.print("Array after modification: ");

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

System.out.print(array[i] + " "); // space separated

}

}

}

Explanation:

What are the five types of alignment in Word? side, middle, top, bottom, and graphing left, center, right, decimal, and bar tab, alt, shift, control, and function page layout, review, view, references, and insert

Answers

Answer:

side, middle, top, bottom, and graphing.

Explanation:

Answer: A. side middle top bottom and graphing

Explanation: Saw it on Edgen.

a. Write a qbasic program to generate the following series: 1, 4, 9, 16, 25
b. 5, 25, 125, 625, 3125
(urgent need for project work.)​

Answers

Here's a QBasic program to generate the series:

Series of squares:

css

Copy code

FOR i = 1 TO 5

   PRINT i * i;

NEXT i

Output: 1 4 9 16 25

Series of powers of 5:

css

Copy code

x = 5

FOR i = 1 TO 5

   PRINT x;

   x = x * 5

NEXT i

Output: 5 25 125 625 3125

In the first program, we use a loop to iterate through the values 1 to 5, and for each value of i, we calculate its square and print it to the console.

In the second program, we set the variable x to 5, and then use a loop to iterate through the values 1 to 5. For each value of i, we print the current value of x, and then update x by multiplying it by 5. This gives us a sequence of powers of 5.

"Having several instances of the same data is called data ______. A) Repetition B) Duplication C) Doubling D) Redundancy"

Answers

Data redundancy is a condition that occurs when several instances of the same data exist within a system, leading to inefficient use of storage space.  The correct option is D.

Data redundancy is one of the database problems that arise when the same piece of data is repeated in multiple areas of a database or in different databases within an organization. It occurs when data is duplicated in several tables or locations within a database or a group of databases.

The following are the consequences of data redundancy:

Wasted space: Redundant data takes up valuable storage space. The more data you store, the more disk space you'll need to store it.Data inconsistencies: Since the same data is stored in multiple locations, inconsistencies can occur when changes are made to the data. These inconsistencies can cause serious problems in a database.Updating complexities: Updating a database with redundant data can be difficult. Since the same data is stored in several locations, updating the data can take a long time and be difficult to accomplish in some situations.

Therefore, data redundancy is a significant issue that must be addressed in database design to avoid unnecessary storage and maintenance expenses.   The correct option is D.

Know more about the Data redundancy

https://brainly.com/question/30020503

#SPJ11

final report of a trial of intensive versus standard blood-pressure 483 control. new england journal of medicine

Answers

The final report of a trial comparing intensive versus standard blood-pressure control was published in the New England Journal of Medicine.

The New England Journal of Medicine published the final report of a trial that examined the effects of intensive blood-pressure control compared to standard blood-pressure control.

The New England Journal of Medicine published the final report of a trial that evaluated the effectiveness of intensive blood-pressure control compared to standard blood-pressure control. This trial aimed to determine the impact of different approaches to blood-pressure management on patient outcomes. The researchers conducted a comprehensive study comparing the two strategies and analyzed the results. The final report, which can be found in the New England Journal of Medicine, provides a detailed analysis of the trial, including the methodology, data collected, and the conclusions drawn from the study. The report serves as an important source of information for healthcare professionals and researchers interested in the topic of blood-pressure control.

To know more about intensive visit:

https://brainly.com/question/14530703

#SPJ11

if a friend asked you to help her decide what internal sabling system to install in her new house, what kinds of questions wouls you ask her to do? why would you ask those questions?​

Answers

Answer:

Assuming you mean *cabling system*

you could ask:

- The architectural structure of the building, which houses for the cabling installation.

- The function of the cabling installation.

- The configuration of an already installed system (upgrades and retrofits).

others

- The cable and connection products.

- The types of equipment the cabling installation will support -- present and future.

- Customer requirement.

_____ Can involve a tremendous amount of horizontal scrolling and require much zooming on small viewports.


A) Open layouts

B) Liquid layouts

C) Fixed layouts

D) Fluid layouts

Answers

Fixed layouts can involve a tremendous amount of horizontal scrolling and require much zooming on small viewports. 

An outline with a fixed width in pixels is known as fixed layout or static layout. As the name proposes, the design is modified to be fixed. Therefore, the width of the elements will remain constant regardless of screen resolution or size. In other words, users will have the same viewing experience on all devices, whether they are smartphones, tablets, computers, or laptops. Based on the assumption that readers browse in resolutions greater than 1024 x 768, the majority of fixed layout eBooks employ a width of 960 pixels.

Fixed layout is preferred by the majority of publishers primarily due to its ease of production from print files. The assurance that the design is viewed by users in the same way as it is by the publisher follows next. Here are a portion of the benefits and impediments of the proper format.

To know more about Fixed layouts visit https://brainly.com/question/13428807?referrer=searchResults

#SPJ4

identify navigation/mission planning information that is sent to the av when the remote pilot uploads a flight plan using telemetry?

Answers

Waypoints, altitude, speed, and other flight characteristics are among the navigation/mission planning details transmitted to the AV (Autonomous Vehicle) when a remote pilot uploads a flight plan utilising telemetry.

What is a geographic location for a flight path identified by the position's latitude, longitude, and altitude programmed in sequence?

A waypoint is a predetermined geographic location that is specified by latitude/longitude coordinates in the context of RNAV (altitude is ignored).

What kind of map do navigators use to draw straight paths for ships and aeroplanes?

Because any straight line drawn on a Mercator chart is also a line of constant course, sometimes known as a rhumb line or loxodrome, the majority of nautical charts employ this projection.

To know more about navigation visit:-

https://brainly.com/question/29630904

#SPJ1

A process that is a goal-direct4ed problem solving activity informed by intended use target domain, materials, cost and feasibili is also know as?

Answers

The process you're referring to is most commonly known as "Design Thinking."

This is an innovative, solution-based approach to solving complex problems, which takes into account the intended use, target domain, material, cost, and feasibility considerations.

Design Thinking is an iterative process that seeks to understand the user, challenge assumptions, and redefine problems in an attempt to identify alternative strategies and solutions. It involves empathizing with the user, defining the user's needs, ideating by generating a range of ideas, prototyping potential solutions, and testing these solutions in the real world. This method allows designers to tackle problems from a user-centric perspective while taking into account practical considerations such as costs and materials.

Learn more about Design Thinking here:

https://brainly.com/question/33410903

#SPJ11

V. ASSESSMENT (Time Frame:
(Learning Activity Sheets for Enrichment, Remediation, or Assessment to be given
Direction: Choose the letter of the correct answer. Use another
1. These are materials or substances such as minerals, fore
used for economic gain.
A. Natural resources
C. Non renewable
B. Renewable resources
D. Minerals
2. In which way can we protect our environment?
A. Littering
C. recycling
B. Polluting
D. contaminating
3. Which of these is the primary cause of land pollution?
A. Improper garbage disposal C. Recycling mate
B. Planting of trees
D. Waste segrega
4. Your community is rich in metallic materials. Which of
conserve such precious mineral deposits?​

Answers

Answer:

1. A. Natural resources

2. C. Recycling

3. A. Improper garbage disposal

4. C. Formulate laws and ordinances to regulate the mining of minerals

Explanation:

Question; Obtained from a similar posted question

1. These are materials or substances such as minerals, forest, water, and fertile land that occur in nature and can be used for economic gain

4. Options

A. Use all of them to earn money

B. Put up tunnels to harvest all metallic minerals

C. Formulate laws and ordinances to regulate the mining of minerals

D. Use dynamite to clear out the area and reveal the mineral deposits

1. A. natural resources

The materials that come from nature and can be found in an area owned by a person and are economically valuable are known as A. natural resources

2. C. recycling

The environment is protected by reducing the consumption of the vital resources that ensure sustainability through the use of C. recycling already produced items as raw materials to produce new items rather than making use of raw materials naturally present in the environment

3. A. improper garbage disposal

Land pollution which is the introduction of potentially harmful, and unsightly materials on the surface soil or under the surface, is caused primarily by A. improper garbage disposal

4. C. Formulate laws and ordinances to regulate the mining of minerals

The metallic materials, which are mineral resources are located under the ground and are extracted from different locations in an area, therefore, they are mined at different times by different methods

To ensure that the precious mineral deposits are conserved, they require laws and ordinance for the regulation of mineral mining

Therefore; the correct option is;

C. Formulate laws and ordinances to regulate the mining of minerals

proponents of the children's internet protection act (cipa) argued that:

Answers

Proponents of the Children's Internet Protection Act (CIPA) argued that it was necessary to protect children from harmful and inappropriate online content.

The Children's Internet Protection Act (CIPA) is a U.S. federal law enacted in 2000. Its primary objective is to safeguard children from accessing explicit or harmful material on the internet, particularly in schools and libraries. Proponents of CIPA put forward several arguments to support the implementation of this legislation.

Firstly, proponents emphasized the importance of shielding children from explicit and inappropriate content that can have detrimental effects on their well-being and development. They argued that children, especially those in educational institutions, should be protected from stumbling upon explicit material or engaging in potentially harmful online activities.

Secondly, proponents believed that CIPA played a vital role in promoting digital citizenship and responsible internet use among children. By implementing filtering mechanisms and internet safety policies, the law aimed to educate children about the potential risks and encourage responsible behavior online. Proponents argued that CIPA provided an opportunity to teach children about appropriate internet usage and protect them from potential dangers, such as cyberbullying and online predators.

Lastly, proponents highlighted the role of CIPA in addressing concerns raised by parents and guardians regarding their children's online experiences. The law aimed to reassure parents that appropriate measures were in place to filter out explicit content and ensure a safer internet environment for their children.

Overall, proponents of the Children's Internet Protection Act believed that it was necessary to establish safeguards to protect children from harmful and inappropriate online content, promote responsible internet use, and address the concerns of parents and guardians.

Learn more about Proponents.
brainly.com/question/988904

#SPJ11

What necessarily happens when a photographer chooses to give either the aperture or the shutter speed priority?


The other of the two settings stays as previously selected.

The other of the two settings is overridden.

The other of the two settings is automatically selected.

The other of the two settings is ignored.

Answers

Answer:

The other of the two settings is automatically selected.

Explanation:

Answer: The other of the two settings is automatically selected.

Explanation:

TRUST

The owner tells you that in the future, CSM Tech Publishing might need system fault tolerance to ensure that there's little or no downtime because this critical application will eventually be accessed at all times of the day and night. For now, he's just concerned about getting the system up and running. You check the existing server's capacity and determine that the new application's memory and disk requirements will likely exceed the existing server's 4 GB capabilities. The owner explains that there's enough budget for a new server, so you should plan for growth. As an aside, he mentions that because all his employees sign in at about the same time, the time it takes to sign in has been increasing. You need to come up with specifications for a new server. Describe some hardware features you plan to recommend for this new server, in particular the CPU architecture, number of CPUs, amount of RAM, and disk system. Explain your answers.

Answers

Answer:

Follows are the solution to this question:

Explanation:

New useful server specifications can be defined as follows:  

Space planning is enough to store units should also be available to handle the current load. The goals shall become converted through strategies Security was its key problem, thus the technology must at least be safeguarded by good chemical stability as well as virus protection.

RAM is also to be improved. Its 8 GB is viewed as good. The amount of redskins would increase performance if they had been increased. Numerous CPUs will be connected to a system for the procedure and is as required.

Its hard drive must be linked to structures with such a temperature of 1-2 TB more than. Besides that, the fault-tolerant equipment, tracking tools, reporting tools, audit tools, and data centers are frequently used.

Company A:

Units in beginning WIP Inventory 4,700

Units started this period 18,400

Units in ending WIP Inventory 7,600

Units Completed ?

Answers

Company A started the period with 4,700 units in the beginning work-in-process (WIP) inventory. Throughout the period, they started 18,400 units. At the end of the period, they had 7,600 units in the ending WIP inventory.



To find out how many units were completed during the period, we can use the following formula:
Units Completed = Units in beginning WIP Inventory + Units started this period - Units in ending WIP Inventory
Plugging in the values given, we have:
Units Completed = 4,700 + 18,400 - 7,600
Simplifying this calculation:
Units Completed = 23,100 - 7,600
Units Completed = 15,500
Therefore, Company A completed 15,500 units during the period.

In summary, to find the units completed, we added the units in the beginning WIP inventory with the units started in the period and then subtracted the units in the ending WIP inventory. This calculation gives us the number of units completed, which in this case is 15,500.

To know more about Company visit:

https://brainly.com/question/30532251

#SPJ11

What is the name of Thompsons computer language?

Answers

Answer:

below

Explanation:

Bon programming language

Answer:

Explanation:

Bon programming language

While writing Multics, Thompson created the Bon programming language

Consider the following recursive method, which is intended to display the binary equivalent of a decimal number. For example,

Answers

The purpose of the recursive method described in the given paragraph is to convert a decimal number to its binary equivalent.

What is the purpose of the recursive method described in the given paragraph?

The given paragraph describes a recursive method that converts a decimal number to its binary equivalent.

The method checks if the decimal number is zero, in which case it returns a blank string. Otherwise, it recursively calls itself with the integer division of the number by 2 and concatenates the remainder of the division to the binary string returned from the recursive call.

The method then returns the binary string.

The example demonstrates how the method is called with a decimal number of 13, and the resulting binary string is displayed, which is "1101".

Learn more about recursive method

brainly.com/question/14367547

#SPJ11

What protocol should couriers follow when cleaning up a non-hazardous spill that occurs in transit?

Answers

When cleaning up a non-hazardous spill that occurs in transit couriers should isolate and clean spill area, report problem with sending lab, secure leaking packages in a separate container and document incident on packing list or shipping form.

What are the protocols followed by couriers during transit?Legal specifications regarding packaging, labelling, and handling must be adhered to, unless the commodity is being transported only within a certain campus.The individual transporting the products must be aware of all emergency procedures, including contact details, spill cleanup methods, and disinfection guidelines.It is necessary to properly label the containers.The item must be packaged while wearing the appropriate protective equipment.After touching materials, hands need to be washed.As a result, couriers should isolate and clean the location of a non-hazardous spill when it happens in transit, notify a problem to the sending lab, lock any leaking products in a different container, and record the occurrence on the packing list or shipping form.

When cleaning up a non-hazardous spill that happens in transit couriers should isolate and clean the spill area, report problems with sending lab, secure leaking packages in a separate container, and document incidents on the packing list or shipping form.

To learn more about courier transit protocols refer to:

https://brainly.com/question/28304206

#SPJ4

anonymous digital cash is digital cash that cannot be:

Answers

Anonymous digital cash is digital cash that cannot be easily traced back to the individuals conducting the transactions. It aims to provide privacy and anonymity for users by obscuring their identities and transaction details.

Anonymous digital cash is digital cash that cannot be?

The concept of anonymous digital cash emerged as a response to concerns regarding privacy and surveillance in financial transactions. It allows individuals to make digital payments without revealing their real identities or disclosing sensitive personal information.

There are several techniques and technologies employed to achieve anonymity in digital cash systems, an example of these techniques is:

Cryptographic techniques: Anonymous digital cash systems often utilize cryptographic protocols to protect the privacy of users. These protocols can include techniques like zero-knowledge proofs, blind signatures, and ring signatures, which help in hiding transaction details and unlinking them from specific individuals.

Learn more about digitial cash:

https://brainly.com/question/31193543

#SPJ4

Which Excel IF function is not in the correct syntax?


= IF(A4<=250, 1, (IF(A4>250, 2, "MidPoint")))


= IF(B18=1, A18, 500-A18)


= IF(B18, A18, 500-A18)


= IF(A4<=250, 1, (IF(A4>250, 2, D5)))

Answers

The Excel IF function which is not in the correct syntax is: = IF(A4<=250, 1, (IF(A4>250, 2, D5))).

What is Microsoft Excel?

Microsoft Excel can be defined as a software application that is designed and developed by Microsoft Inc., for analyzing and displaying spreadsheet documents by using rows and columns in a tabulated format.

The types of function in MS Excel.

In Microsoft Excel, there are different types of functions that are called predefined formulas and these include the following:

Average functionMinimum functionSum functionMaximum functionCount functionIF function

In this scenario, the Excel IF function which is not in the correct syntax is: = IF(A4<=250, 1, (IF(A4>250, 2, D5))) because A4 is referencing two different inequalities (values).

Read more on Excel formula here: brainly.com/question/26053797

#SPJ1

When you begin typing, your fingers rest on the A, S, D, F, J, K, L, and ; keys. What is this called?
a. the base row
b. the starting line
c. the main row
d. the home row

Answers

On the middle row of the keyboard, these are the keys. A, S, D, and F are located on the left side of the keyboard's home row, whereas J, K, L, and the semicolon (;) are located on the right.

The fingers must rest on when typing.

The first row of keys with the fingers at rest. If you're unsure which ones these are, locate them on your keyboard by looking two lines up from the spacebar. They begin with ASDF on the left. T

When typing, your fingers should always begin and stop in which row?

Your fingers must be on the "HOME ROW" keys in the centre of your keyboard. Put your little finger (pinky) on the index of your left hand first, then move.

To know more about home row visit:-

https://brainly.com/question/1442439

#SPJ1

For ul elements nested within the nav element, set the list-style-type to none and set the line-height to 2em.

For all hypertext links in the document, set the font-color to ivory and set the text-decoration to none.
(CSS)

Answers

Using the knowledge in computational language in html it is possible to write a code that For ul elements nested within the nav element, set the list-style-type to none and set the line-height to 2em.

Writting the code:

<!doctype html>

<html lang="en">

<head>

  <!--

  <meta charset="utf-8">

  <title>Coding Challenge 2-2</title>

</head>

<body>

  <header>

     <h1>Sports Talk</h1>

  </header>

  <nav>

     <h1>Top Ten Sports Websites</h1>

     <ul>

   

     </ul>

  </nav>

  <article>

     <h1>Jenkins on Ice</h1>

     <p>Retired NBA star Dennis Jenkins announced today that he has signed

        a contract with Long Sleep to have his body frozen before death, to

        be revived only when medical science has discovered a cure to the

        aging process.</p>

        always-entertaining Jenkins, 'I just want to return once they can give

        me back my eternal youth.' [sic] Perhaps Jenkins is also hoping medical

        science can cure his free-throw shooting - 47% and falling during his

        last year in the league.</p>

     <p>A reader tells us that Jenkins may not be aware that part of the

        least-valuable asset.</p>

  </article>

</body>

</html>

See more about html at brainly.com/question/15093505

#SPJ1

For ul elements nested within the nav element, set the list-style-type to none and set the line-height
For ul elements nested within the nav element, set the list-style-type to none and set the line-height

write 3 things that can't be done without technology. write your opinion?

Answers

Answer: Call a theater to get movie times, Use a phone book to find a company to do work around your house, and Park your used car on the street with a sign that says it’s for sale.

Explanation: my opinion is that it's fine to do each of those things without technology. Because technology is supposed to help the limited capacity of the human brain and improve things that make every day life quicker, easier, leaves more time to do something else.

Answer:

1) Filming, depending on the camera it is still technology that everyone uses on a daily bases with no hesitation for use.

2) Vehicles, I'm not sure if they are a type of technology but for this case lets just say they are. With vehicles we can get to places much faster then walking or taking a carriage.

3)Records, in this case music. Without records or anything of the sort we wouldn't exactly be able to listen to our favorite music at all times.

What is the result when you run the following line of code after a prompt??
>>>print(3 + 11)

Answers

Answer:

The following output is 14

Explanation:

When you print something, python interprets it and spits it out to the console. In this case, python is just interpreting 3 + 11, which equals 14. Thus, making the answer 14.

hope i helped :D

Answer:

14

Explanation:

Other Questions
A researcher asked 520 randomly selected people of three different age groups (teen, young adult, and adult) about their favorite music genre. the two-way table displays the distribution of the responses. a 4-column table with 3 rows. column 1 has entries country, rock, oldies. column 2 is labeled teen with entries 61, 94, 15. column 3 is labeled young adult with entries 65, 84, 36. column 4 is labeled adult with entries 49, 54, 62. the columns are labeled age and the rows are labeled music. a participant is randomly selected. let c be the event that the participant prefers country music and let t be the event that the participant is a teen. what is the value of p(cc and tc)? 0.12 0.33 0.45 0.55 in general, enzymes are what kinds of molecules? $6.55 per hour, 40 hours worked, what is the straight pay? the complementary base pairs for the DNA strands given. CCC-GGG-TAT-GCA-TGT what is the impact of the treaty of guadalupe hidalgo Since the drafting of the Constitution, both the executive branch and Congress have managed to expand their powers. Which power is often cited as an example of Congress exerting too much power over states' rights?A: the amendment prohibiting the sale of alcoholB: Congress's control over international tariffsC: the amendment requiring Congress to maintain a standing armyD: congressional regulation of interstate commerce When a wire is attached to the negative terminal of a battery, what happens? Jack has borrowed $1,000,000 from MQ Bank for 10 years at an interest rate of j 2=3.51%. He will make 10 annual repayments. According to the loan agreement, Jack's repayments will be $86,000 for the first two years followed by payments of with the amount of X per year for the remaining eight years. This loan needs to be fully repaid by the end of 10 years. (a) Assume that all annual repayments will be paid at the end of each year (the first payment will be at the end of the first year), what is the value of Jacks' annual payment amount X (rounded to four decimal places)? a. 121763.8144 b. 130461.6484 c. 130718.4406 d. 121930.9124 Jack has borrowed $1,000,000 from MQ Bank for 10 years at an interest rate of j 2=3.51%. He will make 10 annual repayments. According to the loan agreement, Jack's repayments will be $86,000 for the first two years followed by payments of with the amount of X per year for the remaining eight years. This loan needs to be fully repaid by the end of 10 years. (b) Assume that all annual repayments will be paid at the beginning of each year (the first payment will be at the start of the first year), what is the value of Jacks' annual payment amount X (rounded to four decimal places)? a. 121088.4301 b. 125173.9833 c. 120929.3627 d. 125375.9295 7. Which of the following choices can speed up how fast alcohol leaves your body's system?A. a cold showerB. coffeeC. walking it offD. None of the choices are correct__________________________________________8. Cirrhosis is:A. an addiction to alcohol.B. cancer of the liver.C. inflammation of the liver.D. scarring of the liver 5.Put the adverbs in the correct place: Do you go to the zoo with your parents? (often)a.Do often go to the zoo with your parents?b.Do you often go to the zoo with your parents?c.Do you go to the zoo with your parents?d.Do you go often to the zoo with your parents? Answer number 2 or number 3 thank you Perpetual preferred stock from Franklin Inc. sells for $97.50 per share, and it pays an$8.50 annual dividend. If the company were to sell a new preferred issue, it would incur a flotation cost of 4.00% of the price paid by investors. What is the company's cost of preferred stock for use in calculating the WACC?A) 8.72%B) 9.08%C) 9.44%D) 9.82%E) 10.22% a. Use the Caesar cipher to encrypt the message AN APPLE A DAY.b. b. Use the Caesar cipher to decrypt the message NHHSV WKH GRFWRU DZDB. Flaky pastry is made using flour and fat in the ratio 9 : 7 by weight. Sweet pastry is made using flour, fat and sugar in the ratio 27 : 14 : 9 by weight. Elisha makes some flaky pastry and some sweet pastry. She uses the same weight of flour for the flaky pastry as she does for the sweet pastry. Work out the ratio of the weight of fat she uses in the flaky pastry to the weight of fat she uses in the sweet pastry. transformational leaders have high ethical standards and also ______. Which factors determine whether a cell enters G0? the average level of one's expected future income stream is part 2 a. permanent income. b. taxable income. c. disposable income. d. gross income. A significance test about a proportion is conducted using a significance level of 0.05. The sample statistic is 0.12. The p-value is 0.03.a) If H0 were true, for what probability of a Type I error was the test designed?b) What conclusion (reject or fail to reject) would you make for this test?c) If this test resulted in a decision error, what type of error was it? 3a+6b=a+4b, what does A = during the last ice age, glaciation was a major contributor of the parent material that ultimately formed the soils in north carolina. t/f