The computer code behind password input can be modified to force people to change their password for security reasons. This is known as “password expiration,” and some websites and companies use it regularly. However, people tend to choose new passwords that are too similar to their old ones, so this practice has not proven to be very effective (Chiasson & van Oorschot, 2015). Your friends have a hard time remembering passwords. What method can you devise for them so that they can remember their new passwords AND make them very different from the old ones?

Answers

Answer 1

Answer:

to remember the passwords you could either make a little rhyme to "help" remember it or you could be like everyone else and write it down on a piece of paper. you could also write the password over and over again to make it stick. a way to make a password different from an old one is to use completely different wording and completely different numbers.

Explanation:

Answer 2

Answer:

B

Explanation:

got it right


Related Questions

Given the following class, public class Magazine { private static double SUBSCRIPTION_DISCOUNT = .60; private String title;
private String publisher;
private double newsstandPrice;
public Magazine(String theTitle, String thePublisher, double theNewsPrice) {
title = theTitle;
publisher = thePublisher;
newsstandPrice = theNewsPrice;
}
public String getTitle() {
return title;
}
public String getPublisher() {
return publisher;
}
public double getNewsstandPrice() {
return newsstandPrice;
}
public double getSubscriptionPrice() {
// implementation not shown
public void setNewsstandPrice(double newPrice) {
newsstandPrice = newPrice;
}
}
Which of the following methods is an accessor method?
I. getTitle
II. getPublisher
III. setNewsstandPrice

I only
I and II only
II only
I and III only
III only

Answers

Answer:

The answer is "III only"

Explanation:

An accessor method is also an instance function that receives or establishes the value of an object's properties. This method is called methods through obtaining information about an entity. This method reverses it to process, which has two accessory string techniques to reach source string data reference length Accessor method.

Skyler is ready to transfer his Webpage files from his computer to a Web server. Which of the
following is a set of rules that enables his large Webpage files to be exchanged between his
computer and the Web server?
O FTP
O SSH
O HTTP
O SSL

Answers

Answer:

FTP

Explanation:

FTP (File Transfer Protocol) is a protocol that allows the transfer of files across different machines.

Select the correct answer.
What is also known as a visual aid in a presentation?
OA. background
OB. animation
OC. review
OD. slide.

Answers

Answer: Slide

Explanation:

A visual aid is something which makes the viewer under the presentation without using the audio and it enhances the presentation. The photographs, graphs, charts are usually included in the slides to make people understand the presentation more clearly.

The slides includes the information in a written form and along with it are attached some photos, pie charts, et cetera.

So, even when the people are not listening to the presentation they can understand the presentation.

please help i will give brainliest if right

Which elements are part of the Outlook interface? Check all that apply.

Ribbon
Quick Access Toolbar
Comments Box
Reading Pane
Formula Bar
Command Groups

Answers

Answer:

Ribbon, Quick Access Toolbar, Reading Pane, Command Groups

Explanation:

I did it on edge 2021

The elements which are part of the Outlook interface include ribbon, quick access toolbar, reading pane, and command groups. Therefore, the correct options are A, B, D, and F.

What is Outlook interface?

Outlook Main Interface is the folder pane. Outlook interface usually displays on the left hand side of the screen, and it helps in the Outlook users to switch to different folders and different views in the operating system such as mails, calendar, people, task, notes and all folders.

Basic features of Outlook interface include email service, email search, flagging, and color coding, along with the preview pane options. The calendar function enables scheduling, viewing, and communicating about the different appointments and meetings.

The main elements of the Outlook window include the ribbon, Quick Access Toolbar, Reading Pane, Command Groups.

Therefore, the correct options are A, B, D, and F.

Learn more about Outlook interface here:

https://brainly.com/question/19018627

#SPJ2

Type the correct answer in the box. Spell all words correctly.

Isabella plans to work as a freelance DTP publisher. Her DTP setup is a non-Apple Macintosh platform. She has several options for printers. Which type of printer would you recommend to her?

__(blank)__ printers are ideal for DTP projects that work on a non-Apple Macintosh platform.

Answers

Answer:

hp deskjet 2543

Explanation:

whats ur favorite video game​

Answers

Answer:

Minecraft has always been my favorite

Answer:

Far Cry 5. It has a great story line and it's lots of fun

Explanation:

how many string object are in 128,55 in python

Answers

Answer:

Explanation:

In the following examples, input and output are distinguished by the presence or absence of prompts (>>> and …): to repeat the example, you must type everything after the prompt, when the prompt appears; lines that do not begin with a prompt are output from the interpreter. Note that a secondary prompt on a line by itself in an example means you must type a blank line; this is used to end a multi-line command.

Many of the examples in this manual, even those entered at the interactive prompt, include comments. Comments in Python start with the hash character, #, and extend to the end of the physical line. A comment may appear at the start of a line or following whitespace or code, but not within a string literal. A hash character within a string literal is just a hash character. Since comments are to clarify code and are not interpreted by Python, they may be omitted when typing in examples.

There are 4 strings within the best_list. Strings can be easily identified becuase they're surrounded with quotes. For example, "hello" is a string because it has the quotes around it.

Describe what is involved in the first 4 stages of a research project.

Answers

Well,

1 pick your topic of research
2, research the topic.
3, look at the data surrounding the topic.
4, record the data.

Choose the correct option to fill in each blank.
In ___ parallelism, the computer divides a task into
___, which it then allocates to different processors for execution.

Blank 1:
Data-level parallelism
Instruction-level parallelism
Task-Level parallelism

Blank 2:
Subprograms
Subtasks
Submodules

Answers

Answer:

Blank 1:  Task level parrallelism

Blank 2:  Sub Tasks

Explanation:

Task Parallelism means concurrent execution of the different task on multiple computing cores.

Consider again our example above, an example of task parallelism might involve two threads, each performing a unique statistical operation on the array of elements. Again The threads are operating in parallel on separate computing cores, but each is performing a unique operation.

Answer:

In task-level parallelism parallelism, the computer divides a task into subtasks , which it then allocates to different processors for execution.

1. While cell phones provide Freedom and mobility,they can also become a leash, compelling user's to answer them anywhere and anytime​

Answers

Cellular phones have had a major impact on our lives and the way that we perform every day tasks. Many of these changes are apparent, while others we may not even be aware of.

Cell phones have brought a whole new meaning to the term multitasking. Twenty years ago, it was not possible to talk to the office while you were at the grocery store picking up some necessary items. You could never have had a three-way business conference while you were fixing dinner or been able to deal with a business client from home while caring for a sick child.

7.2.7: Part 1, Replace a Letter

"Write a function named replace_at_index that takes a string and an integer. The function should return a new string that is the same as the old string, EXCEPT with a dash in place of whatever character was at the index indicated by the integer.

Call your function on the word eggplant and the index 3, like this:

s = replace_at_index("eggplant", 3)
You should then print the value of s, which should display:

egg-lant"

Answers

Answer:

def replace_at_index(string, index):

   return string[0:index]+"-"+string[index+1:]

   

replaced_word = replace_at_index("house", 0)

print(replaced_word)

Explanation:

simpler version

The Function that is used to name replace_at_index that takes a string and an integer is as follows:

def replace_at_index(string, index):

            return string[0:index]+"-"+string[index+1:]

       replaced_word = replace_at_index("house", 0)

           print(replaced_word).

What is the significance of the programming function?

The significance of the programming function is determined by the fact that it sanctions programmers in order to breach or disintegrate a problem into smaller chunks. Each of these smaller chunks usually performs a particular task.

Functions are specifically utilized by the user in order to execute certain actions, and they are important for reusing code. They usually define the code once and use it multiple times with the same efficacy and accuracy.  These collections of codes develop a function.

Therefore, the function that is used to name replace_at_index that takes a string and an integer is well described above.

To learn more about Computer's functions, refer to the link:

https://brainly.com/question/179886

#SPJ3

I REALLY Need help on this.

Answers

Make a deposit talk to A representative transfer money and Check account balance

Is this good enought to record and edit in 4k UHD? (Ultra High Definition)

Answers

Answer:

It should be, yes

Explanation:

It is yes in my opinion at least so b is the answer

anybody remember that football game that everyone used to play during school

Answers

Answer:

Like an actual video game or the one where you would play during recess then get in trouble when someone got hurt

Explanation:

Which expression is equivalent to 3x + 3x + 3x?

From Performance Matters

Answers

9x because you can add 3x+3x+3x because they are the same and can be added
Answer:
The answer is 9x

i was scripting for my game design clas and i was just creating a story based game. its not really a question but could you guys (meaning fellow users) give it a go? not done yet tho..

file:///C:/Users/Gamer_x9/Downloads/A%20New%20Beginning.html

its not an adobe link that pulls another tab dw i would never

Answers

Answer: sure thing

Explanation:

Which of the following is an example of a logic error in programming?

A: Not using quotation marks and parentheses to print a string literal

B: Printing an inaccurate statement, like print("Dogs have wings.")

C: Trying to perform an impossible task, like 5 / 0

D:Using camelcase when a variable name contains two or more words

Answers

Answer:

It's C

Explanation:

Amy wants to make an exact replica of a specific area in an image. Which tool Amy will use?

Answers

Answer:

Explanation:

.

How do you describe packet switching in your own words

Answers

Answer:

this is your answer bhaiya

(04.03 LC)
When you select a slide from the slide pane, what appearance indicates which slide you have chosen?

The slide appears grey.

The slide is circled.

The slide is outlined.

The slide is highlighted.

Answers

Answer:

The slide turns grey!!

Explanation:

Im in LVS and just took this test!! Good Luck!!

Answer:

doesn't it get outlined?

Explanation: i dont know man i'm trying to take the test

The computer code behind password input can be modified to force people to change their password for security reasons. This is known as “password expiration,” and some websites and companies use it regularly. However, people tend to choose new passwords that are too similar to their old ones, so this practice has not proven to be very effective (Chiasson & van Oorschot, 2015). Your friends have a hard time remembering passwords. What method can you devise for them so that they can remember their new passwords AND make them very different from the old ones?

Answers

Answer:

to remember the passwords you could either make a little rhyme to "help" remember it or you could be like everyone else and write it down on a piece of paper. you could also write the password over and over again to make it stick. a way to make a password different from an old one is to use completely different wording and completely different numbers.

Explanation:

KAPWING Video Editing Software allows you to use existing You Tube Videos in your design.

Answers

Answer:

Yea it should, it depends are you using a phone or a PC? because most of the time internally built in editing software on computers is better.

The success criteria are used to judge whether a project is successful. False True
need it now

Answers

Answer:

True True True True

Answer:

true

Explanation:

Why is it a good idea not to change the subject line when replying to a message?
O so that the reply is sent to the original sender
O so that the reply does not bounce back as undeliverable
O so that the reply matches with the sender's original message
O so that the reply does not inadvertently include unintended recipients

Answers

Answer:

the correct answer is C

Explanation: i just did it on edge 2021

Answer:

C. so that the reply matches with the sender’s original message

Explanation:

. Which of the following are container elements?

a. bold b. underline c. italics d. all of these

Answers

It’s c cba to explain

Answer:

I think letter b. underline, but not sure

What is problem scoping brief explanation in Artificial intelligence

Answers

Answer:

prime minister of england

If you could represent yourself with one object from your home what would it be ?

Answers

Answer:

cross

bc im religous and stuff (0_0)

Answer:

def would be food

Explanation:

i would represent myself with a macaron

I need an open response pleaseeeeeee

The format is "Describe‌ ‌the‌ ‌smart‌ ‌home‌ ‌devices‌ ‌impact‌ ‌of‌ ‌technology‌ ‌on education"

Answers

Answer:

Explanation:

Smart Home devices have had a large impact on education. It has allowed students of all ages to better understand the concept of interconnected devices and artificial intelligence. This alone has also opened up a new door of information by allowing for instant answers to question through such smart home devices as Alexa or Home. Which are artificial intelligence virtual assistants.

PLEASE HELP ME !!!!!!!!

Answers

Answer:

This is way to long

Explanation:

who was the first guy who find video games​

Answers

Answer:

Ralph Baer

Explanation:

shows the prototype of the first games console which was invented by him during a press conference on the Games Convention Online in Leipzig

Answer: Inventor Ralph Baer

Explanation:

German-American game developer Ralph Baer shows the prototype of the first games console which was invented by him during a press conference on the Games Convention Online in Leipzig, Germany in 2009. Baer died on Saturday. He was 92.

Other Questions
The function of a retail of purchasing cooperative or "co-op" is toCorrect answer A. obtain lower prices for members.Incorrect answer B. work to improve the image and working conditions of members.Incorrect answer C. save income taxes for members.Incorrect answer D. sell the goods or services produced by members. What was one cause of the population spike during the Industrial Revolution?Athe baby boomBthe agricultural revolutionCthe rise of textile factoriesDnew theories about childbirth15 points cus Im kinda broke :) Investors buy a studio apartment for 240,000. Of this amount, they have a down payment of 60,000. Their down payment is what percent of the purchase price? what would be the most beneficial towards maintaining equilibrium in an ecosystem over a long period of time? a)organisms imported by humans from other environments b)a sudden change in climate c) a diversity of organisms d)predators eliminated from the food chains The gardener charged $0.50 per plant and $75 to plant all them given a number n for each integer i in the range from 1 to n inclusive print one value per line as follows fizzbuzz if __name__ A rocket is launched from a tower. The height of the rocket, y in feet, is related to the time after launch, x in seconds, by the given equation. Using this equation, find the time that the rocket will hit the ground, to the nearest 100th of second.y=-16x^2+116x+75 Robin saves $500 at a yearly simple interest rate of 4%. What is the total amount of money she has after 20 years? Need help right nowwww!! Which graph represents a function Suppose the United States chose to legalize the production and use of marijuana, but also decided to put a tax on the good. After doing so, suppose that the price that consumers paid fell, and the amount that growers got to keep also fell. This would Anna planted 90 bulbs in 60 minutes minutes. At this rate, how many bulbs can Anna plant in 2.5 hours?90150225250 What is the sum of all prime numbers beetween 30 to 60? based on the results, what is the experimental probability that the puppy will be named lemon or linus? in your opinion did the speaker actually hear a ghost The Tell-Tale Heart - poeHow does the narrator know the old man? When an old building is to be torn down, Mr. Phams company removes the bricks, cleans off the mortar from the bricks, and then sells the bricks to companies that restore historic buildings. Which compound is Mr. Phams company most likely to use in its work?hydrochloric acidnitric acidsodium hydroxidelithium hydroxide There are 100 socks in a bag. 75 out of those are blue. What is the probability of picking a blue sock randomly out of the bag. Define the term tissue and discuss the four principal types of tissue, the base functions of each and the process by which they develope! is this equation linear or exponential f(x)=2x+1