Which best explains a password attached to a document?

O There is a private password for the user and a public one for the viewer.

O If a user forgets the password, it cannot be recovered.

O Passwords typically are not case-sensitive.

O Using a document to store the password is not allowed.

Answers

Answer 1

Answer:

Explanation:

Going through the options:

O Passwords typically are not case-sensitive.

Passwords are typically case-sensitive.

O Using a document to store the password is not allowed.

It is not recommended but definitely allowed to store passwords in document.

O If a user forgets the password, it cannot be recovered.

Lost password cannot be recovered easily but not impossible.

The only choice left is

O There is a private password for the user and a public one for the viewer.

It describes a set of public and private key password used to allow sharing of encrypted files between user and viewers.

So the only answer left which is correct:

O If a user forgets the password, it cannot be recovered.

Answer 2

Answer:

Explanation:

ans is B.O If a user forgets the password, it cannot be recovered.


Related Questions

How can I restore tabs that just unexpectedly close out of nowhere ?

Answers

Answer:

hit control, shift, and t at the same time

Explanation:

this should work

Implement the function printTwoLargest that inputs an arbitrary number of positive numbers from the user. The input of numbers stops when the first negative or zero value is entered by the user. The function then prints the two largest values entered by the user. If fewer than two distinct positive numbers are entered a message to that effect is printed instead of printing any numbers. Hint: Duplicates will cause problems. Try to make sure that you find a way to ignore them.

Answers

Answer:

The function in Python is as follows:

def printTwoLargest():

   chk = 0

   list1 = []

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

   while num > 0:

       for i in list1:

           if i == num:

               chk+=1

               break;

       if chk == 0:

           list1.append(num)

       chk = 0

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

   list1.sort()

   if len(list1) >= 2:

       print("Largest:", list1[-1])

       print("Second:", list1[-2])

   else:

       print("Length of list must be at least 2")

Explanation:

This defines the function

def printTwoLargest():

This initializes a check variable to 0

   chk = 0

This initializes an empty list

   list1 = []

This prompts the user for input

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

The following loop is repeated until input is 0 or negative

   while num > 0:

The following for loop checks for duplicate

       for i in list1:

           if i == num: If duplicate is found

               chk+=1 The check variable is set to 1

               break; And the for loop is exited

The input is appended to the list if the check variable is 0 (i.e. no duplicate)

       if chk == 0:

           list1.append(num)

This sets the check variable back to 0, for another input

       chk = 0

This prompts the user for another input

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

This sorts the list

   list1.sort()

This prints the two largest if valid user input is 2 or more

   if len(list1) >= 2:

       print("Largest:", list1[-1])

       print("Second:", list1[-2])

if otherwise, this prints that the length must be at least 2

   else:

       print("Length of list must be at least 2")

Put the steps in order to produce the output shown below. Assume the indenting will be correct in the program.
JDoe
1. Line 1
answer = username ('Joann', 'Doe')
2. Line 2
print (answer)
3. Line 3
def username (strFirst, strLast):
4. Line 4
return strFirst[O] + strLast

Answers

Answer:

The correct code is:

def username (strFirst, strLast):

      return strFirst[O] + strLast

answer = username ('Joann', 'Doe')

print (answer)

Explanation:

The given code illustrates the use of functions.

i.e passing values to a function and retrieving values from it

So, first: We start with the def statement

def username (strFirst, strLast): ----> This defines the function

Then the return statement

      return strFirst[O] + strLast --- > This passes value to the main

Next, is the main function of the program which is:

answer = username ('Joann', 'Doe') ---> This passes values to the username function

print (answer) ---> This prints the returned value from the function

What type of information is appropriate for headers and footers? Check all that apply.
media
SmartArt
date and time
charts or graphs
O copyright notice
ООО
slide/page number
company or author's name

Answers

Answer:

Date and time

Copyright Notice

Slide/Page Number

Company or author's name.

Explanation:

Just did it.

Answer:

C. date and time

E. copyright notice

F. slide/page number

G. company or author’s name

Explanation:

hope this helps :)

Manny wants to create a new database. He has opened the database software and he has selected a new blank database. He has also named the database. What should he do next?


A. Enter field names.

B. Save the database.

C. Open the table.

D. Create a primary key.

Answers

B is the answer to the question

Puede pasar de un estado de bloqueo a un estado de conducción en ambos sentidos de polarización, aplicando un pulso de tensión en la puerta.

Answers

Answer:s

Explanation:n

"Cookies cannot reliably identify individual users." Which of the following is the reason for the statement shown above? Group of answer choices Cookies assigned by Web servers are prone to duplication. The US government has banned the use of cookies for user identification. The explosion in Internet-enabled mobile devices has resulted in an acute shortage of IP addresses. Internet service providers assign arbitrary IP addresses to devices accessing the Internet from the same network. Individual users use different browsers on the same computer to surf the Web.

Answers

Answer: Individual users use different browsers on the same computer to surf the Web.

Explanation:

Cookies are referred to as the text files that contains small pieces of data such as username and password which can be used in the identification of the computer of the user when the user uses a particular network.

The main reason why cookies cannot reliably identify individual users is due to the fact that individual users use different browsers on the same computer to surf the Web.

i need an quote for a ad im using gatorade

Answers

Answer

Want the best aid for after a game, then try some Gatorade!

Explanation:

Hope this helps lol! plz mark as brainliest!

Felicity wants to capture the attention of the regular subway commuters in her area though her print advertisements​

Answers

Answer: billboard

Explanation:

Plato answer

100 POINTS!
Which options are available to users when using the Broadcast Slide Show dialog box? Check all that apply.

Edit Slide Show
Copy Link
Send in Email
Start Slide Show
Attach as PDF
Paste Link

Answers

Answer:

Edit Slide Show

Copy Link

Send in Email

Start Slide Show

Paste Link

Answer:

Edit Slide Show

Copy Link

Send in Email

Start Slide Show

Paste Link

Type the correct answer in the box. Spell all words correctly.
Which type of cable would a network company lay if it wants to provide fast connectivity without electrical interference?
The company should use (blank) cables to provide fast connectivity without electrical interference.

Answers

Answer:

network cables also plz mark as brainly would really help

Explanation:

The type of cable that a network company can lay if it wants to provide fast connectivity without electrical interference is network cable.

What is network cable?

Networking cables are known to be tools that are used in networking hardware so that they can be able to connect one network device to another.

Note that The type of cable that a network company can lay if it wants to provide fast connectivity without electrical interference is network cable.

Learn more about cables from

https://brainly.com/question/14705070

#SPJ2

Mateo wants the words “It’s snowing!” to appear in the interpreter and typed print (It's snowing). This didn’t work. What needs to be added to the code?
quotation marks
a backslash
a period
a functional code

Answers

Answer:

print("It's snowing")

Explanation:

since it a string you need put quotation marks the code does not understand just (It's snowing) because it thinks it variable which it is not

Es la actividad que posibilita comunicar gráficamente ideas, hechos y valores procesados y sintetizados en términos de forma y comunicación, factores sociales, culturales, económicos, estéticos y tecnológicos

Answers

Answer:

La estadística es una rama de las matemáticas aplicadas que se ocupa de la recopilación, evaluación, análisis y presentación de datos o información. El trabajo también utiliza elementos de cognición, psicología, informática y ciencias de sistemas, cálculos numéricos y contribuciones de otras materias que tratan de matemáticas, datos y métodos informáticos intensivos.

El resultado, también llamado estadística, a menudo se presenta en forma numérica en números absolutos, números de frecuencia, números proporcionales, promedios, en tablas con series de tiempo o con otros números comparativos y a menudo también se ilustra en diagramas o figuras. El resultado se usa en parte para mostrar cómo se maneja algo en este momento y en parte como una herramienta para predecir eventos futuros mediante inducción. La estadística se utiliza en muchas disciplinas científicas, desde las ciencias naturales hasta las humanidades, pero también en la política y los negocios.

a guideline that defines how the data in a database is processed is known as what

a. Business rule
b. Object
c. Requirement
d. Data dictionary

Answers

I believe the answer is D.

**NEED THE ANSWER ASAP** Which print option should be selected to minimize the number of pages required to print the content of my presentation?

A. Handouts
B. Note Pages
C. Slides
D. Outline

Answers

Either a note page or some handouts
Brainiest?

Which step in the software development life cycle involves writing pseudocode?

O Coding
O Design
O Maintenance
O Testing ​

Answers

O Design .

hope it helps :-) .

yes, design is the correct answer

A 1600 kilogram truck is moving at a speed of 12 m/s. How much kinetic energy does the car have?

Answers

Answer:

which one?

Explanation:

Which of the following items is the best list of items to bring to a job interview?
O copies of your resume, cellphone with contacts at the company, and a snack to share
copies of your academic work, written responses to interview questions, and a pen and paper to take notes
O copies of your cover letter, the contact information for your interviewer, and a voice recorder
O copies of your resume, the contact information for your interviewer and a pen and paper to take notes

Answers

i’d say the last one the other ones are just silly

Answer:

I am not exactly sure but I think it is:

D. Copies of your resume, the contact information for your interviewer and a pen and paper to take notes

Explanation:

4. Describe how changes in society's attitude toward people in wheelchairs may
have led to changes in the wheelchairs available to people who need them.
Were these changes made using science or technology or both?​

Answers

I don’t really know but peoples attitude towards people in wheelchairs is a great change for people that actually need them it went to being push or half to roll you self with the metal on the wheels and sure we still have those but that’s permanent most of the time.now people have battery powered wheel chair that make peoples life’s a lot easier

Which of the following best describes the difference between the domain and path of a URL?

Answers

Answer:

the first choice

Explanation:

The Uniform Resource Locator is being used to clarify Internet Web addresses. For any and all web-based assets, a URL is the basic network identity, and the further discussion can be defined as follows:

A domain is indeed the website name, a URL is how a site is located, and then when folks get somewhere a website seems to be the way that people see and interact with that as well.The name of the domain is indeed the address that you'll be going to type to a website in the address bar.The path is indeed the exact location of the page, post, file, or other property.It frequently analogously recognizes a particular resource in the host the web client wants to reach, the underlying file structures of the website.

Therefore, the final answer is "First Choice".

Learn more:

brainly.com/question/17331722

Explain benefits and disadvantages of using BNC over F-Type connectors on coaxial cables

Answers

Answer:

The benefits and disadvantages of using BNC over F-Type connectors on coaxial cables are;

The benefits of the BNC includes;

1) Easy connect and disconnect for a more rapid connection unlike the F-Type connector which is a screw connector

2) Reduction on stress on the termination of the coaxial cable

3) Appropriate in systems that see frequent reconfiguration unlike te F-Type connector that is permanently attached

4) Prevent unwanted disconnection ensuring image consistency by locking into place

5) Can extend to 300 ft.

The disadvantages of the BNC connectors are;

1) A separate power supply for the cable is required

2) Is used only for video transmission

3) Cannot be used for audio

4) The center wire is not easily visible like those of the F-Type connector which serves as a pin

5) The BNC connector is not watertight like the F-Type connectors

6) There are no provision for properly and securely attaching the cable to the camera for field work such that it can be easily disconnected while in use unlike the F-Type connectors

7) It is not as easy to manufacture like the F-Type connector and it is more expensive

8) The installation of the BNC connector on a coaxial cable is more intricate and the center cable is hidden from view after the BNC is attached thereby making it not possible to see if there is an error in installation which is unlike the F-type connector that takes less than 30 seconds to be attached to a cable

9) The F-Type connector provides more cost savings during installation than the BNC connector

Explanation:

The BNC connector is a type of bayonet connector used more frequently on CCTV systems. The benefits of the BNC includes;

The F-Type connectors are usable on SATV, CATV, and Digital TV where they are used together with RG6 or RG11 cables

Which of the statements below describe how to print a document?

Click on the Print icon at the tip of the screen.

Click on Print in the system tray.

Select Print from the Start menu.

Select Print from the File menu.


(On the picture above is what I have plz let me know if I’m wrong)

Answers

I pretty sure it’s the first one also I don’t think that you pick two answers because it does not say to do so

Pleassseeeee helppp!!!!

Answers

Answer:

html

Explanation:

Silas develops this algorithm to compute the calories burned for an activity for a given number of minutes and body weight: If the activity is running, compute caloriesPerMin by dividing weight by 10.5 If the activity is walking, compute caloriesPerMin by dividing weight by 15.5 Compute numCalories by multiplying caloriesPerMin by numMinutes He implements the algorithm in an app, and users soon ask for the ability to compute the total calories for multiple sessions of walking or running. What structure must be added to the original algorithm so that it can compute the total across multiple sessions

Answers

Answer:

Explanation:

This change can be accomplished in one of two ways. The first being creating a global variable that adds to it and saves the total calories burned at the end of every session. This global variable can then be called at any time to show the total number of calories burned in all previous sessions combined. The other option would be to create a list of Session objects. Each object would hold all the information regarding each session including calories burned. Then create a function that loops through this list, adding the total calories burned in each session and outputting the total.

can anyone help??
10*11+101
thank you ✨ for helping.!​

Answers

Answer:

211

Explanation:

Answer:

211

Explanation:

Hi:)

someone, please answer this.

This lesson showed you the general form of the syntax for a for loop in JavaScript:for

(initialize counter; condition; update counter) {code block;}

What does each part do, and why is it necessary?

Answers

Answer: A loop will continue running until the defined condition returns false . ... You can type js for , js while or js do while to get more info on any of these. ... initialization - Run before the first execution on the loop. ... But it can be used to decrement a counter too. statement - Code to be repeated in the loop.

Explanation:

Who clarified the binary system of algebra​

Answers

Answer:

Really good mine Bella

Explanation:

Yes it is it’s c with a L

Using the drop-down menus, correctly complete the sentences.
A(n)
vis a set of step-by-step instructions that tell a computer exactly what to do.
The first step in creating a computer program is defining a(n)
the next step is creating a(n)
v problem that can be solved by a computer program.
A person writing a computer program is called a(n)

Answers

Answer:

It is  computer program , Problem, Logic, Programmer

Explanation:

on edge

HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP

Answers

Answer:

I should be C! :D

Answer:

B

Explanation:

What happens if a computer lags too much?

Answers

Answer: Hope This Helps!

Explanation:

This mainly happens when your OS is trying to update or send data to the data center and installed software is downloading or uploading data in the background. Also, it can be the hard disk is probably just too old. You can replace an old hard drive. In fact, it’s recommended before lagging is replaced by the blue screen of death. A new hard disk drive won’t cost a lot of money. Also, it can be that you touched a notification that popped up on your computer and it downloaded a virus which you have to go to a tech to fix if you dont have anti virus protector. And if it keeps going that means it can overheat or just breakdown and never work again.

Other Questions
100 pts just tell me how your day is or simply say hello whichever you prefer how are you today?, i just want to let you know you are doing great! i'm proud of you for still being here today! i know life is life.. but stay strong kings and Queens and anything in between you are loved! you are Very, Beautiful/ Handsome! Do not change for anyone! Whats the value of x Brooke has been asked to present on the topic below.Persuade students to participate in the annual seventh-grade Fun Run.What would be the most effective claim for this presentation?a. Join in the Fun Run to help a good cause, make friends, and get healthy.b. If seventy-five percent of the seventh-grade runs, we will earn money for gym equipment.c. Students at Sandburg Middle School held a Fun Run last September.d. Studies show that students who exercise perform well in classwork. 1/6write the fraction as a decimal (round to the nearest hundredth, if necessary)write as a percent Which one has the objective of "long-term financial success"? A. PlottingB. SpendingC. SavingD. Investing A circle has a radius of 12 centimeters. Which expression gives the circumference of the circle, incentimeters? . (12)B. 27(12)C. (127)D. 24(122) Which of these is the correct order of these steps?O 2, 1, 3, 4O 1, 2, 3, 4O 4, 1, 2, 3O 4, 2, 3,1Mark this and retumSave and ExitNext 1. Identify 5 items that your parent or guardian pays for regularly each month.2. Why do you think its important that your parent or guardian sets aside money for these items each month? Help with all 4 asap thanks In a class of 30 students, 13 have a brother and 8 have a sister. There are 3 students who have a brother and a sister. What is the probability that a student who has a sister also has a brother?Answer 3/8 Amap of a secret trail to the of Mount mayon what effect did the space race between the soviets and the u.s. have on american society and culture Which is the strongest predictor of whether a person will or will not vote? A) age B) education C) gender D) wealth Does the half life of oxygen-18 impacts its use ( explain) Which of these fibers has the longest filament?CottonWoolLinenSilk Find the area of the circle to the nearest hundredth. Que significa la familia es el lugar donde aprendemos y empezamos a amar y a ser amados? Solve for x: 5x + 15 = 75 What is the main type of conflict in the story "The Lottery" by Shirley Jackson?character versus charactercharacter versus societycharacter versus selfcharacter versus nature Two cards are drawn at random from a standard deck without replacement. Which of the followingrepresents the probability that the two cards drawn are either both kings or both queens?