Answer:
knowing how personal data are collected and used.
Explanation:
A database management system (DBMS) can be defined as a collection of software applications that typically enables computer users to effectively and efficiently create, store, modify, retrieve, centralize and manage data or informations in a database. Thus, it allows computer users to efficiently retrieve and manage their data with an appropriate level of security.
Generally, a database management system (DBMS) acts as an intermediary between the physical data files stored on a computer system and any software application or program.
Data theft can be defined as a cyber attack which typically involves an unauthorized access to a user's data with the sole intention to use for fraudulent purposes or illegal operations. There are several methods used by cyber criminals or hackers to obtain user data and these includes DDOS attack, SQL injection, man in the middle, phishing, etc.
Basically, the two (2) essential privacy concerns in the field of cybersecurity are knowing how personal data are collected and essentially how they're used by the beneficiaries or end users.
This ultimately implies that, the medium (channel) and methods through which personal data are collected or obtained plays a huge role in determining how secured or unsecured a user's data are. Also, the manner in which a person's personal data is used should be well defined.
Question # 4 Dropdown Finish the code for this function.
if guess_____ correct:
# Tell the user the guess was correct.
print("You were correct!")
keepGoing = False
else:
if guess < correct:
print("Guess higher.")
else:
print("Guess lower.")
a. !=
b. =
c. ==
Answer:
==
Explanation:
I did it on edge 2021
Answer:
The answer is ==. I hope this helps you out. Have a nice wonderful day. <3<3<3
Explanation:
Select all phrases that describe a server-based network. centralized network security easy to expand log-ins controlled by central server unlimited number of users network resources stored on individual workstations
Answer:
Client Server Network ... is the central computer that enables authorized users to access networked resources ... computers in this type of network are connected to a central hub ... why might a business choose a server based network (3) ... 2) easier to expand ... external hardware connected to and controlled by a computer.
Explanation:
Answer
Explanation:
what the other person said
Write the C++ code (NOT a full program) that prompts the user to enter 50 numbers and fills the array guestCount with these 50 numbers, so that the first number input is in the first element of the array, the second input in the second element, etc.
Answer:
The code is as follows:
int guestCount[50];
for(int i = 0; i<50;i++){
cout<<"guestCount "<<i+1<<": ";
cin>>guestCount[i];
}
Explanation:
This declares the array
int guestCount[50];
This iterates through the array (50 elements)
for(int i = 0; i<50;i++){
This prompts the user for each array element
cout<<"guestCount "<<i+1<<": ";
This gets the input from the user
cin>>guestCount[i];
}
An ISA specifies a word size of 8 bytes, byte addressability, and an address space of 256 K; it uses single-word instructions (i.e. each instruction is a single 8 byte word). What is the size of the MAR
Answer:
2 bytes
Explanation:
Size of the MAR ( memory address register ) = 18 bits = 2 bytes
Given that
address space = 256 K = 2^8
number of address location= 2^8 * 2^10 ( where 1K = 2^10 )
= 2^18
Given the number of address location = 2^18 ;
Hence 18 bits are required to store the address of the instruction
what is internet? explain help pliz
The Internet, sometimes called simply "the Net," is a worldwide system of computer networks -- a network of networks in which users at any one computer can, if they have permission, get information from any other computer (and sometimes talk directly to users at other computers).
A computer can manipulate symbols as if it understands the symbols and is reasoning with them, but in fact it is just following cut-and-paste rules without understanding why. This means that:
Answer:
The symbols may or may not have meaning, but the machine does not need to know how the symbols are interpreted in order to manipulate the symbols in the right way.
Explanation:
The computer can change the symbols in the case when the computer understand but in actual following the cut-paste rules without having any understanding this is because the symbols might be have meaning or not but if we talk about the machine so actually they dont know how the symbols are interpreted and how it can be used so that it can be change in the accurate way
PLEASE HELP ASAP!!
This command allows you to duplicate text from one part of a document while keeping the original text.
Cut
Copy
Format
Paste
Answer: CTRL + C or copy and paste
Explanation: to copy and paste highlight text by dragging mouse or clicking on touchpad and holding over selected text, if not on a computer but on a touch screen device ( ex: Phone, iPad etc) hold down until it is blue use the tear drops from the top and bottom to highlight the text you need. Then hold down the blue area until options come up stop holding and select copy and then go to where you want to put the text and hold down again and select paste. If on computer drag cursor over text while holding down on left click or holding down on touchpad, it will highlight light blue then left click or click on the touchpad with both fingers and repeat the process of copying and pasting as said before.
Hope this helps! :)
help me guys plssssss
Answer The answer is
So hope this was helpful
Explanation:
Create a dynamic array of 100 integer values named myNums. Use a pointer variable (like ptr) which points to this array. Use this pointer variable to initialize the myNums array from 2 to 200 and then display the array elements. Delete the dynamic array myNums at the end. You just need to write part of the program.
Answer:
The required part of the program in C++ is as follows:
int *ptr;
int *myNums = new int(100);
srand (time(NULL));
for (int i = 0; i < 100; i++) {
myNums[i] = rand() % 200 + 2; }
ptr = myNums;
cout << "Output: ";
for (int i = 0; i < 100; i++) {
cout <<*(ptr + i) << " "; }
delete[] myNums;
Explanation:
This declares a pointer variable
int *ptr;
This declares the dynamic array myNums
int *myNums = new int(100);
This lets the program generate different random numbers
srand (time(NULL));
This iterates through the array
for (int i = 0; i < 100; i++) {
This generates an integer between 2 and 200 (inclusive) for each array element
myNums[i] = rand() % 200 + 2; }
This stores the address of first myNums in the pointer
ptr = myNums;
This prints the header "Output"
cout << "Output: ";
This iterates through the pointer
for (int i = 0; i < 100; i++) {
Print each element of the array, followed by space
cout <<*(ptr + i) << " "; }
This deletes the dynamic array
delete[] myNums;
A network consists of 75 workstations and three servers. The workstations are currently connected to the network with 100 Mbps switches, and the servers have 1000 Mbps connections. Describe two network problems that can be solved by replacing the workstations' 100 Mbps switches and NICs with 1000 Mbps switches and NICs. What potential problems can this upgrade cause
Answer:
A) i) starvation ii) flow control
B) Network congestion
Explanation:
A) Network problems that can be addressed / solved
By replacing the workstations 100 Mbps switches with 1000 Mbps switches the problem of
Starvation; been faced by the servers due to the delay in sending data to be processed by the servers from the workstations will be resolved .
Flow control : The huge difference in the speeds of the workstations and servers causes a network buffer which leads to packet loss therefore when the workstations 100 Mbps switch is replaced with 1000 Mbps switch this network problem will be resolved
b) The potential problem that can be encountered is Network Congestion
Project: You are Tech Support
Answer:
no but call a big company
Imagine running a 64-bit system on a 32-bit system, where we simulate a single 64- bit memory location (register) using two atomic 32-bit memory locations (registers). A write operation is implemented by simply writing the first 32-bits of the simulated 64-bit register in the first real register, then the second 32-bits in the second real register. A read, similarly, reads the first half from the first register, then the second half from the second register, and returns the concatenation. What is the strongest property that this 64-bit register satisfies: safe, regular, or atomic
Answer:
It's not possible to ensure memory access occurs indivisibly when it has to broken into multiple operations. Unfortunately, the fact that your application is running on a 64-bit kernel does not change the equation any - it is actually running in a compatibility layer and has none of the benefits of x64
Explanation:
Write a MY SQL query to display the name and hire date of all employees who were hired in 1992.
Answer:
Select * from Employees where LastName LIKE '%H%' or LastName LIKE '%A%' or LastName LIKE '%Z%' order by Hiredate(or whatever you put for your year name) desc;
Explanation:
Select the correct answer.
What should you keep in mind when picking a topic for a research paper?
ОА.
choosing a general topic
OB.
choosing a topic that is relatively new
O C.
choosing a specific topic rather than a broad one
OD. choosing a topic based on the most number of sources you can find
Reset
Next
Answer: The answer is C
Explanation: When it comes to research papers your topic shouldnt be too broad. Your topic should be broad enough you can find a good amount of information but not too focused that you can't find any information.
In Python what is the input() feature best described as?
Answer:
Explanation:
In python, the input features are best described as a built-in features. It can come from a database, mouse clicks, keyboard or an internet. It is accessible to the end users.
There are multiple built-in functions in the python that are always available for use. Print function in the python is built in function example.
2. What is software conflict?
Answer:
A problem that occurs when two programs cannot run in the same computer at the same time. It is generally due to a programming bug and typically manifests when two programs compete for the same resource (memory, peripheral device, register, etc.).
Hope it helps out!
Explanation:
b) Set of strings of 0s and 1s whose 5th symbol from left is 1.
Answer:
...?
Explanation:
8. (a) Write the following statements in ASCII
A = 4.5 x B
X = 75/Y
Answer:
Explanation:
A=4.5*B
65=4.5*66
65=297
1000001=11011001
10000011=110110011(after adding even parity bit)
X=75/Y
89=75/90
10011001=1001011/1011010
100110011=10010111/10110101(after adding even parity bit)
Why do organizations need to tailor project management concepts, such as those found in the PMBOK® Guide, to create their own methodologies?
Explanation:
Although each project is different and unique, according to the Method Statement of PMBoK, customising is required. Not that every procedure, tool, methodology, input, or output listed in the PMBoK Guide is mandated for every project. Scope, timeline, cost, materials, quality, and danger should all be considered while tailoring.
Which statement describes Augmented Reality (AR) technology?
Answer:
Augmented Reality (AR) superimposes images and audio over the real world in real time. It does allow ambient light and does not require headsets all the time.
yan po ang szgot
wala po kasi pagpipilian
HOPE IT HELPS
pls follow ke
Which term refers to a cloud-native, streamlined technology for hosting cloud-based applications, where a server runs for short bursts only when needed by an application or service
Answer:
Serverless computing.
Explanation:
Cloud computing can be defined as a type of computing that requires shared computing resources such as cloud storage (data storage), servers, computer power, and software over the internet rather than local servers and hard drives.
Generally, cloud computing offers individuals and businesses a fast, effective and efficient way of providing services.
Cloud computing comprises of three (3) service models and these are;
1. Platform as a Service (PaaS).
2. Infrastructure as a Service (IaaS).
3. Software as a Service (SaaS).
The three (3) main characteristics of cloud computing are;
I. Measured service: it allows cloud service providers to monitor and measure the level of service used by various clients with respect to subscriptions.
II. Resource pooling: this allows cloud service providers to serve multiple customers or clients with services that are scalable and provisional.
III. Elasticity: this is the ability of the cloud computing service to be flexible and adaptive to the traffic or requests from the end users.
Serverless computing is a term which refers to a cloud-native and streamlined technology that is designed typically for hosting cloud-based applications, in which a server operates for short bursts only when needed by an application or service. Serverless computing is used for the allocation of machine resources on demand.
1-How many moles of NazCOs are in 10.0 ml of a 2.0 M solution?
Answer:
A solution is a mixture in which the particles are so small that the components are indistinguishable from each other. The amount of the solute and the solvent in a solution can be expressed in terms of different concentration expressions such as molarity, morality, etc.
Explanation:
To calculate the number of moles of sodium carbonate, the volume in liters will be multiplied by the molar concentration of the solution.
moles Na2CO3 = 2.0 M x 0.0100 L = 0.020 moles Na2CO3
Hope it helps :)
Answer:
There are 20. mol of Na2CO3 in 10.0L of 2.0M solution.
Explanation:
Molarity is represented by this equation:
(look at attachment)
In our case, we already have the molarity and volume of solution, both of which have good units.
Let's rearrange the equation to solve for the number of moles. We can do this by multiplying by L solution on both sides of the equation. The L solution will cancel out on the right side, leaving the number of moles being equal to the molarity times volume:
Moles of solute
=Lsolution×Molarity
Now we just plug the known values in!
Moles of solute = (10.0 L) (2.0M) = 20. moles
write a program that takes as input a number of kilometers and prints the corresponding number of nautical miles.
Answer:
try this
Explanation:
km = float(input('Kilometers: '))
nm = (km * 5400) / 10000
print('%0.4f km = %0.4f Nautical Miles' %(km,nm))
George has a set of software programs installed on his computer to create a digital portfolio. He is not sure what each program does. Help George by matching the software to their purposes
Explanation:
I thinkcreating and edditing Images matchs to adobePhotoshop
Microsoft word is for adding and Creating text document
Creating andeditingpage layout -Adobe In Design
Desktop Publication-QuarkQuark Xpress
I hope thishelp and If wrong Inform me
Good luck
Answer:
This is the answer based off of the notes
Explanation:
Write a program that allows two players to play the Tic-Tac-Toe game. One of the players can be the computer or human, the other must be human. Your program must contain the class ticTacToe to implement a ticTacToe object. Include a 3 by 3 two-dimensional array, as a private member variable, to create the board. If needed, include additional member variables
Answer:
Explanation:
The following is a tictactoe game written in Java with all the necessary variables and methods needed for the game to function correctly. The game plays against the computer which randomly chooses a position to play every round. Due to technical difficulties the code was added as a txt file below and the output was added as a picture.
You work for a large company that has over 1000 computers. Each of these computes uses a wireless mouse and keyboard. Therefore, your company goes through a lot of alkaline batteries. When these batteries can no longer power the intended device, you must decide what to do with them. Unless otherwise dictated by your local authorities, which of the following would be the EASIEST way to deal with these batteries?
They must be sent to hazardous waste collection
a. They can be recharged.
b. They must be stored onsite until they expire
c. They can be thrown in the trash.
The answer to this question is, "They can be thrown in the trash."
Explanation: This is because it specifies how to get rid of them UNLESS local authorities have told you otherwise.
You designed a program to create a username using the first three letters from the first name and the first four letters of the last name. Usernames cannot have spaces. You are testing your program with a user whose name is Jo Wen. What step in the program plan do you need to revisit
Answer:
See Explanation
Explanation:
The question would be best answered if there are options to select from; since none is provided, I will provide a general explanation.
From the question, we understand that, you are to test for Jo Wen.
Testing your program with this name will crash the program, because Jo has 2 letters (3 letters are required), and Wen has 3 letters (4 letters are required)
So, the step that needs to be revisited is when the username is generated.
Since the person's name cannot be changed and such person will not be prevented from registering on the platform, you need to create a dynamic process that handles names whose lengths are not up to the required length.
You wish to traverse a binary search tree in sorted order using pre order traversal. Arrange the following actions in the correct order to accomplish this. I Print the right subtree recursively II Print the root III Print the left subtree recursively
Answer:
II Print the root
III Print the left subtree recursively
I Print the right subtree recursively
Explanation:
The question illustrates binary search in data structure.
When preorder is applied to a binary search, the search starts by visiting the root node, then proceed to the visiting the left most nodes and finally, the left nodes will be visited.
Using the above illustration, the arrangement of the actions in ascending order is: II, III and I
Different web browsers perform (1)_______ functions, which are presented in the form of (2)__________.
1:
similar
different
identical
2:
text labels
web pages
buttons and menus
Answer:
number one is A,
number two is b
Answer:
The answer is:
First drop down menu - Similar
Second drop down menu - Buttons and menus
Explanation:
I got it right on the Edmentum test.
Suppose that a disk drive has 5,000 cylinders, numbered 0 to 4,999. The drive is currently serving a request at cylinder 2,150, and the previous request was at cylinder 1,805. The queue of pending requests, in FIFO order, is:
Answer:
The queue pending requests of FIFO order is ;
86, 1470, 1774, 948, 1509, 1022, 1750, 130.
Explanation:
The FCFS schedule is 143, 86, 1470, 913, 1774, 948, 1509, 1022, 1750, 130.
Total seek distance is 7081.
The SSTF schedule is 143, 130, 86, 913, 948, 1022, 1470, 1509, 1750, 1774.
Total seek distance is 1745.
The LOOK schedule is 143, 913, 948, 1022, 1470, 1509, 1750, 1774, 130, 86.
Total seek distance is 3319.
The SCAN schedule is 143, 913, 948, 1022, 1470, 1509, 1750, 1774, 4999, 130, 86.
Total seek distance is 9769.