which type of evidence is stored in a computer's memory, as well as on storage devices as in files, and must be accompanied by documentation that validates the evidence's authenticity?

Answers

Answer 1

Information that has been stored or transmitted in binary format and is admissible in court is known as digital evidence. Digital evidence is frequently linked to electronic crime, sometimes known as e-crime.

Processes and programs now executing on the system, network connections, signs of malware infection, registry hives, usernames and passwords, decrypted files and keys, and signs of activity not generally saved on the local hard disk are all examples of evidence that can be discovered in RAM. When dealing with the search and seizure of computers at a crime scene, law enforcement often just unplugs the computer and books it into the evidence center. The investigator then demands that a certified digital evidence examiner examine the computer.

Learn more about Evidence here-

https://brainly.com/question/6764645

#SPJ4


Related Questions

write a driver program (lists.cpp) that defines an integer list and a string list. after creating the two lists, use the input from intdata.dat and strdata.dat files to insert data into the linked lists. these files have one data item per line. insert the data items to their respective list objects. display the lists.

Answers

linked_list.h

#include<stdlib.h>

using namespace std;

class IntNode

{

  public:

      int data;

      IntNode *next;

  public:

      IntNode(int d)

      {

          data=d;

          next=NULL;

      }

}

class StrNode

{

  public:

      string data;

      StrNode *next;

  public:

      StrNode(string str)

      {

          data=str;

          next=NULL;

      }

};

class IntLL

{

  public:

      IntNode *head;

  public:

      IntLL()

      {

          head=NULL;

      }

      void insert(int data)

      {

          IntNode *node=new IntNode(data);

          node->next=head;

          head=node;

      }

      int getTotal()

      {

          int count=0;

          for(IntNode *node=head;node;node=node->next)

          {

              count++;

          }

          return count;

      }

      void search(int data)

      {

          for(IntNode *node=head;node;node=node->next)

          {

              if(node->data==data)

              {

                  cout << data << " was found in the list" << endl;

                  return;

              }

          }

          cout << data << " was NOT found in the list" << endl;

      }

};

class StrLL

{

  public:

      StrNode *head;

  public:

      StrLL()

      {

          head=NULL;

      }

      void insert(string data)

      {

          StrNode *node=new StrNode(data);

          node->next=head;

          head=node;

      }

      int getTotal()

      {

          int count=0;

          for(StrNode *node=head;node;node=node->next)

          {

              count++;

          }

          return count;

      }

      void search(string data)

      {

          for(StrNode *node=head;node;node=node->next)

          {

              if(node->data==data)

              {

                  cout << data << " was found in the list" << endl;

                  return;

              }

          }

          cout << data << " was NOT found in the list" << endl;

      }

};

mainList.cpp

#include<iostream>

#include<fstream>

#include"linked_list.h"

using namespace std;

void add_int_items(IntLL &intLL)

{

   ifstream myfile("intData.dat");

   if(myfile.is_open())

   {

      string line;

      while(getline(myfile,line))

      {

          intLL.insert(stoi(line));

      }

   }

   else

   {

      cout << "Something went wrong" << endl;

   }

}

void add_str_items(StrLL &strLL)

{

   ifstream myfile("strData.dat");

   if(myfile.is_open())

   {

      string line;

      while(getline(myfile,line))

      {

          strLL.insert(line);

      }

   }

   else

   {

      cout << "Something went wrong" << endl;

   }

}

void intSearch(IntLL &intLL)

{

  ifstream myfile("intSearch.dat");

   if(myfile.is_open())

   {

      string line;

      while(getline(myfile,line))

      {

          intLL.search(stoi(line));

      }

   }

   else

   {

      cout << "Something went wrong" << endl;

   }

}

void strSearch(StrLL &strLL)

{

  ifstream myfile("strSearch.dat");

   if(myfile.is_open())

   {

      string line;

      while(getline(myfile,line))

      {

          strLL.search(line);

      }

   }

   else

   {

      cout << "Something went wrong" << endl;

   }

}

int main()

{

  IntLL intLL;

  add_int_items(intLL);

  cout << "Total integer items in list: " << intLL.getTotal() << endl;

  intSearch(intLL);

  cout << endl;

  StrLL strLL;

  add_str_items(strLL);

  cout << "Total string items in list: " << strLL.getTotal() << endl;

  strSearch(strLL);  

  return 0;

}

I written in c language

C is a procedural programming language with a static framework that supports lexical variable scoping, recursion, and structured programming. Constructs in the C programming language translate nicely to common hardware instructions. Programs that were formerly written in assembly language have long used it. C is a machine-independent programming language that is primarily used to build various applications and operating systems like Windows, as well as more complex programs like the Oracle database, Git, Python interpreter, and games. It is regarded as a programming foundation when learning any other programming language. Examples of such applications include operating systems and other application software for computer architectures, including supercomputers, PLCs, and embedded systems.

Learn more about c language here:

https://brainly.com/question/7344518

#SPJ4

the operation of verifying that the individual (or process) is who they claim to be is known as? complete mediation access control authentication verification

Answers

The operation of verifying that the process or individual is who they claim to be is known as authentication. Thus, the correct option to this question is an option (C) i.e. authentication.

Authentication is an operation that is commonly used in computer language or in software engineering to verify the person or process what they ought to be. Authentication operation verifies that the person, individual, or process accessing the system is the authenticated individual, person, or user.

While the other options are incorrect because:

The term complete mediation is used to check that access to the object is allowed. While access control is a measure to control access to the system by an unauthenticated process or user. Whereas, the verification verifies that the user or process is original.

The complete question is given below

"

The operation of verifying that the individual (or process) is who they claim to be is known as?

A. complete mediation

B. access control

C. authentication

D. verification "

You can learn more about authentication at

https://brainly.com/question/13615355

#SPJ4

for this assignment, we'll be using this data to study bike usage in washington d.c. based on the granularity and the variables present in the data, what might some limitations of using this data be? what are two additional data categories/variables that you can collect to address some of these limitations?

Answers

For managing transportation infrastructure, particularly during disruptions or around new developments, short-term demand forecasting is crucial.

Due to "tidal flows" of travel and use, many bike-sharing programs struggle to manage service provision and bike fleet rebalancing. Although short-term traffic demand estimates and machine learning techniques like deep neural networks have recently advanced, relatively few studies have looked into this issue utilizing a feature engineering approach to guide model selection. From real-world bike usage records, this study extracts unique time-lagged variables, such as network node Out-strength, In-strength, Out-degree, In-degree, and PageRank, that describe graph topologies and flow interactions. According to the experiment's findings, graph-based features are more crucial for demand forecasting than more widely used meteorological data.

Learn more about demand here-

https://brainly.com/question/14456267

#SPJ4

What is the function of WebGL

Answers

Answer:

WebGL enables web content to use an API based on OpenGL ES 2.0 to perform 2D and 3D rendering in an HTML canvas in browsers that support it without the use of plug-ins. 

___________________________

changes in processing requirements for future is systems have led to new categories of dbms. all of the following are new dbms categories except . answer unselected nosql dbms unselected in-memory dbms unselected newsql dbms unselected output-memory dbms

Answers

Output-memory DBMS is the new categories of dbms that leads to changes in processing requirements for future is systems.

Software programs called database management systems (DBMS) are used to store, retrieve, and query data. Users can add, read, edit, and delete data from databases using a database management system (DBMS), which acts as an interface between an end-user and the database. DBMSs control the data, the database engine, and the database structure, enabling users and other applications to extract or modify the data. It also contributes to concurrency, uniform data management practices, and data security. The normalization technique, used in database schema design, allows DBMS to optimize the arrangement of data by dividing large tables into smaller ones when any of their properties have redundant values. In comparison to conventional file systems, DBMS are more flexible and have a more sophisticated backup system.

Learn more about DBMS here:

https://brainly.com/question/14004953

#SPJ4

calories burned running on a particular treadmill, you burn 4 calories per minute. write a program that uses a loop to display the number of calories burned after 5, 10, 15, 20, 25, and 30 minutes.

Answers

def calorie_burned(time):

   cal_burn=time*4

   return cal_burn

run_time=[10, 15, 20, 25, 30]

for rt in run_time:

   print(calorie_burned(rt))

One execution of the initialization statement.

Evaluation of the test expression follows. The for loop is stopped if the test expression returns false.

The update expression is updated, though, if the test expression is assessed as true. If so, the for loop's body statements are then carried out.

Iteratively evaluating the test statement

The test expression remains true throughout this process. The loop is broken when the test expression returns false.

Look up relational and logical operators to find out more about test expression (when the test expression is evaluated to true and false).

Learn more about  test expression here:

https://brainly.com/question/14390367

#SPJ4

3. in a class, a. in a class, why do you include the function that overloads the stream insertion operator, <<, as a friend function? b. in a class, why do you include the function that overloads the stream extraction operator, >>, as a friend function?

Answers

I neeed point 10 thanks

WD9102 Apply a shape style.

Answers

If you want to apply a shape style, you must require to tap on the Format tab followed by clicking the More drop-down arrow in the Shape Styles group.

How to know the actual or real style of shape?

To know the actual or real style of shape, go to the Drawing Tools menu in the ribbon. Then, Click on the Format tab. Observe the Shape Styles grouping of commands. Here, you will see three icons on the right side, they are Shape Fill, Shape Outline, and Shape Effects.

After clicking the More drop-down arrow in the Shape Styles group, a complete menu of styles will appear in front of you on the screen. Choose the style you want to use. The shape will appear in the selected style.

Therefore, the process of applying shape style is well described above.

To learn more about Word Shape styles, refer to the link:

https://brainly.com/question/938171

#SPJ1

given the schema item(itemid, name, category, price) itemsale(transid, itemid, qty) transaction(transid, custid, date) customer(custid, name, street-addr, city) where primary keys are underlined, write the following queries in sql: a. find the name and price of the most expensive item (if more than one item is the most expensive, print them all).

Answers

Given the schema item(itemid, name, category, price) itemsale(transid, itemid, qty) transaction(tran_sid, custid, date) customer(custid, name, street-addr, city), to find the name and price of the most expensive item (if more than one item is the most expensive, print them all) is given below:

The SQL Code

SET  p 1 : = ( SELECT MAX ( price ) FROM items);

SELECT * FROM items WHERE price =  p 1 ;

Using variables, p1 stores the maximum price from the table items and then uses the variable p1 in the following query to return all records which have that maximum price without limiting the number of records as you desired.

Other ways of getting the same result are given below:

2. SELECT * FROM items

WHERE itemID IN (

  SELECT itemID FROM items

  WHERE price IN (

     SELECT MAX(price) FROM  items

  )

);  

3. SELECT * FROM items

WHERE price IN (

  SELECT MAX ( price ) FROM items

) ;

Read more about SQL here:

https://brainly.com/question/27851066

#SPJ1

what security does a user id provide? a. none b. it determines the privileges accorded to the user. c. it authenticates the user in case the user forgets her password. d. it prevents an attacker from finding a user’s password entry by her name.

Answers

The security a user id provides is that it determine the privileges accorded to the user.

What are user privileges?

The set of actions a user can perform in a given system is known as user privileges. it determines the level of access they have to their own submission.

A user id which is a unique identity given to a user or a username by which a person can be identified on a system or network is used to assign privileges to a user. There are two common level of user namely:

AdminBasic user

Learn more on user privileges from:

https://brainly.com/question/7496800?referrer=searchResults

#SPJ4

the internet is a network of interconnected computers. each computer interface on the internet is identified by an internet address. in ipv4 (internet protocol, version 4), the addresses are divided into five classes -- classes a through classes e. only classes a, b, and c are used to identify computers on the internet. a class a address is a bit string of length 32. a bit string consists of $0$'s and $1$'s. the first bit is 0 (to identify it as a class a address). the next 7 bits, called the \textit{netid}, identify the network. the remaining 24 bits, called the \textit{hostid}, identify the computer interface. the netid must not consist of all 1's. the hostid must not consist of all 0's or all 1's. how many class a internet addresses are there?

Answers

An IP address (internet protocol address) is a numerical identifier used to specifically identify a particular network interface.

In IPv4, addresses are 32 bits long. This permits up to 4,294,967,296 (232) different addresses. Since IPv6 addresses are 128 bits long, there can be 3.4 x 1038 (2128) different addresses. Both versions' entire pool of available addresses is decreased due to a number of reserved addresses as well as other factors. Although IP addresses are binary numbers, they are frequently written in decimal (IPv4) or hexadecimal (IPv6) form to make them easier for humans to understand and use. At the internet layer of the Internet Protocol Suite, the Internet Protocol is the protocol that specifies and permits internetworking. It essentially creates the Internet.

Learn more about Address here-

https://brainly.com/question/20012945

#SPJ4

Internet banking allows you to still go to a physical bank location to do transactions. true or false

Answers

Internet banking allows you to still go to a physical bank location to do transactions: False.

What is Internet banking?

Internet banking is also referred to as online banking and it can be defined as a type of technology that is used by financial institutions (banks) to offer their customers an opportunity to receive and send money through the Internet.

This ultimately implies that, Internet banking helps to prevent the need of a customer to physically go to bank location in order to perform various financial transactions.

Additionally, some examples of Internet banking (online banking) institutions include the following:

Western UnionPay-PalMoneygramPayment processor

Read more on online banking here: https://brainly.com/question/2772610

#SPJ1

What is the electronic defacing of an existing website? multiple choice byod cybervandalism cyberbulling cookie

Answers

The electronic defacing of an existing website page is referred to as cyber vandalism. Cyber Vandalism is the act of stealing data from another person's computer or corrupting all previously saved data on that person's machines via delivering viruses.

On your computer or mobile device, adware is software that shows unsolicited (and occasionally obtrusive) pop-up advertisements. A pharming attack seeks to divert traffic from a legitimate website to a false website that is controlled by the attacker, usually with the intention of gathering sensitive data from victims or placing malware on their computers. People can simply employ cyber vandalism tactics to damage your computer from afar and change or utilize a crucial database for their own purposes. This is an unethical tactic that mostly targets businesses and government institutions.

Learn more about Cyber vandalism here-

https://brainly.com/question/8969166

#SPJ4

What is the favorite Food?
(15 points)

Answers

my favorite food is soup because i like the flavors and its very soothing

Answer:French fries

Explanation:bc they are awesome

e. the program should then output the list of characters, including white spaces and punctuation marks, and the number of times each character appears in the input.

Answers

This program requires to count each character appear in the input including punctuation marks, and white spaces.

The program is written in Python as required given below:

your_input_string = input("Enter String: ") # take input from user

print("The input string is:", your_input_string) # print the input taken from user

my_string_set = set(your_input_string) # created a set of a input string

for string_element in my_string_set: # for loop to count character of string in the Set

   countOfChar = 0 # variable countOfChar declaration

   for character in your_input_string: # for loop

       if character == string_element: # if character is equal to the string

          countOfChar += 1 # count the occurrence of character

   print("Count of character '{}' is {}".format(string_element, countOfChar))  

# print the character.

The output of the program is also attached.

The complete program is given below:

"

Write a Python program that ask user to enter the input sentence. Then,  the program should then output the list of characters, including white spaces and punctuation marks, and the number of times each character appears in the input.

"

You can learn more about character counter in python at

https://brainly.com/question/24275769

#SPJ4

   

What is a piracy????????????????????????????????

Answers

Answer:

down below

Explanation:

Piracy is when you use or reproduce someone's work without their consent. Ex: downloading a movie without paying for it.

It can also refer to attacking and robbing ships at sea.

Hope this helps! :)

you are running macos mojave and you want to begin working with various other oss such as windows server and linux. you only have one computer and you need to keep using macos while working with the other oss. what can you install on macos that will help achieve this goal? a. esxi server b. vmware fusion c. vmware workstation d. hyper-v for macos

Answers

You wish to start collaborating with various other operating systems, such as linux and windows server, while using macOS Mojave. You only have one computer, thus you have to continue using Mac OS X while utilizing the other OS. VMware Fusion must be set up.

A macOS update installation issue could happen for a variety of different causes. Ideally, the error message was clear in describing the issue. You'll be able to focus your troubleshooting efforts accordingly.

You can get caught in a loop where the installer keeps opening every time you restart your computer if your macOS installation couldn't be finished. Before attempting to fix the issue, use these fast steps to get out of the loop and safeguard your data.

learn more about VMware Fusion

https://brainly.com/question/4682288

#SPJ4

A​ ________ is software that enables an organization to centralize​ data, manage them​ efficiently, and provide access to the stored data by application programs.

Answers

Answer:

Database

Explanation:

-

Hope that helps

Which of the following is an example of machine learning?

a
Encrypting

b
Block-based code

c
Autocorrect

d
Programming

Answers

The option that is an example of machine learning is option A: Encrypting.

What is encryption in machine learning?

This is seen as a class of techniques known as privacy-preserving machine learning (PPML) enables machine learning models to compute directly on encrypted input and as well as provide conclusions that are also known to be encrypted. The result is one that can only be decrypted by the person who encrypted the input data.

Note that in data encryption, Sensitive information should always be encrypted to prevent hackers from been able to access it.

Learn more about machine learning from

https://brainly.com/question/25523571
#SPJ1

Answer:  programming

Explanation:

part b: enhancing the chatbot in the part we want to make alterations to the getresponse method of the magpie class to be able to respond to some other words if they happen to appear in what the user inputs.

Answers

The Web Response instance is returned by the Get Response method, which sends a request to a web site.

Get Response completes the request and returns any responses if the request was already started by a call to Get Request Stream. The Web Response is accessible synchronously through the Get Response function.

import java.util.Random;

import java.util.Scanner;

public class ChatBot

{

private int responseCount = 0;

public String getResponse(String value)

{

   String X = longestWord(value);

   this.responseCount++;

   if (responseCount == 10)

   {

       return "Sorry, but our time is up. I can't talk with you any longer.";

   }

   if (value.contains("you"))

   {

       return "I'm not important. Let's talk about you instead.";

   }

else if (X.length() <= 3)

   {

       return "Maybe we should move on. Is there anything else you would like to talk about?";

   }

   else if (X.length() == 4)

   {

       return "Tell me more about " + X;

   }

else if (X.length() == 5)

   {

       return "Why do you think " + X + " is important?";

   }

   else if (X.length() <=9)

   {

   return "Now we are getting somewhere. How does " + X + " affect you the most?";

   }

   return getRandomResponse();

}

public String longestWord(String value){

   Scanner input = new Scanner (value);

   String longest = new String();

   longest = "";

   while (input.hasNext())

   {

       String temp = input.next();

       if(temp.length() > longest.length())

       {

           longest = temp;

       }

   }

   return longest;

}

private String get Random Response()

{

String [] responses = {"OMG", "LOL", "You don't say", "Really?", "I See"};

return responses [(int)(Math.random() * responses.length)];

}

Learn more about response here-

https://brainly.com/question/14967011

#SPJ4

Sharon works in the entertainment industry and is a game creator. Which of the following types of specialized software would she MOST LIKELY use?

A.
computer-aided manufacturing

B.
3D printing

C.
computer-aided design

D.
3D animation

Answers

The type of specialized software that she would probably use is 3D animation. The correct option is D.

What is 3D animation?

Computer animation is the process of creating animations digitally. Computer-generated imagery is a broader term that includes both static and dynamic images, whereas computer animation only refers to moving images.

As previously stated, animation is not something that can be learned overnight. It's one of the most difficult aspects of a 3D pipeline. It will take a lot of trial and error, as well as some frustration.

Though 3D animation has primarily been used in the production of video games, films, and television shows, its applications have expanded in tandem with its popularity.

Thus, the correct option is D.

For more details regarding 3D animation, visit:

https://brainly.com/question/12037761

#SPJ1

The CPU executes instructions in response to commands. true or false

Answers

Answer:

true

Explanation:

Answer:   True

Explanation:   I took the test and passed :)

a global communications system created by connecting many different computer networks
A. browser
B. packets
C. IP addresses
D. internet
E. World Wide Web

Answers

Answer:

internet

The Internet is a large IP network of networks.

Answer:

c

Explanation:

you work as the it administrator for a small startup company. lily's computer has two internal hard drives and runs windows 11. she is concerned that she may accidently delete a personal file or that her primary hard disk may fail at some future time, causing her to lose her personal files.

Answers

Answer: People makes mistakes, but there is a chance if she is deleting something she might delete a personal file on accident

a rule of thumb in printing says that the area of the typed page should be half the area of the paper page. if the paper page is in by ​in, what should the length of the typed page be if the width is ​in?

Answers

The typed page is 2.5 by 2.5 inches. For objects with two or more dimensions, area is calculated. The area of one-dimensional objects is not calculable.

Any non-negative real integer can represent an area. Integrals are frequently applied while assessing area. It is well known that the product of a rectangle's dimensions determines its area. Let the paper page's area and the typed page's area be AT and AP, respectively. If the typed page is x characters long, we get AT=x5 and AP=46.

The answer to the query is AT=1/2AP.

So, ascertain x's value.

AT=12AP\s

x⋅5=12⋅4⋅6 \s

x=12/5 \

s=2*2/5

The typed page is therefore 2*2/5 inches by 5 inches.

Learn more about Area here-

https://brainly.com/question/27683633

#SPJ4

uppose you are writing an anonymous javascript function that will run when your web page loads, and you want to include a statement that will cause a selection list in a web form to become active and ready for data entry. which method should you apply in this statement?

Answers

If you wish to include a statement that makes a selection list in a web form active and ready for data entry, you should use the element.select() method when developing an anonymous javascript function that runs when your web page starts.

A section of code called a JavaScript function is created to carry out a certain task.

When "something" invokes a JavaScript function, it begins to run (calls it).

A JavaScript function is created by using the function keyword, a name, and then parenthesis ().

Letters, numbers, underscores, and dollar signs can all be used in function names (same rules as variables).

Comma-separated parameter names may be included in parentheses: (parameter1, parameter2, ...)

Curly brackets are used to surround the code that the function will run: {}

In the function definition, the parameters are specified between parentheses ().

The values passed to the function as arguments are known as function arguments.

The parameters (the arguments) behave like local variables inside the function.

Learn more about javascript here

https://brainly.com/question/28448181

#SPJ4

. The lightness or brightness of a color is the _______.

Answers

Answer: Value

Explanation:

Value is your answer

All IT systems enable a network administrator to set access levels, or permissions, for
just one user. true or false? question

Answers

Answer:

Explanation:

Comment

That shouldn't be true at all.

Let us suppose that the network contains something like a Microsoft program and different people on the network are working on different things.

The administrator as in a school situation might not students to be looking at an answer that was derived a different way. The administrator would want to block that possibility.

smart detection can detect the gradual degradation of a web app’s response time caused by a memory leak. select yes if the statement is true. otherwise, select no.

Answers

Yes, smart detection can detect the gradual degradation of a web app's response time caused by a memory leak.

The given statement is very true . Smart Detection can detect a performance issue that affects the time. One instant can be seen where pages are loading more slowly on one type of browser than others.

Learn more about smart detection here:

https://brainly.com/question/26199042

#SPJ4

According to the internet is watching you video case, what approach could be used with big data to give teachers an early warning that a student needs help with their studies?.

Answers

According to big data teachers should utilize Data to Identify Students at Risk, close the learning gap by using data, utilize data to forecast student performance on year-end objectives, utilize data to encourage success in later grade levels.

Data analytics is the process of gathering and analyzing data in order to discover insights that can be put to use to improve organizational effectiveness and business results. In the field of education, this might include everything from streamlining the enrollment procedure to enhancing academic results and the entire student experience. Effective educators who work with at-risk pupils use quiet, calm management techniques, quietly urge students to behave appropriately, and model self-control in front of the class.

Learn more about Analytics here-

https://brainly.com/question/28191959

#SPJ4

Other Questions
what is the equation of a line that is parallel to line y=3x+5 and goes through the point (6,-7) Given the pay rate and hours worked, determine the gross earnings, federal taxes (assuming 15% of gross earnings),state taxes (assuming 5% of gross earnings), local taxes (assuming 2% of gross earnings), social security deduction(assuming 7.65% of gross earnings), total deductions, and net pay.pay rate= $8.50hours worked = 381. Gross Earnings2. Federal Taxes3. State Taxes4. Local Taxes5. Social Security Deduction6. Total Deductions7. Net Pay$6.46$227.23$16.15$48.45$323.00$24.71$95.77 Kylie just accepted a job at a new company where she will make an annual salary of $67000. kylie was told that for each year she stays with the company, she will be given a salary raise of $3000. how much would kylie make as a salary after 3 years working for the company? what would be her salary after tt years? Rai compares the fee structure for two different art classes.Which equation can be used to solve for the number of classes, c, for which Class A and Class B cost the same?Class ANo registration fee$40 per class Class B$60 registration fee$25 per classCLEAR CHECK40=25+60c40c=25+60c40c+60=25c40c=25c+60 An interesting phenomemon occors in plants that are withering: when watered they "perk up" or stand up. this is eveidence of a plant needing water. what organelle in a plant do you think is most asscociated witht this phenomenon? Which of the following are characteristics of the Price Revolution of the sixteenth century? Select all that apply.Prices for luxury goods flattened in the second half of the century.There was a significant amount if increased investment in New World mining markets, depressing European mining ventures.There was a period of extreme hyperinflation caused in part by silver influx.Promissory notes were established throughout Europe.The florin ceased to be the standard in trade as new national currencies emerged throughout Europe. "if i flip a coin, i have a 50 percent chance that it will land on heads." in this statement, even after the first coin flip, we still have a 50 percent chance that the next flip will result in a head. this statements interprets "probability" as: complete the table of values for y = 1 over x 5. Please verify correct i need help with this question 20 points Devon owns a house cleaning company and has to give price quotes to potential customers. He figures out his price by assuming a $25 base charge and then adding $8 for each bathroom and $4 for each other room.If he uses P to represent the price, B for bathroom, and R for other rooms, which of the following represents his price quote formula?AP = 25 + 12(BR)BP = 25 + 8B + 4RCP = 25(4R + 8B)DP = (4)(8)(R + B) + 25 choose the fraction that has not been reduced to simplest form 19/3810/1921/3415/18 Compared to if she had bought no items on sale, by what percent was jans total grocery bill discounted? round to two decimal places. a. 15.85% b. 16.50% c. 16.65% d. 17.50% please select the best answer from the choices provided a b c d Which statement best describes the relationship between primary andsecondary sources?OA. Primary sources are more valid than secondary sources.B. Primary sources are created using information from secondarysources.C. Secondary sources are created using information from primarysources.D. Secondary sources are more valid than primary sources. Data on annual tuition and average mid-career salary of graduates of a certain degree program are collected from a number of universities and colleges. The result of the data collection is the linear modely=0.83x+106 ,where x= annual tuition and y= average mid-career salary of graduates, both in thousands of dollars. This model is accurate for annual tuition values between 10 thousand and 40 thousand dollars.What is the slope of this linear model?According to this model, what is the average salary for a graduate of a college or university where the annual tuition is $25,000?$ Malia put 12 photos into an album. She split the photos evenly among p pages. Write an expression that shows how many photos are on each page. rangutans are ---- vegetarian, and their diet consists mostly of fruit and leaves from the trees, although their carnivorous tendencies may extend to the occasional insect. What is the seal of approval function of US political parties? Pls help!!Using the following graph, write the equation of a line that is parallel to the given line and passes through the point (0, 0). (Write your answer is slope intercept form. The y= is already typed for you, so only type the remainder of the equation using NO spaces!) Identify at least 1 symbol and analyze the impact it has on the meaning of the story in 3-5 sentences."self-reliance" Ralph Waldo Emerson.