Network Security Fun. > Quizzes > Practice Exam (for midterm: m.

Practice Exam (for midterm: mods 1-7)

Started: Mar 11 at 2:07pm

Quiz Instructions

nts

Question 21

1 pts

Sean is an information security architect at a financial firm. As his first project, he must design and build an

efficient, sure-shot, yet cost-effective solution to Tetect and prevent bank credit card fraud. How should Sean

proceed?

O Design a solution that is confined to and hardcoded with a specific place and specific time. If the user

males transaction at a different place or time it will be considered an outlier and trigger an alert

Answers

Answer 1

Answer : Sean is an information security architect at a financial firm. As his first project, he must design and build an efficient, sure-shot, yet cost-effective solution to Detect and prevent bank credit card fraud. How should Sean proceed? O Design a solution that is confined to and hardcoded with a specific place and specific time.

Explanation: Sean is an information security architect at a financial firm. As his first project, he must design and build an efficient, sure-shot, yet cost-effective solution to Detect and prevent bank credit card fraud. How should Sean proceed? O Design a solution that is confined to and hardcoded with a specific place and specific time.


Related Questions

A flowchart is a useful visual that can __________.a. be used to show spatial relationships.b. be used to show frequency or distribution of parts in a whole.c. be used to show trends in one or more variables.d. be used to illustrate processes or procedures.

Answers

Explanation:

in my book flowchart is a graphical symbolic representation of computer

The first time you save a file, there is no difference between the Blank Space __________ and Save As commands.

Answers

I think the answer is save.

Hope that helps!

A citizen of any group has both _____ and _____.

Answers

Answer:

rights and responsibilities

Explanation:

Answer: Down below

Explanation:

100 points.
What is steganography? Do online research about a tool named Open Stego. Discuss the applications of this tool and explain how it can be used. Then, use Open Stego to encrypt and decrypt messages into pictures. Explain the steps you use to find the hidden messages.

Command line is the user interface in the computer’s operating system and is built into all computers. Do online research and describe how to perform steganography using the command line.

Answers

Steganography is the practice of hiding a secret message inside of (or even on top of) something that is not secret.

The attacker doesn’t need to trick the user into using applications such as Steghide. In this case, the hacker – or pen tester – is “living off the land.” The attacker is using a steganographic application to take advantage of common Windows applications and features such as Excel and PowerShell. All the victim needs to do is read the doc, and an unfortunate series of events begins to occur.

I can't do the Open Stego thingy bc I can't.

A pointing device used mainly for computer games is known as
A.stylus
B.Digitizer
C.joystick

Answers

Answer: Joystick is the only one that makes sense, a stylus and digitizer are both used on drawing tablets, not computer games.

Which directory stores the cron configuration file?.

Answers

The directory stores the cron configuration file is /etc/.

What is the cron configuration file?

Crontab file is known to be a very simple text file that is said to be composed of some  list of commands that are known to be executed at a particular times.

It is best to use crontab command in order to be able to access and update crontab files that are found in /var/spool/cron/crontabs. Crontab is the phrase that signifies for "cron table".

Learn more about directory from

https://brainly.com/question/14364696

The page that appears when you first open your Internet browser is the _____.


opening page
opening page

launch page
launch page

home page
home page

first page
first page

Answers

Answer:

i think it's opening page

Answer:

i think its also opening page

Explanation:

Fill in the blanks to explain another memory Grandpa shares with
Amara

Answers

The answers to the fill in of blanks to explain another memory Grandpa shares with Amara are

Young RecentlyOnly moments ago

What is  blank statement?

A blank statement is known to be a kind of empty statement where some information are said to be missing.

In the text above, . "Even though her Grandfather had passed away when Gina was little young" and Recently, her memories of him are still as fresh as the bakers bread."

Learn more about blanks  from

https://brainly.com/question/25573309

Which of the following statements is true?
Group of answer choices

1.An array can only be used to hold number data.

2.An index refers to the position of a particular element in an array.

3.An index does not need to be used when looping through an array.

4.Only a while loop can be used when iterating through an array.

Answers

1 an array can only be used to hold number data
An array can hold any data type, it just has to have the same data type. The right answer is 2.

What is the name for the base-2 system used by computers to represent
data?
O A. Unicode
O B. Binary code
C. Hexadecimal code
D. Decimal code

Answers

Answer:

B. Binary Code

Explanation:

Binary code is the base-2 system used by computers to represent data. Binary code consists of 0's and 1's which can be used to represent states such as on or off; go or no-go and more.

How do you answer this ?

Answers

Answer:

Just put True or false for your answer

Explanation:

Use a Dictionary

Explain two protocols to enhance cellular networks capacity?


Notes:
- You need to cite used references in your submission.

Answers

The mobile network capacity can be improved by increasing the radio spectra or also increasing the re-utilization of a given spectrum.

What is mobile network capacity?

The mobile network capacity refers to the final volume of information (data) that can be transferred to a particular customer.

A mobile wireless system refers to a given network where the connection to and from customers consists of wireless technology.

The mobile network capacity is usually improved in a given area by increasing the radio spectra or increasing the re-utilization of the spectrum.

Learn more about mobile wireless systems here:

https://brainly.com/question/1763761

Which section of a PCM is responsible for sending the proper reference voltage to many of the sensors?

Answers

The section of a PCM that is responsible for sending the proper reference voltage to many of the sensors is the input sensor section.

What are PCM inputs?

The Powertrain Control Module (PCM) is known to be an input section of the PCM.

It is made up of the engine's ignition system, fuel injection system and also emission controls. The PCM is known to receives inputs a lot from different kinds  of sensors and switches.

Learn more about sensors from

https://brainly.com/question/26320121

What element allows text to be displayed in italics, which means the words are slanted to the right?

a
The < crooked > element

b
The < italic > element

c
The < em > element

d
The < slant > element

Answers

Answer:

the answer is the italic element

i am looking for some code to write 1,1,1 to 1,1,20 then switch to 1,2,1 to 1,2,20 all the way up to 20,20,20. any info would help alot thanks.

Answers

Answer:

press [Alt]+[F3] to open the create new building block dialog box. AutoText is listed in the Quick Parts dropdown, which is in the Text group on the insert tab.

Consider the following recursive method. public static string recur(int val) { string dig = "" + (val % 3); if (val / 3 > 0) return dig + recur(val / 3); return dig; } what is printed as a result of executing the following statement? system.out.println(recur(32));

Answers

The recursive method recur executes itself from within

When the statement System.out.println(recur(32)); is executed, the string value "2101" is printed

How to determine the output of the statement?

The flow of the program is as follows:

The method keeps updating the string variable dig with the remainder of the val variable divided by 3When the remainder is less than or equal to 0, the method is exited

So, when 32 is divided by 3.

The remainders are 2, 1, 0 and 1

So, the output of the statement is "2101"

Read about java methods at:

https://brainly.com/question/19271625

draw a flow chart to find the sum of two numbers

Answers

The answer is in the above attachment....

_______ are malicious programs that come into a computer system disguised as something else such as a free computer game or screen saver.

Answers

Answer:

Trojan horses

Explanation:

_ ports are audiovisual ports typically used to connect large monitors. These ports are used with many Apple Macintosh computers.

Answers

Thunderbolt ports are audiovisual ports typically used to connect large monitors.

What is a Thunderbolt port?

A Thunderbolt is known to be used in systems by users. It is one that helps its users to be able to use one cable to have an access to a high-speed and high-resolution media.

This is often done by using one port along with a cable that is able to access both DisplayPort and PCI Express. Thunderbolt is known to contain technology that has been built into it that helps PCI Express speed to come in a good and better way.

Learn more about ports  from

https://brainly.com/question/10097616

Which of the following is an example of a moving method?

Answers

Which of the following is an example of an urgent move?

rapid extrication technique

How to ignore punctuation before and after a word javascript

Answers

Answer:

If you want to remove/ ignore punctuation before and after a word javascript, my suggestion is to remove specific punctuation from a string, it will probably be best to explicitly remove exactly what you won't like.

A new cybersecurity analyst is working at their first job. the analyst requires a penetration test reporting and evidence gathering framework that can run automated tests through integration with metasploit. recommend a framework that will fulfill the analyst's needs.

Answers

The Recommendations of a framework that will help to fulfill the analyst's needs is that he or she should not use Sn1per.

What is Sn1per?

The term Sn1per is known to be a form of automated scanner that is able to be employed in a penetration test.

It is often used to list out and scan for any form of  vulnerabilities. The use of Sn1per will  fulfill the analyst's needs in terms of that framework.

Learn more about test reporting from

https://brainly.com/question/6076728

Why didn’t social media become popular when the first cell phone hit the market in the late 1990s and early 2000s?
a.
using phones for communication was a cultural shift.
b.
the first cell phones were not connected to the internet.
c.
people often ignorde call from individuals they do not know.
d.
it was very unusual for individuals to have access to cell phones.

Answers

Answer:

b. the first cell phones were not connected to the internet.

Explanation:

Social media has only risen in popularity in the last decade. Additionally,  the first cell phones were not touch screens as they are nowadays. On some, you only called people you couldn't even text. Some did not even have caller ID's let alone other apps

The first cell phones were not connected to the internet. The correct option is B.

What is social media?

Online platforms and tools that enable individuals and groups to create, share, and exchange user-generated content, as well as participate in online communication and social networking, are referred to as social media.

People use social media for communication, entertainment, news consumption, and social interactions, and it has become an increasingly important part of their daily lives.

The first cell phones did not have internet access. Early cell phones were primarily used for voice calls and text messaging and had limited functionality.

With the introduction of smartphones and the expansion of cellular data networks, widespread use of social media on mobile devices became possible.

Thus, the correct option is B.

For more details regarding social media, visit:

https://brainly.com/question/30326484

#SPJ2

Binary is represented by two digits, write out each and describe what each means:

Answers

Answer:

binary is represented by 1 and 0

Explanation:

the binary of 1 means it has value, and the binary of 0 means it has no value. with a combination of 1s and 0s, you can get a complex program to run, like this platform :) what it basicly does is a true or false kinda think. just think of it that way: true or false, value or no value, and yes or no. the 1 is a positive value and the 0 is a negative value that has no value.

I hope this helps you :D

In binary, the 0s and 1s signify OFF and ON, respectively.

What do the binary numbers 1 and 0 represent?

In binary, the 0s and 1s signify OFF and ON, respectively. A "0" in a transistor indicates that no electricity is flowing, while a "1" indicates that electricity is flowing.

Numbers are physically represented inside the computing equipment in this fashion, allowing calculations.

Learn more about binary numbers here:

https://brainly.com/question/13371877

#SPJ4

Your transactions data set contains more than 10,000 rows. Some rows contain the same transaction. How would you remove the rows containing the identical transactions?.

Answers

To remove the rows containing the identical transactions, first click on the data tab that is displayed at the top of the screen. Then you select the range by highlighting it.

Later on check the top of the screen and then click on the data tab. The various commands will be displayed to you, and you should then click the 'remove duplicates'.

What does duplicate transactions implies?

Duplicate transactions is known to take place when a customer is said to refreshes their checkout page or when they had clicked on the buy button in a lot of times.

Note that identical transaction implies that there is a transaction about an items with some identical attributes or technical characteristics.

Learn more about identical transactions from

https://brainly.com/question/7176767

4.which pre-defined feature is known as functions in Excel?
a.formula
b.property
c. data

Answers

Answer:

I think formula?

Explanation:

Lattice-based access controls use a two-dimensional matrix to assign authorizations. What are the two dimensions and what are they called

Answers

Answer:

riesige Pyramide

Explanation:

riesige Pyramide

A Lattice-based access controls is used to value derivatives by employing a binomial tree to calculate the various ways the price of an underlying asset, such as a stock, might take over the derivative's life.

What are Lattice-based access controls?

In computer security, lattice-based access control exists as a complex access control model established on the relations between any assortment of objects and subjects.

A Lattice-based access controls is used to value derivatives by employing a binomial tree to calculate the various ways the price of an underlying asset, such as a stock, might take over the derivative's life. The binomial tree plots out the potential values graphically that alternative prices can have over additional time periods.

Three primary kinds of access control systems exist Discretionary Access Control (DAC), Role Based Access Control (RBAC), and Mandatory Access Control (MAC).

There are two kinds of access control: physical and logical. Physical access control limitations access to campuses, buildings, rooms, and physical IT assets. Logical access control limitations connections to computer networks, system files, and data.

To learn more about Lattice-based access controls refer to:

https://brainly.com/question/14982444

#SPJ2

send link for a qc or paddle

Answers

Answer:

heres a few paddles, i dunno which one you want so i put a few.

Explanation:

If you key a paragraph in uppercase and need to change it to sentence case without having to re-key the paragraph, which option would you use?

Answers

Answer:

I found the answer on quizlet and it said "sentence case" i don't know if its right but hope it helps

How to give the the crown?
Can show a video if you can or photos!

Answers

Answer:

The crown is called the Brainliest award. If two people had given you answers then there is a option of mark as Brainliest. Click there in the option of mark as Brainliest in which you like the answer most. If any one person has given answer then after some days you will a notification to mark his/her answer as Brainliest. By this you can mark an answer as Brainliest.

Please have a great day, and have fun giving people Brainliest answers <3

Other Questions
PLEASE LOOK AT PICTURE AND HELP!!! What do you think the future of robots in the classroom is? What is the your answer? Pleaseee help meee All of the following statements are true of the Confederate draft during the Civil War except A. it was the first legally binding draft in American history. B. it was supported by all classes as a necessity C. foIr most of the war, the age limits for the draft were between eighteen and thirty-five. D. planters who owned more than twenty slaves and the wealthy could legally avoid being drafted by hiring substitutes. Which african country is losing its rainforest the fastest. Which of the following does water pollution affect: surface water, ground Water, or ocean water? A)Pollution affects surface water and ground water only.B)Pollution affects surface water, ground water, and ocean water.C)Pollution affects surface water and ocean water only. D)Pollution affects groundwater and ocean water only. Find the value of(-3)Show workMust show work!! [tex]\underline{\boxed{\blue{\Large{\bf{Challenge}}}}}[/tex]If 'P and 'Q' are two points whose coordinates are (at^2, 2at) and (a/t^2, 2a/t) respectively and S is the point(0, 0). Show that 1/SP + 1/SQ is independent of 't'.Note:-Plagarised/spam/short answers will be deleted on the spot.Answer with all steps and proper explanation . 50 points and I will mark you a brainlest! How does adding carbon dioxide to the ocean affect its pH?Provide an explanation for the results (or what should have happened) using SCIENTIFIC REASONING Louise walked her dog and washed her bike. The time she spent walking her dog was one-fourth the time it took her to wash her bike. It took Louise 14 minutes to walk the dog. How long did it take Louise to wash her bike? How many sides does a polygon have if the sum of the measures of the interior angles is 5940 Match the following items. Thanks!! What are the circumstances under which a person will feel disadvantage, if the parking ticket is lost Which sentence is a support detail for paragraph three? service is valuable in ways that cannot be measured in dollars. service is helping other people and being active in your community. workers there use the produce to help feed people in the community. the soup kitchen is extremely valuable for those struggling to get enough to eat. During the digital bmr experiment, what was the principal parameter measured in the small animal respirometer to determine oxygen consumption?. . Quinn is building a table. The top is an isosceles trapezoid, with bases that are 1.5 meters and 2 meters, and a height of Imeter. What is the area of the table top? Why was the Bataan Death March considered a war crime?A. Many aircraft carriers were sunk.B. The Philippines were neutral.C. War had not been declared.D. Many unarmed prisoners were killed. And the cross-section perpendicular to the yaxis is a square. Set up a definite integral expressing the volume of the solid Im very confused I hate this Which is the correct graph of y=2/x^2-4 ? Carmen is introducing fellow teachers to the concept of SEL at an in-service meeting. What is MOST likely to be the title of Carmens presentation? A. Stress Management in Our Students Lives B. A Zero-Tolerance Policy for Gun Violence in Schools C. Providing Healthy Breakfasts and Lunches for All Students D. Technological Advancements in Healthcare for Teens