What does confidentiality of data refer to?
a) Rules which hide data
b) Rules which prevent data from being changed
c) Rules which allow access only to all parties
d) Rules which restrict access only to those who need to know

Answers

Answer 1

d) Rules which restrict access only to those who need to know
Answer 2
A,rules which hide data

Related Questions

Dawn needs to insert a macro into a word document. Where can she find the insert macro dialog box?

Answers

Answer:

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

Explanation:

To insert a macro into a word document, she needs to perform the following steps to find the insert macro dialog box.

Go to View tab on the tab ribbonas you click on View tab, you will see a different set of commands and functions, you will find Macro dropdown buttonClick on View Macro optionAn Insert dialog box of Macros will appear, wherefrom she can select and insert the available macro into the document.

       

   

Answer:

B developer tab

Explanation:

Hope its right! Have a good day.

Helllpppp me please!!!! The miniaturization of which of the following inventions allowed integrated circuits to get smaller, leading to the creation of
the microprocessor?
microchip
electronic circuit
vacuum tube
transistor

Answers

Answer:

A

Explanation:

The Microchip inventions allowed integrated circuits to get smaller, leading to the creation of the microprocessor. Option A is correct.

What is the Microchip?

A microchip offers dependable, safe, and permanent identification, increasing the possibility that the missing pet will be returned to you. A microchip is only useful if it is registered in a pet recovery database with current contact information.

An integrated circuit, sometimes known as a monolithic integrated circuit, is a collection of electrical circuits built on a single compact flat piece of semiconductor material, often silicon.

A microchip is a radio-frequency identification transponder the size of a grain of rice that has a unique identifying number. When a vet or shelter scans the microchip, the ID number is transmitted. There is no battery, no need for electricity, and no moving parts.

Therefore, option A is correct.

Learn more about the Microchip, refer to:

https://brainly.com/question/21106759

#SPJ2

A workstation has been moved from the first floor to the fifth floor within an organization. The user is now reporting that the workstation cannot connect to the network. A technician suspects that the workstation could not obtain an IP address from a DHCP server. What is a possible cause of the problem?

Answers

Answer:

The workstation has been configured with a static IP address.

Explanation:

A computer network connects two or more computers together. It provides this interconnection between them using several protocols.

A computer in a network is called a node or workstation and must have an IP address. IP addresses can be assigned statically or dynamically. The static IP address permits the administration to manually configure the IP address, while dynamic addressing is done by the DHCP server protocol.

If a workstation is moved from a network of workstations with static addresses to a dynamically assigned address network, it should be configured to a DHCP server or its static address may conflict or not exist in the network.

What is some advice you would give someone who is just starting online learning 2 sentences

Answers

Answer:

It sucks. But i would say if you get behind do your homework for that day and then doing one or two missing assignments. It really helps to take more notes than you would in actual school because its harder to ask the teacher for help.

Explanation:

over the past few years a very definite need has arisen in the electrical trades for:

Answers

Data and communication wiring technicians. Run Ethernet/cat5, 5e from switch and server rooms to outlying jacks for PC users. Tagging wires, testing db loss and other cable polarization spec’s

In other words, no longer just power wiring components and techniques.

The bindery process of cutting irregular shapes and patterns in press sheets is called what?

a. stitching
b. die cutting
c. comb binding
d. folding​

Answers

B. Die cutting. Typically a metal die with various shapes and patterns is rolled over paper, cardboard, etc to punch out.

rq+6=8-5+32=?


do not answer this question unless you have the full response

Answers

Answer:

i will help hold on

Explanation:

Answer:

i have the answer dm on on inxta at nattybatter

Explanation:

Can you clone apps form your PC and to other PC?
Yes or No

Answers

Answer:

Yes, a USB cable can help transfer data you obtained to another PC.

Explanation:

Hope this helps :)

Yes. ^^^ they are correct

Does anybody have the code to 2.19.5: Circle Pyramid 2.0 in CodeHS?

Answers

Answer:

Not rlly im only missing one of the check marks so here if yall find out what to do pls tell me in the comments

Explanation:

#WHat the actual frik

speed(0)

radius = 25

penup()

setposition(-150,-60)

   

   

def move_to_row(num_circ):

   x_value = -((num_circ*5)/2)

   y_value = -200+(5*radius)

   penup()

   setposition(x_value,y_value)

   pendown()

def row_value(num_circ):

   for i in range(num_circ):

       for i in range(4):

           pendown()

           circle(radius)

           penup()

       forward(70)

num_circ=int(input("How many circles on the bottom row? (8 or less): "))

for i in range(num_circ):

   move_to_row(num_circ)

   radius=radius+1

   row_value(num_circ)

   num_circ=num_circ-1

what is the true colar of water

Answers

Answer:

blue

Explanation:

becausse it's blue and it's water

It’s translucent it doesn’t have a color it looks blue cause of the sky?

LEAF library in py can be expressed in what form?

Answers

Answer:

In open form

Explanation:

Why does people report me on here when I say some of the things they ask on here isn't school related just some uncalled for things? I know this is probably uncalled for but still why do they do that

Answers

Answer:

I don't know maybe people don't like anything school related

Explanation:

Answer:

I don't know maybe people don't like anything school related

Modify the guessing-game program so that the user thinks of a number that the computer must guess.



The computer must make no more than the minimum number of guesses, and it must prevent the user from cheating by entering misleading hints.

Answers

Answer:

Follows are the code to this question

import random as R #import randaom package

import math as M #import randaom package

S= int(input("Input smaller number: "))#defining variable and input value

L= int(input("Input larger number: "))#defining variable and input value

C= 0#defining variable and assign value

while True:#define loop

   C+= 1#count value

   num= (S+L) // 2#calculate average

   print('%d %d' % (S,L))#print value

   print('number : %d' % num)#print average

   choice = input('Input =, <, or >: ')#input value in choice variable

   if choice == '=':#define if to check value

       print("Hooray, you get %d tries" % C)#print message

       break#use break  

   elif S==L:#defining and condition to check it is equal

       print("I'm out from the guesses, and you cheat")#print message

       break#use break

   elif choice == '<':#defining another condition to check

       L = num - 1#calculate larger value

   else:#else  

       S= num + 1# calculate smaller value

Output:

please find the attached file.

Explanation:

In the code first, we import the "math and random" package, then two-variable "S and L" is defined, in which it is used to input the value from the user-end, and variable "c" is defined to count the value.

In the next step, a while loop is defined, that uses the input value and print its average vale, and the choice variable to input the symbol value and use the conditional statement, which is defined as follows:

In if block, if the choice is equal it will print a message.In elif s is equal to l it will print message.In elif, the choice is "<" it will calculate the less value and print its value, otherwise, it will go in else, in this it calculates the value of "S".

Which is the best description of the difference between bound and unbound forms? O Bound forms are similar to hierarchical forms but pop up in a separate window, while unbound forms are flat forms that do not have subforms. O Bound forms are linked to a table or query, while unbound forms are not linked to a table or query but are used to operate and navigate a database. O Bound forms perform tasks based on user input, while unbound forms navigate between multiple forms. O Bound forms are the basic interface for inputting information into tables or queries, while unbound forms ha more subforms within the main form. one or​

Answers

i think it’s B not sure tho

Answer:

B. Bound forms are linked to a table or query, while unbound forms are not linked to a table or query but are used to operate and navigate a database.

Explanation:

Which game is better? Among us or ROBLOX -

Answers

Answer:

Both are equally good, but Roblox is better for kids

Explanation:

This is because when you are imposter and kill someone it shows a bone and there is a bit of blood!

Answer:

Gud question...

Explanation:

Among us is violent

Roblox is good for kids

so 50 50

why does this site force you to make an account to get literally anything at all i want to pass the 9th grade not watch 5 ads per question

Answers

Answer:

They do anything for money sis

Explanation:

What do you think could be done to encourage more women to study computer science

Answers

   many top colleges are making efforts to recruit female computer science students, making it an ideal time for women to pursue computer science degrees. The computer science field has been trying to appeal more to female employees by moving toward longer maternity leave and better work-life balance for working moms. I think that there have been great strides in encouraging women and minorities to consider studying computer science. I see increased interest and participation among women and minorities in my community and it is encouraging, however, I also recognize that I live in a pretty unique place. To combat this type of challenge, I think we need to continue to normalize the idea of females in Computer Science and also expand the programs outside of big cities and academic towns.

Explanation: these are reasons why women should do computer science.

hope this helps :)

witchs one better mr beast or pewdiepie















(mrbeast)

Answers

Answer:

MR BEAST IS MR BEST

Explanation:

ANSWER: Mr. Beast because he does not buy subscribers

How much can a INIVDA 1050 TI take? (FPS wise)

Answers

Answer:

At full graphics (ultra settings, full HD resolution), tests can range from 60-65 fps, 65.5 fps being the max.

Explanation:

You can benchmark graphics cards using in-game stress tests/benchmark tests or using a separate benchmarking software.

NVIDIA 1050 Ti's are now slightly outdated. Nevertheless, it is now significantly cheaper.

Media refers to a worldwide educational movement that aims to teach to people to understand how the media

affect both individuals and society as a whole.

literacy

consolidation

socialization

effects

NEXT QUESTION

READ NEXT SECTION

ASK FOR HELP

TURN IT IN

2014 Glynlyon, Inc. All rights reserved

Answers

Answer:

Media literacy refers to a worldwide educational movement that aims to teach people to understand how the media affects both individuals and society as a whole.

Explanation:

Media literacy is the ability to know and learn about the various practices that allow a person to be knowledgeable about the various elements of the media. It allows people to gain access to any content, evaluate or even create and use the media in whatever way they wish to.

But at the same time, while educating people about the media, it also helps people learn about the effects of media, be it individually or socially. Thus, in short, media literacy can be defined as educating or imparting information about the advantages and disadvantages of the media for a person.

What are the different kinds of program control structures?

Answers

Answer:

Flow of Control:

Flow of control through any given function is implemented with three basic types of control structures:

Sequential: default mode. Sequential execution of code statements (one line after another) -- like following a recipe

Selection: used for decisions, branching -- choosing between 2 or more alternative paths. In C++, these are the types of selection statements:

if

if/else

switch

Repetition: used for looping, i.e. repeating a piece of code multiple times in a row. In C++, there are three types of loops:

while

do/while

for

Which of these best describes the difference between ports and slots?

Answers

Answer:

hi

Explanation:

What sense?

you mean something like that?

ports are temporary stops for maritime transport, and slots are used for long-term living here.

I play Among us :) hbu

Answers

Answer:nice

Explanation:u tryna play doe?

that’s nice so do i :)))

Plz Help!! How should I answer the second question?

Answers

Answer:

Just keep doing what you were doing explain what you would be doing in the future or where you see yourself in like 5 years and put details and things that make since to you!

X = "apple"
y = X
z = "banana"
print(x
+
+
y + "\n" + z)
What is output?

Answers

pede po bang pa pic ang gulo po Kasi ehh

Pull quotes are easily added to a publication in the Building Blocks grouping under the ___ icons.
Calendars
Borders and Accents
Page Parts
Advertisements​

Answers

Answer:

page parts

Explanation:

i just did the assignment

Which principle of animation deals with imparting a unique identity to the animated character?
A.
storyboard artist
B.
background animator
C.
special effects animator
D.
3D modeler
E.
multimedia designer

Answers

A! ..........................Hope this helps <3

Should student be allowed to bring mp3 players and electronic dives to school

Answers

yes, as long as it’s not distracting anyone and you only listen to it when you are free

Answer:

Yes

Explanation:

Like said in the other answer, as long as it's not distracting and interferes with other student's education. Phones would sorta be a problem since most kids distract others with them, but mp3s absolutely!

What are the 3 general themes that are found in great advertising

Answers

Answer:

Personal Appeal, Social Appeal, and Humor Appeal

Explanation:

true or false: if a comment is posted anonymously, it cannot be considered hate speech or cyber bullying

Answers

Answer:

false

Explanation:

Think about it

It is false that if a comment is posted anonymously, it cannot be considered hate speech or cyber bullying.

What is cyberbullying?

The use of technology to harass, threaten, embarrass, or target another person is known as cyberbullying.

Online threats, as well as mean, aggressive, or rude texts, messages, posts, or messages, are all considered. Posting personal information, pictures, or videos intended to hurt or embarrass someone else is also prohibited.

One or both of the following are involved in cybercrime: Using viruses and other types of malware, criminals target computers. Criminal activity involving the use of computers to commit other crimes.

Cyberbullying or cyber harassment is a type of bullying or harassment that takes place over the internet. Online bullying includes cyberbullying and cyber harassment.

When a comment is made anonymously, it is considered hate speech or cyberbullying.

Thus, the given statement is false.

For more details regarding cyberbullying, visit:

https://brainly.com/question/8142675

#SPJ2

Other Questions
Please help me?8 + 12 ( 4 - 2 ) Can someone please help me understand this question and give me an example:Diagram: If you don't have access to a video camera or digital camera, you may complete option 3. Draw a diagram of a figure performing FIVE different exercises. Draw both the correct and incorrect way to perform the exercise. Scan your drawing into the computer (or you can generate your drawing on the computer if you wish).I don't understand how to set this up...You don't need to particularly answer this just show me an overall setup of how I could complete this, please. I've asked this 5 times now with no response, and I created this alt because I ran out of points on my main account how can northern Canada be described? which choice has eukaryotic animal cells?lactobacillusvirusliveroak African Americans were discriminated under Jim Crow laws.Or True False Why do people use maps? Choose four correct answers. which has more inertia, a textbook or calculator who buys the land to sell to the people? The main conflict in the story is called the. Rising action, climate, theme, resolution Please answer these four questions pleaseeeee Which is an estimate of 15 to one decimal place?A 1.5 B 3.8 C 3.9D 4.1 Choose the multiplicative inverse of 5/3 PLEASE HELP!! ILL MARK BRAINLYEST!!!The process of a neutron splitting a nucleus into two parts is called _____.A. fissionB. atomicC. fusion Micah found the least common multiple of 8 and 12. His work is shown below.Multiples of 8: 8, 12, 16, 20, 24, 28, . . .Multiples of 12: 12, 24, 36, 48, 60, . . .The least common multiple is 12.What is Micahs error?Micah listed some values that were not multiples.Micah listed factors of each number instead of multiples.Micah should have multiplied 8 and 12 to find the least common multiple.Micah selected a multiple that is not the least of the common multiples. what types of society do you like the most and why? How did the great fear end What angered American colonists about the Declaratory Act? The construction crew places a sign every 1 3/4 miles on a stretch of a road that is 8 3/4 long. How many signs will that use Solve 4x 2(x + 1) = 3x + 10Ox= -12Ox=12Ox= -8Ox=8HELP ASAP Which part of paragraph 41 shows exaggeration through use of a hyperbole?