Answer:
Try opening Terminal and pasting this in:
defaults write com.apple.Safari TargetedClicksCreateTabs -bool false
which of the following compliance standards was introduced to provide a minimum degree of security to organizations who handle customer information such as debit card and credit card details daily?
a. PCIDSS
b. SOX
c. FISMA
d. GLB
you have a layer 3 switch that is capable of intervlan routing. which process must you complete to allow intervlan routing on a layer 3 switch interface?
A process which you must complete to allow interVLAN routing on a Layer 3 switch interface is configuring the interface as a switch virtual interface.
What is a switch?A switch can be defined as a network device which is designed and developed for the programmatic redirection of request traffic of a client from one server.
What is a Layer 3 switch?In Computer networking, a Layer 3 switch can be defined as a type of network device that is designed and developed to use ASICs to handle packet switching for interVLAN routing (communication) on an active network.
This ultimately implies that, a Layer 3 switch must be configured as a switch virtual interface in order to enable interVLAN routing (communication).
Read more on switch here: brainly.com/question/14850209
#SPJ1
the user interface design principle that places an emphasis on making sure the users know where they are in the system at all times and what information is being displayed is:
The user interface design principle that places an emphasis on making sure the users know where they are in the system at all times and what information is being displayed is option c. content awareness.
What is content awareness?This is seen as the capacity to identify the data that is present in a given file, folder, program, or other data store, whether that data is at rest, in use, or in transit.
Therefore, Users should have control over the interface, according to UI design principles. Ensure that using a product is comfortable. lessen the cognitive load. Consistently design user interfaces .
Learn more about user interface design principle from
https://brainly.com/question/17372400
#SPJ1
See full question below
6. The user interface design principle that places an emphasis on the user's ability to always know where he/she is in the system and what information is being displayed is _____.
a. aesthetics
b. consistency
c. content awareness
d. layout
e. user experience
Which of the following functions will correctly return True if it is passed an odd integer value for x?
I.
def is_odd (int x) :
return x % 2 == 1
II.
def is_odd (int x) :
return x / 2 == 1
III.
def is_odd (int x) :
if x % 2 == 1:
return True
else:
return False
Your computer is on a Public Network if it has an IP address of 161.13.5.15.
What is a Private Network?A private network on the Internet is a group of computers that use their own IP address space. In residential, business, and commercial settings, these addresses are frequently used for local area networks.
Private Network IP address ranges are defined under IPv4 and IPv6 standards, respectively. Private IP addresses are used in corporate networks for security since they make it difficult for an external host to connect to a system and also limit internet access to internal users, both of which contribute to increased security.
Therefore,Your computer is on a Public Network if it has an IP address of 161.13.5.15.
To learn more about Private Network, use the link given
brainly.com/question/6888116
#SPJ1
Small organizations with only a few computers can manage each device in an ad hoc way without standardization. Larger organizations need to use standardization to scale their ability to support many users. Consider what you’ve learned about Active Directory and Group Policy and how they can be used to simplify user support and desktop configuration. You can search the Internet for examples. Create a posting that describes your thoughts on how Active Directory and Group Policy improve management in large organizations.
Organizational security is the principal application of Group Policy Management. Group policies, also known as Group Policy Objects (GPOs), enable decision-makers and IT professionals to deploy critical cybersecurity measures throughout an organization from a single place.
What is an Active Directory?Microsoft Active Directory has a feature called Group Policy. Its primary function is to allow IT administrators to manage people and machines throughout an AD domain from a single location.
Microsoft Active Directory is a directory service designed for Windows domain networks. It is featured as a set of processes and services in the majority of Windows Server operating systems. Active Directory was initially exclusively used for centralized domain management.
Group Policy is a hierarchical framework that enables a network administrator in charge of Microsoft's Active Directory to implement specified user and computer configurations. Group Policy is essentially a security tool for applying security settings to people and machines.
Learn more about Active Directories:
https://brainly.com/question/14469917
#SPJ1
Write a program that calculates the average number of days a company's employees are absent. The program should have the following functions: A function called by main that asks the user for the number of employees in the company. This value should be returned as an int. (The function accepts no arguments.) A function called by main that accepts one argument: the number of employees in the company. The function should ask the user to enter the number of days each employee missed during the past year. The total of these days should be returned as an int. A function called by main that takes two arguments: the number of employees in the company and the total number of days absent for all employees during the year. The function should return, as a double, the average number of days absent. (This function does not perform screen output and does not ask the user for input.) Input Validation: Do not accept a number less than 1 for the number of employees.Do not accept a negative number for the days any employee missed.
The program that calculates the average number of days a company's employees are absent will be:
#include <iostream>
using namespace std;
// function prototypes
void GetNumEmployees(int&);
int TotalDaysMissed(int);
float AverageDaysMissed(int,int);
// testing main code
int main(){
int count=0;
GetNumEmployees(count);
cout << endl;
int total = TotalDaysMissed(count);
cout << endl;
float average = AverageDaysMissed(count,total);
cout << "Average Days Missed: " << average << endl;
return 0;
}
// function definitions
void GetNumEmployees(int &count){
do{
cout << "Enter Number of Employees: ";
cin >> count;
}while(count < 1);
}
int TotalDaysMissed(int count){
int total = 0;
int missing = 0;
for(int i=0; i<count; i++){
do{
cout << "Enter Employee " << i+1 << " Missing days: ";
cin >> missing;
}while(missing<0);
total = total+missing;
}
return total;
}
float AverageDaysMissed(int count,int total){
float average = (float)total/count;
return average;
}
How is the program illustrated?Coding generates a set of instructions that computers can use. These instructions specify which actions a computer can and cannot perform. Coding enables programmers to create programs like websites and apps.
Computer programmers can also instruct computers on how to process data more efficiently and quickly. In this case, the program is illustrated above.
Learn more about program on:
https://brainly.com/question/26642771
#SPJ1
"which of the following is not considered a fundamental approach for creating a new information system?
a. develop a custom application in-house
b. rely on an external vendor to build the system
c. purchase a software package and customize it
d. rely on end-users to develop it themselves
e. all of the above are ways to create new information systems"
The option that is not considered a fundamental approach for creating a new information system is option d. rely on end-users to develop it themselves.
Who are the end users that you refer to?An end user is a human being or other type of entity who utilizes or consumes products made by businesses. Due to the possibility that the entity or person who purchases a good or service may not be the one who actually uses it, an end user may differ from a customer in this way.
Therefore, The most basic definition of an information system is a grouping of computer programs, hardware devices, and communication networks that are designed to produce, gather, and distribute information within an organization. The decision-making, coordination, visualization, and analysis processes are supported by these systems.
Learn more about information system from
https://brainly.com/question/25226643
#SPJ1
Match each type of switch on the left with its corresponding characteristics on the than once, or not at all. Drag Drop Unmanaged switch Commonly sold at retail stores. Managed switch Provides port security features. Supports VLANs. Provides very few configuration options. Can be configured over a network connection Can be configured over a dedicated communication channel Mark this question for review w DIL
Here are the matched pairs of switch types and their corresponding characteristics Unmanaged switch: Provides very few configuration options. Managed switch: Supports VLANs.
What is network switch?A networking tool that links devices on a computer network together is called a network switch.
It functions at the OSI model's data link layer, which is in charge of transferring data packets between network devices.
The matched switch type pairs and accompanying attributes are listed below:
There are extremely few configuration possibilities with an unmanaged switch. widely marketed at retail establishments.
Managed switch: VLAN support. characteristics for port security. can be set up using a dedicated communication channel or a network connection.
Be aware that depending on the type and brand, some managed switches may offer more configuration choices than others, and some may be simpler to configure than others.
Thus, this is the match for the given scenario.
For more details regarding network switch, visit:
https://brainly.com/question/14748148
#SPJ2
In cryptography, the concept known as the web of trust (WOT) allows compatible systems to establish what?
a method to destroy data in which the magnetic field of a storage drive is removed or reduced
part of an encryption protocol that calculates and compares data on either end
the necessary authenticity between a public key and its owner
the process of securing a computer system by reducing its vulnerabilities
In cryptography, the concept known as the web of trust (WOT) allows compatible systems to establish option C: the necessary authenticity between a public key and its owner.
How does PGP make use of the idea of trust?PGP relies on a Web of trust model rather than a single certificate authority to authenticate digital certificates. According to the Web of Trust, if you accept that my digital certificate verifies my identity, you must also accept all the other digital certificates that I accept.
Hence, To establish the validity of the connection between a public key and its owner, PGP, GnuPG, and other OpenPGP-compatible systems use the cryptographic concept of a web of trust.
Learn more about cryptography from
https://brainly.com/question/88001
#SPJ1
Operations security requires the implementation of physical security to control which of the following?
A. Unauthorized personnel access
B. Incoming hardware
C. Contingency conditions
D. Evacuation procedures
Answer:
A. unauthorized personnel access
Explanation:
like key card readers to control the opening of doors.
when correctly implemented, what is the only cryptosystem known to be unbreakable?
When accurately executed, the only cryptosystem known to be unbreakable is called: "One-time Pad" (Option D)
What is a Crypto System?The one-time pad is a cryptographic approach that cannot be broken but needs the usage of a single-use pre-shared key that is not less than the message being delivered. A plaintext is coupled with a unique secret key in this manner.
It should be emphasized that in cryptography, a cryptosystem is a collection of cryptographic algorithms that are required to perform a certain security function, such as confidentiality. A cryptosystem is often composed of three algorithms: one just for key generation, one for encrypting, and one for deciphering.
Learn more about Crypto System:
https://brainly.com/question/15084188
#SPJ1
Full Question:
When correctly implemented, what is the only cryptosystem known to be unbreakable?
A) Transposition cipher
B) Substitution cipher
C) Advanced Encryption Standard
D) One-time Pad
A compound conditional is a type of selection that uses statements with _______3_____ or more logical conditions.
A compound conditional is a type of selection that uses statements with AND 3 OR or more logical conditions.
What is decision process?Selection structures are statements that use conditions to choose which group of statements to run. Only when a given circumstance is met is a specific action taken; otherwise, it is not.
Hence, It is possible to test two conditions with compound conditionals in a single sentence. In Blockly, there are two ways to complete this with just one block! You can check to see if a statement's two conditions are true or just the first one.
Learn more about compound conditional from
https://brainly.com/question/29406811
#SPJ1
if a protocol is routable, at which tcp/ip layer does it operate?
If a protocol is routable, at internetwork tcp/ip layer does it operate. The correct option is b.
What is Internetwork?The practice of interconnecting multiple computer networks so that any pair of hosts in the connected networks can exchange messages regardless of their hardware-level networking technology is widely recognized as internetworking.
The resulting network of interconnected networks is known as an internetwork, or simply the internet.
If a protocol is routable, it operates at the internetwork's tcp/ip layer.
Thus, the correct option is b.
For more details regarding internetwork, visit:
https://brainly.com/question/12972464
#SPJ1
Your question seems incomplete, the missing options are:
a. Network access
b. Internetwork
c. Transport
d. Application
A specialized database programming language.is ____ a. C++ b. C# 20 c. Java d. SQL
A specialized database programming language is SQL. The correct option is d.
What is SQL?SQL (Structured Query Language) is one of the most well enough and longest-running database languages.
It includes data definition and data manipulation languages, as well as the ability to write queries in a database.
C#, C++, and JAVA are programming languages created by, whereas SQL is a database query language created by Oracle for creating and managing databases.
Structured Query Language (SQL) is a programming language that is used to manage relational databases and perform various operations on the data contained within them.
Thus, the correct option is c.
For more details regarding SQL, visit:
https://brainly.com/question/13068613
#SPJ1
which statement can be used to handle some of the runtime errors in a program?
a. a try statement
b. a try/except statement
c. an exception statement
d. an exception handler statement
Answer:
B
Explanation:
The answer is B, a try/except statement. This can be used to handle some of the runtime errors in a program.
"Which of the following is a true statement regarding privacy?
An individual’s right to control the use of and disclosure of personal information
Private personal information may become public under the Freedom of Information Act
A security service we provide to our customers
All of the above"
A true statement regarding privacy is that: A. An individual’s right to control the use of and disclosure of personal information.
What is a PII?PII is an abbreviation for personally identifiable information and it can be defined as any type of information that can be used by individuals or business organizations (companies) on its own or with other relevant data, so as to identify an individual.
This ultimately implies that, all personally identifiable information (PII) connotes the privacy of an individual and as such, they are under the control of individuals with the exclusive right on whether or not to be disclosed others.
Read more on PII here: https://brainly.com/question/28165974
#SPJ1
"In a(n) ________ database, any action on one element immediately affects the elements related to it.
A) Hierarchical
B) Multidimensional
C) Object-Oriented
D) Relational"
In Hierarchical database, option A, any action on one element immediately affects the elements related to it.
What is the purpose of a hierarchical database?Geographical data and file systems are the two main uses of the hierarchical structure in modern computing. Currently, hierarchical databases are still frequently used, particularly in applications like banking, healthcare, and telecommunications that demand extremely high performance and availability.
Therefore, A data model in which the data are arranged in a tree-like form is called a hierarchical database model. The information is kept in records that are linked to one another by links. A record is a group of fields, each of which has a single value.
Learn more about Hierarchical database from
https://brainly.com/question/13261071
#SPJ1
1. Add a new sales rep named Tina Webb with a number of 85. When complete, type your construct here. Then, display the contents of the rep table. Insert your query and results here. Be sure all columns display.
2. Change Tina Webb’s last name to Perry. When complete, type your construct here. Then, display the contents of the rep table. Insert your query and results here.
3. Delete sales rep 85. When complete, copy and paste your construct here. Then, display the contents of the rep table. Insert your query and results here.
Using the knowledge in computational language in python it is possible to write a code that complete, type your construct here. Then, display the contents of the rep table.
Writting the code:INSERT INTO part value ('AT94', 'Iron', 50, 'HW', '3', 24.95);
INSERT INTO part value
INSERT INTO part value
INSERT INTO part value
INSERT INTO part value ('
INSERT INTO part value ('
INSERT INTO part value (
INSERT INTO part value ('KL62', 'Dryer', 12, 'AP', '1', 349.95);
INSERT INTO part value ('KT03', 'Dishwasher', 8, 'AP', '3', 595.00);
INSERT INTO part value ('KV29', 'Treadmill', 9, 'SG', '2', 1390.00);
#-- Populate order_line table
INSERT INTO order_line value ('21608', 'AT94', 11, 21.95);
INSERT INTO order_line value ('21610', 'DR93', 1, 495.00);
INSERT INTO order_line value ('21610', 'DW11', 1, 399.99);
INSERT INTO order_line value ('21613', 'KL62', 4, 329.95);
INSERT INTO order_line value ('21617', 'BV06', 2, 794.95);
INSERT INTO order_line value ('21617', 'CD52', 4, 150.00);
INSERT INTO order_line value ('21623', 'KV29', 2, 1290.00);
See more about python at brainly.com/question/18502436
#SPJ1
Five Star Retro Video rents VHS tapes and DVDs to the same connoisseurs who like to buy LP record albums. The store rents new videos for $3.00 a night, and oldies for $2.00 a night.
Write a program that the clerks at Five Star Retro Video can use to calculate the total charge for a customer’s video rentals.
The program should prompt the user for the number of each type of video and output the total cost.
An example of the program input and output is shown below:
Enter the number of new videos: 3
Enter the number of oldies: 2
The total cost is $13.0
The clerks at Five Star Retro Video can use to calculate the total charge for a customer’s video rentals is of three types.
What is Five Star Retro Video ?The same discerning individuals who enjoy purchasing LP record albums may rent VHS tapes and DVDs from Five Star Retro Video. The shop offers current DVD rentals for $3.00 per night and vintage titles for $2.00 per night.
n1 is same to eval(input("Enter the number of new videos: "))
Enter the number of seniors in the box below.
print("The whole expense is $%.1f"%(n1*3+n2*2))
Thus, the clerks at Five Star Retro Video can use to calculate the total charge for a customer’s video rentals is of three types.
To learn more about Five Star Retro Video, refer to the link below:
https://brainly.com/question/13138157
#SPJ1
Which of the following is a factor that can cause poor network performance? (Choose all that apply.)
a. Poor network design
b. Private IP addresses
c. Poor traffic management
d. Server clusters
The factor that can cause poor network performance
a. Poor network design
c. Poor traffic management
What are the reasons for poor network performance?Network problems due to by faulty hardware (such as routers, switches and firewalls). They can also be caused by unexpected usage patterns, such as network bandwidth spikes that exceed the bandwidth allocated to users, or security breaches, hardware configuration changes, etc.
There are many reasons for poor network performance. Some network problems can be caused by faulty hardware (such as routers, switches, firewalls) and even unexpected usage patterns such as spikes in network bandwidth, application configuration changes or security breaches.
Factors affecting network performance
number of devices on the network. transmission average bandwidth. network traffic type. network latency. number of transmission errors.To know more about network performance, refer;
https://brainly.com/question/28590616
#SPJ1
Explain three the dimensions of Information
There are three dimensions of information Organizational, management, and technological dimensions.
1)Organizational Dimension: In organizational dimensions, management comprehends what is embodied in its information system relating to organizational stuff such as culture, norms and values, core organizational tasks, organizational hierarchy, and so on. Management must understand that all decisions are based on information provided by information systems.
2) Management Dimension: In the management dimension of information systems, information systems assist managers in allocating resources, hiring personnel, motivating personnel, recognizing risky areas, and allocating experienced personnel to such risky areas.
3)Technological Dimension: An information system's technological dimension includes hardware and software. Management employs a technological dimension to secure its data. Through this dimension, management communicates with employees all over the world via the internet and networking.
Hence to conclude these information dimensions are essential for management process
To know more on information dimensions follow this link
https://brainly.com/question/7582047\
#SPJ1
________ is a standard method or protocol for web pages to request special processing on the web server, such as database queries, sending e-mails, or handling form data.
Common Gateway Interface is a standard method or protocol for web pages to request special processing on the web server, such as database queries, sending e-mails, or handling form data. The correct option is B.
What is Common Gateway Interface?Common Gateway Interface (CGI) is a computing interface specification that allows web servers to execute an external program, typically to process user requests.
Such programs are typically written in a scripting language and are known as CGI scripts, but they may also include compiled programs.
The Common Gateway Interface (CGI) is a standard method or protocol for web pages to request special processing on the web server, such as database queries, e-mail transmission, or form data handling.
Thus, the correct option is B.
For more details regarding Common Gateway Interface, visit:
https://brainly.com/question/13147329
#SPJ1
Your question seems incomplete, the missing options are:
Fieldset
Common Gateway Interface
JavaScript
none of these
Which of the following best describes the purpose of a design specification?
A. Tracking errors that arise through user testing
B. Documenting comments that will need to be added to a program
C. Describing the requirements for how a program will work or users will interact with it
D. Listing detailed questions that will be asked of users during interviews
while configuring a ssl vpn connection using cisco asdm, if you do not have a tacacs server configured for authentication, which other option will you have to choose?
While configuring a ssl vpn connection using cisco asdm, if you do not have a tacacs server configured for authentication, the other option will you have to choose is Local user database.
A local user database is what?A virtual private network (VPN) known as a Secure Sockets Layer Virtual Private Network (SSL VPN) is one that is created using the Secure Sockets Layer (SSL) protocol to establish a secure and encrypted connection over a less-secure network, such as the Internet.
Therefore, establishing and managing a local user database. For on-box authentication, access control, user segmentation, and data storage, you can set up multiple local user databases. You have access to a local user database during access policy operation and can read from and write to it.
Learn more about ssl vpn connection from
https://brainly.com/question/28404013
#SPJ1
Given the following function prototype: int test (float, char); which of the following statements is valid? cout << test(12, &); cout << test("12.0", '&'); cout << test('12', '&'); int u = test(5.0, '*");
int u = test(5.0, '*'); is the function prototype which is valid
How to write cout statement in c++?
C++ includes a number of libraries that users can use to perform input/output tasks. These tasks are carried out in the form of byte sequences, also known as streams.
The streams are divided into two categories:
Stream classifications
Input Stream: This is a type of stream in which bytes are transferred from a device such as a keyboard to the main memory.
Output Stream: This is a stream in which bytes flow in the opposite direction, from main memory to a device such as a display screen.
Cout << test ;
Hence to conclude the cout can be simply written like above and the valid statement is int u = test(5.0,'*')
To know more on cout statements follow this link
https://brainly.com/question/28185875
#SPJ1
a support technician is installing a new sata hard drive on a new computer. what is the best type of cable connector the technician will plug in to supply power to the drive
Thee best type of cable connector the technician will plug in to supply power to the drive is a 15-pin connector.
What is a cable connector?The part you attach to the end of a cable so it can plug into a port or an interface of an electrical system is called a cable connector. Most connectors fall into one of two genders: male or female. Male connectors have one or more exposed pins, while female connectors have holes for the male pins to fit into.
Therefore, For computer visual output, there is a standard connector called the Video Graphics Array (VGA). The 15-pin connector was first used with the 1987 IBM PS/2 and its VGA graphics technology, and it later appeared on many monitors, projectors, and high-definition televisions.
Learn more about cable connector from
https://brainly.com/question/29387419
#SPJ1
"Which of the following is a true statement regarding “privacy”?
An individual’s right to control the use of and disclosure of personal information
Private personal information may become public under the Freedom of Information Act
A security service we provide to our customers
All of the above"
The statement regarding privacy is An individual’s right to control the use of and disclosure of personal information.
What is meant by privacy ?It has to do with a person's capacity to decide for themselves when, how, and why others handle their personal information. To ensure human dignity, safety, and self-determination, privacy must be protected. People are able to freely create their own personalities.
In general, the right to privacy refers to the freedom from interference or intrusion and the right to be left alone. The right to some level of control over the collection and use of your personal information is known as information privacy.
Human dignity and other fundamental principles like free speech and association are supported by privacy. It is currently one of the most crucial human rights issues in history. This report's release is a reflection of the fundamental right's expanding significance, diversity, and complexity.
To learn more about privacy refer to:
https://brainly.com/question/27034337
#SPJ1
Kaleb is looking at the list of WiFi devices currently connected to the network. He sees a lot of devices that all appear to be made by the same manufacturer, even though the manufacturer name is not listed on the screen. How could he have determined that they were made by the same manufacturer?
Kaleb can determined that they were made by the same manufacturer by the use of option c. There are a large number of devices that have addresses ending in the same 24 bits.
What unidentified devices are linked to my network, and how can I identify them?How to locate unfamiliar devices on a network manually
Open the Terminal or the Command window on your Windows, Linux, or macOS computer.Use the command prompt to look up every network setting, including the default gateway and IP address.To obtain a list of all IP addresses linked to your network, type the command "arp -a".Nowadays, every router has a distinct Wi-Fi password that is practically impossible to crack. It denotes that your mysterious devices are likely appliances you've neglected, such your DVR (perhaps a Freeview or Sky box), a smart thermostat, plug, or other smart home appliance.
Learn more about WiFi from
https://brainly.com/question/13267315
#SPJ1
See full question below
Kaleb is looking at the list of WiFi devices currently connected to the network. He sees a lot of devices that all appear to be made by the same manufacturer, even though the manufacturer name is not listed on the screen. How could he have determined that they were made by the same manufacturer?
a. There are a large number of devices that have the same OUI.
b. The first four characters are the same for a large number of the device MAC addresses.
c. There are a large number of devices that have addresses ending in the same 24 bits.
d. There are a large number of devices using the same WiFi Channel.
Expert Answer
Write a complete Java program that prompts the user to input two integer values and outputs the largest and smallest numbers. The program includes JOptionPane for both the input and output statements.
Using the knowledge in computational language in JAVA it is possible to write a code that complete Java program that prompts the user to input two integer values and outputs the largest and smallest numbers.
Writting the code:import javax.swing.JOptionPane;
public class Main
{
public static void main(String[] args) {
String firstNumber = JOptionPane.showInputDialog("Enter first integer");
String secondNumber = JOptionPane.showInputDialog("Enter second integer");
int number1 = Integer.parseInt(firstNumber);
int number2 = Integer.parseInt(secondNumber);
int largestNumber = Math.max(number1, number2);
int smallestNumber = Math.min(number1, number2);
JOptionPane.showMessageDialog(null, "Largest Number is: " + largestNumber + "\nSmallest Number is :" + smallestNumber);
}
}
See more about JAVA at brainly.com/question/12975450
#SPJ1
a pki is an implementation for managing which type of encryption?
A PKI is an implementation for managing asymmetric encryption.
What is encryption?PKI utilizes asymmetric encryption, as employs both Secret keys, to safeguard transmission as well. The management of credentials as well as keys is handled by PKI, which also generates very security that consumers, services, and some other objects can still use.
Both asymmetric, as well as symmetric encryption, are combined in PKI. The mixture of symmetric as well as asymmetric encryption, which has proven so effective in public key systems has distinct advantages and ideal application cases.
Learn more about PKI, here:
https://brainly.com/question/2859293
#SPJ1