Hash functions use algorithms use a big chunk of data and squeeze it into a small amount to verify something like a file or an application.

A. True
B. False

Answers

Answer 1

Answer:

A. True

Explanation:

Identifying and verifying files/applications is one use of hash functions.


Related Questions

What is the output of the following program?
numA = 2
while numA < 30:
numA = numA * 5
print(numA)

Answers

Answer:

the output of that code would be invalid syntax since the line,

>>> numA = numA * 5

is not indented.

The output of

>>> numA = 2

>>> while numA < 30:

>>> numA = numA * 5

>>> print(numA)

would be 50.

The output of the following program is 10. This is because it is represented in the program that the value of numA would be less than 30.

What is the significance of the output of the program?

The significance of the output of the program is understood by the fact that it delivers some values or concepts to the user with respect to the instruction he/she is given to the computer for processing. The output of the program is very specific in nature.

According to the context of this question,

Input: numA = 2

         while numA < 30:

         numA = numA * 5

         print(numA)

Output: numA = 2 × 5 = 10 which is lesser than 30.

Therefore, the output of the following program is 10. This is because it is represented in the program that the value of numA would be less than 30.

To learn more about Output of a program, refer to the link:

https://brainly.com/question/18079696

#SPJ2

A search for reliable information is a search for what?

Answers

Answer:

For information you can trust

Explanation:

RTOS stands for ______ Time Operating System.

Answers

Answer:

Real Time Operation System

Explanation:

What benefits will you receive by attending the high school you are applying to? (in complete sentences)​

Answers

The benefits you will receive by attending the high school you are applying to is that you can get credits by the attendance.

what is binary code?​

Answers

Answer:Binary code, code used in digital computers, based on a binary number system in which there are only two possible states, off and on, usually symbolized by 0 and 1. ... In binary code, each decimal number (0–9) is represented by a set of four binary digits, or bits.

Explanation:

Brainliest

Answer:

binary code is a jumble of random 0s and 1s that forn chains that make up all coded systems on any electronic device

Explanation:

what is the plan to make optimum usage of available spaces?

Answers

Answer:

dergragmentation or share to speed up procceces

ANSWER ASAP PLEASE, 100 POINTS. Xavier wants to print the slides of his PowerPoint presentation to practice and make notes but doesn't want to use too much ink or paper. What print option should Xavier use?
A: Print Full Page Slides
B: Print Handouts
C: Print Notes Pages
D: Print Presentation

Answers

Answer:

c

Explanation:

The print option should Xavier use is print Notes Pages. Hence option C is correct.

What is print?

Print is defined as a computer sending information to a printer, which creates a hard copy (printed copy) of the information being printed. Not only are books and newspapers printed, but also textiles, plates, wall coverings, packaging, and billboards. It has also been used in the creation of small electrical circuits. The general consensus is that print media is more reliable than digital media.

Each presentation slide and your notes are included on the notes pages. Every slide has its own notes page when printed. Your notes are attached to the slide. Your notes pages can contain information, such as graphs and pictures.

Thus, the print option should Xavier use is print Notes Pages. Hence option C is correct.

To learn more about print, refer to the link below:

https://brainly.com/question/14668983

#SPJ3

select the correct word to complete the sentence

First developed by grace hopper a ____ is a computer program that translates higher level programming languages into machine code

A assembly language

B COBOL

C digital circuit

D compiler

pls help quick or i am screwd cause i was not paying attention to my class ​

Answers

Answer:

Answer is B.

Explanation:

First developed by grace hopper a COBOL is a computer program that translates higher-level programming languages into machine code. The correct option is B.

What is a COBOL?

COBOL (Common Business-Oriented Language) is a high-level business programming language. It was the first popular language to be intended to be operating system-independent, and it is still used in many financial and commercial applications today.

First developed by grace hopper a COBOL is a computer program that translates higher-level programming languages into machine code.

Hence, the correct option is B.

Learn more about COBOL:

https://brainly.com/question/4584026

#SPJ2

WILL GIVE BRAINLIEST
Achieving intended results ends _____

A the testing cycle.
B the compiling process.
C the stepping function.
D the writing of program code.

Answers

Answer:

c

Explanation:

c

I agree it is C. I hoped this helped!!! Happy Thanksgiving!!!!!

Complete the sentence describing an email client.
An email client is a___
that runs on____

Answers

Answer:

Program, client

Explanation:

Not 100% sure on this but this is my best guess

what are the difference between requests management to problem management??​

Answers

Answer:

Problem management is a practice focused on preventing incidents or reducing their impact.

Request Management is the systematic handling of the tasks required for a variety of different internal or external requests using workflow automation, business rules, and analytics. Request management problems manifest in a variety of ways in any organization: Slow request turnaround times.

Explanation:

i need help with computer science
im on Write Password Evaluator

Answers

Answer: Password Evaluator is designed to examine passwords and tentative passwords to look for dictionary words and patterns that a password cracking tool might exploit. It looks for reversed, rotated, keyboard shifted, truncated, dropped letters, substituted characters and other variations on dictionary words both singly and in many combinations.

Explanation:

Which data type is –7?

int

single

string

float

Answers

Answer:

Int

Explanation:

Good Luck!

PLS HURRY!!
Look at the image below

Answers

The output will be 10.

The while loop runs until numb is equal to or less than 13.

25 - 5 = 20

20 - 5 = 15

15 - 5 = 10, which is less than 13 so the loop stops and 10 is printed to the screen.  

What are some good netflix shows

Answers

Answer: Here’s a few to try

- Riverdale

- Outer Banks

-Stranger Things

-The Ranch

-The Bodyguard

Answer:

Ok ok here we go-

Haikyuu (its sooooo good u might not have it tho)

Mako-mermaids (lol)

Schitts Creek

And Stranger things

Explanation:

Create a two functions: first called grocery_cost(food), where food can be one item or a list of items from the stock and price dictionaries, the second is called stock_check(stock_list) where a store manager can check if stock numbers are at a minimum value.grocery_cost: loops through the argument food, notes the price, checks the stock, calculates and prints the total cost and changes the stock number. You will need to use a for statement to loop through the items in food and an if statement to check and update the stock (substract one from the stock for each item in the stock).Stock_check: loops through each item in the stock dictionary and uses an if-statement to print a statement if stock is less than 5.Given:stock_key={'tomato soup':20,'cheese':10,'milk':25,'oreos':100,'red bull':0,'apples':17,'oranges':4}price_key={'tomato soup':1.85,'cheese':3.99,'milk':4,'oreos':7.49,'red bull':0.99,'apples':0.59,'oranges':1.29}

Answers

Answer:

stock_key={'tomato soup':20,'cheese':10,'milk':25,'oreos':100,'red bull':0,'apples':17,'oranges':4}

price_key={'tomato soup':1.85,'cheese':3.99,'milk':4,'oreos':7.49,'red bull':0.99,'apples':0.59,'oranges':1.29}

def grocery_cost(*args):

   total_cost = 0

   for arg in args:

       if arg in stock_key.keys():

           stock_key[arg] -= 1

           total_cost += price_key[arg]

   print( f"Total cost of groceries: {total_cost}")

def stock_check():

   for key, value in stock_key.items():

       if value < 5:

          print(f"The stock \"{key}\" is less than 5.")

grocery_cost('apples', 'oranges','milk', 'oreos','cheese')

stock_check()

Explanation:

The functions of grocery_cost and stock_check are python defined functions. The former accepts a list of one or more items and calculates the total cost of the grocery items from the stock and price dictionary while the latter check the size of the stock in the food store.

*. How can overcome digital divide?​

Answers

Answer:

Below are solutions that can help narrow the digital divide gap.

1) Increase affordability.

2) Empowering users.

3) Improve the relevance of online content.

4) Internet infrastructure development.

5) Address gender gap in internet access.

Conclusion

In summary, the problem of the digital divide is just a symptom that points us to a much deeper problem in our economic development. And this is a problem that characterizes both the developed and underdeveloped nations in the world. Once the economic challenges of low education levels, poor infrastructure development, and low quality of life/ income levels are addressed, the digital divide will be eliminated.

Three points come to my mind to overcome the digital divide. Below are the points.

Give students as well as families access to consider taking advanced technology.Continue to have access for participants thru all the community organizations.Enhance employees' or improve students' access to technology, and even the performance of these same direct connections, throughout their inclusive classrooms.

Thus the response is correct.

Learn more:

https://brainly.com/question/12658571

3
What steps can be used to access the Subtotal dialog box?
Select any cell in the data range.
Click the_____tab
In the
_______group, click______
to access the Subtotal dialog box.

Answers

Answer:

The answer to this question is given below in the explanation section.

Explanation:

There are some steps that you use to access the subtotal dialog box.

To access the Subtotal dialog box, you need to follow the following steps:

Click the Date tab

In the  Outline group, click Subtotal

to access the Subtotal dialog box.

The Subtotal function used in Excel and return the subtotal of the numbers in a column in a list or database. Subtotal is a builtin function in Excel that used to subtotal the number in a column or in a given database.

Answer:

Data

Outline

Subtotal

Explanation:

Have a good day:))

How is hashing used?

A. used to protect the transmission of software and large files to be downloaded
B. used for authentication, digital signatures, and message authentication codes
C. ecommerce protocols and bitcoin generation
D. all the above

Answers

Answer: Its A. used to protect the transmission of software and large files to be downloaded

Explanation: Hashing is an algorithm that calculates a fixed-size bit string value from a file. A file basically contains blocks of data. Hashing transforms this data into a far shorter fixed-length value or key which represents the original string. The hash value can be considered the distilled summary of everything within that file. A good hashing algorithm would exhibit a property called the avalanche effect, where the resulting hash output would change significantly or entirely even when a single bit o...

Which of the following is a basic slide size?
Choose all answers that are correct.
A) 4:3 aspect ratio, which is suitable for standard-definition TVs and monitors
B) 2:1 aspect ratio, which is suitable for projecting onto a screen
C)5.6 aspect ratio, which is suitable for Presentation view
D)16:9 aspect ratio, which is suitable for high-definition TVs and widescreen
monitors

Answers

Answer:

D)16:9 aspect ratio, which is suitable for high-definition TVs and widescreen

monitors

Explanation:  

This is the default size set by powerpoint for this reason

A basic slide size is 16:9 aspect ratio, which is suitable for high-definition TVs and widescreen monitors.

What is widescreen monitor ?

The majority of modern high-definition computer displays and televisions use the widescreen 16:9 aspect ratio. The sides are represented by the "9," while the top and bottom are represented by the "16." The ratio of a monitor's or TV's width to height is indicated by the numbers separated by a comma.

The majority of widescreen displays their material using the just-adopted 16:9 aspect ratio. All the movies, and video games you watch or play will be in HD unless the content you're watching was made in a 4:3 aspect ratio.

According to research, utilizing several screens or enlarging monitors makes them far more painful for the eyes.

Thus, option D is correct.

To learn more about widescreen monitor, follow the link;

https://brainly.com/question/14326406

#SPJ5

You are looking at computer ads. One has a processor that is 3.64GHz. What does this mean?

It can download 3.64 gigabits per second.

It can convert binary to decimal at the rate of 3.64 trillion numbers per second.

It can upload 3.64 gigabits per second.

It can execute 3.64 billion instructions per second.

Answers

Answer:

The higher the clockspeed the more the cpu can do

Explanation:

Jenna is applying for a job as a high school teacher. Which information should Jenna not put on her résumé?

A) Education
B) Age
C)Skills
D)Email Adress

Answers

Answer:

I would say D or B

Explanation:

they need to know her education and they need to know her skills, so B or D is the reasonable answer.

C ) Education is the answer

what paper is best for vibrancy A. Uncoated paper B. natural paper C. Newsprint paper D. Coated paper​

Answers

Answer:

the answer is a

Explanation:

Uncoated paper creates the perfect canvas for vibrant color, because the unreflective surface doesn't detract from vivid color and beautiful detailed imagery. When comes to making colors pop on uncoated paper, there are no other options than the high-quality performances of Cougar and Lynx.

Answer:

D. Coated paper

Explanation:

I just took a test and it was correct

How has technology changed in the last 10 years?

Answers

The typewriter was replaced by digital systems such as a computer and word processing software
Technology has improved drastically. From cellphones, laptops, and televisions, the world of technology is always changing. Better phones have been made, laptops have improved, and televisions have gotten clearer. As you can tell, technology is constantly changing.

Who is the prince of math?

Answers

Answer:

Johann Carl Friedrich Gauss

Explanation:

Johann Carl Friedrich Gauss

4. Assume you have a list of numbers
12,10,32,3,66,17,42,99,20
a) Write a loop that prints each of the numbers on a new line.
b) Write a loop that prints each number and its square on a new line.

Answers

lst = [12,10,32,3,66,17,42,99,20]

a)

for x in lst:

   print(x)

b)

for x in lst:

   print(str(x) + " " +str(x**2))

I think this is what you're looking for. Hope this helps!

The auto recover function in a word is available to especially if you experience powerful failure explain what happens to your document if you do it side to save or not to save the recovery file and how you can ensure the majority of your document is recovered

Answers

Answer:

When the document is not saved before the application is closed, The word application assumes that the file is not important, so does not save a recovery file, but to recover the file open the application and go to the recently opened file, do not edit the file, go to the bottom of the document and click on recovery or use the CTRL-Z shortcut key.

Explanation:

Microsoft word is a word processing application used to make and edit word documents. The recovery option in the word application is an essential tool in Word that prevents a permanent loss of documents in production and can be used to retrieve saved and unsaved documents.

Need help on Assignment 4: Evens and Odds

Answers

n = int(input("How many numbers do you need to check? "))

even = 0

odd = 0

for x in range(n):

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

   if num % 2 == 0:

       even += 1

       print(str(num) + " is an even number.")

   else:

       odd += 1

       print(str(num) + " is an odd number.")

print("You entered " + str(even) + " even number(s).")

print("You entered " + str(odd) + " odd number(s).")

This works for me. Best of luck.

Which option is the correct format of placing HTML tags while coding in HTML?
A.

B.

C.

D.

Answers

Answer:

Where are the format to select please? It shows just empty A,B,C,D

Answer:

<ul><li><li><ul>

Explanation:

trust me

You can use the ____ to change the order of the wat windows are stacked.

A). taskbar
B). Open bar
C). toolbar
D). Menu bar

Answers

Answer:

A

Explanation:

Other Questions
Which of the following is the proper order of the steps of the scientific method? Modelo:Quiero ir a esta clnica.No quiero ir a esta clnica, prefiero esa.1. Quiero esta medicina. Enter Textenter answer2. Quiero ver a este mdico. Enter Textenter answer3. Quiero comprar estas pastillas. Enter Textenter answer4. Quiero estos jarabes. Enter Textenter answer5. Quiero esto. Enter Textenter answer What is the unit rate of 18? Which of the following describes how the U.S. government protects and supports farmers and ranchers? through establishing and maintaining food standards through programs that provide direct payments through allowing agribusiness companies to create oligopolies through strict measures of qualis for commoditiesfirst one to get it right gets Brainliest The first trimester is the most critical time for an embryo or fetus. Please select the best answer from the choices provided. T F what is the meaning of joint demand Help would be appreciated Mrs. Hollern works in a jewelry store andearns an 8.5% commission on every piece ofjewelry she sells. How much commissionwould she earn for selling a necklace thatcosts $4,600? Shipping rates for Company A and Company B are shown in the tables below. Which company has shipping rates that you can represent using an equation of the form y = kx? If a dog runs 25m east and then turns around and runsback 20 west, what is the total distance ran? How far is thedog displacement from the starting line? identify organelles in an animal cell A. nucleus, ribosomes, lysosomeB. ribosomes, centriole, lysosomeC. ribosomes, centriole, lysosomeD. mitochondria, centriole, chloroplast 4d + 7e = 68-4d - 6e = -72QUICK Which of the following describes the purpose of project management? planning and organizing resources to meet a goal arranging the order of tasks in a project presenting data in an organized manner producing a quality project PLS HELP ME PLS HELP MS Mallory was driving 70 miles per hour and has a stopping distance of 245 feet. What is the value of the constant of proportionality k? PLEASE PLEASE HELP I WILL GIVE BRAINALIST AND EXTRA POINTS FIRST TO ANSWER How many moles of Mg would you need to react with 2.5 moles of O2? i need help with this ^ which statement best describes the role of plate tectonics in changes that occur on earthA. the movement of plates builds pressure that is released during an earthquakes B. convection currents in the mantle cause mountain ranges to slowly collapse over time C. the subduction of oceanic crust cools the mantle and prevents volcanic eruptionsD. seafloor spreading causing ocean basins to get smaller and shallower over time Marie can find the volume of a cube by using the formula V = s, where s represents the side length of the cube. If Maries cube has a side length of 2image centimeters, what is the volume of her cube? Show your work. Write your answer as a fraction.