Answer:
C. by interacting directly with external networks to protect a private network.
Explanation:
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.
Phishing is an attempt to obtain sensitive information such as usernames, passwords and credit card details or bank account details by disguising oneself as a trustworthy entity in an electronic communication usually over the internet.
Phishing is a type of fraudulent or social engineering attack used to lure unsuspecting individuals to click on a link that looks like that of a genuine website and then taken to a fraudulent web site which asks for personal information.
In order to prevent a cyber attack on a private network, users make use of demilitarized zone (DMZ) depending on the situation.
A demilitarized zone (DMZ) work by interacting directly with external networks to protect a private network.
What are the key components to planning a presentation? Check all that apply.
audience
conclusion
methods
purpose
thesis
title
topic
Answer:
I. audience
II. methods
III. purpose
IV. topic
Explanation:
Presentation can be defined as an act of talking or speaking formally to an audience in order to explain an idea, piece of work, project, and product with the aid of multimedia resources or samples.
Basically, any speaker who wish to create an effective presentation should endeavor to interact frequently with the audience by holding a conversation.
This ultimately implies that, to create an effective presentation, speakers are saddled with the responsibility of interacting more often with the audience by taking questions, making a joke, getting them to repeat informations loud at intervals etc.
Additionally, speakers are advised to be passionate and show enthusiasm during their presentation because it would enhance their ability to speak confidently and as such leading to an engaging presentation.
The key components to planning a presentation include the following;
I. Audience: these are the group of listeners to whom the speaker is making a presentation to.
II. Methods: the speaker should choose the most effective and efficient method to use in getting the message across to the audience (listeners).
III. Purpose: this is the main idea or reason for which the presentation is being created or done by the speaker.
IV. Topic: this is simply the title of the presentation and it describes the subject matter.
Type the correct answer in the box. Spell all words correctly.
Derek wants to share his digital portfolio with a wider audience. How can he do so?
Derek should publish his digital portfolio on the
, to show it to a wider audience.
Answer:
internet
Explanation:
Derek wants to share his digital portfolio with a wider audience. Then this can be done by the internet.
What is the internet?An international network is a collection made up of linked networks that use standardized data exchange to provide a range of digital services.
Derek wants to share his digital portfolio with a wider audience. Then this can be done by the internet.
More about the internet link is given below.
https://brainly.com/question/13308791
#SPJ2
Need answer ASAP. No links
Select the correct answer
Clara writes online articles based on world religions. Her articles have references to dates. Which HTML element will help her display dates (A.D. or B.C.) correctly on a web page?
Posted the answers on the picture since they don’t show up when I write them on here
Answer:
A <b>
Normally AD and BC are written in bold letters.
for example : The terms anno Domini (AD) and before Christ (BC).
Within available option the best option to choose is <b> hope it helped
Answer:
its d <small>
Explanation: A:D and B:C are displayed smaller then normal letters
Which of the following are exclusively associated with copyright protection? (Select three.)
Right to reproduce small excerpts of a work
Right to apply for a patent
Right for anyone to display a work
Right to lend a work
Right to use a trademark
Right to make derivatives of a work
Right to reproduce a work
Answer:
Right to make derivatives of a work.
Right to reproduce a work.
Right to lend a work.
Explanation:
Just took the quiz on testout.
The rights which are exclusively associated with copyright protection are:
F. Right to make derivatives of a work. G. Right to reproduce a work. D. Right to lend a work.Copyright protection has to do with an intellectual property law which makes it illegal for a person to copy the work of another, without approval, or adequate reference
As a result of this, we can see that the rights which are exclusively associated with copyright protection are the rights to make derivatives of a work, reproduce a work and to lend a work because they are the intellectual property of the author.
Therefore, the correct answers are options F, G, and D
Read more here:
https://brainly.com/question/23385572
1. Pasar los siguientes ejercicios a diagrama de bloque
Ejercicios:
a) Un editor puede corregir 184 páginas de un libro en 8 horas de trabajo. ¿Cuántas páginas puede corregir los sábados que trabaja únicamente 5 horas?
b) Si 14 lápices cuestan $42 ¿Cuánto cuesta un lápiz y cuánto me costará comprar 25 lápices?
2. Pasar los Diagrama de Bloques obtenidos a Pseudocodigos
Answer:
A) Los sábados el editor puede corregir 115 páginas.
B) Cada lápiz cuesta $3 y 25 lápices cuestan $75.
Explanation:
A) Dado que un editor puede corregir 184 páginas de un libro en 8 horas de trabajo, para determinar cuántas páginas puede corregir los sábados que trabaja únicamente 5 horas se debe realizar el siguiente cálculo:
184 / 8 x 5 = X
23 x 5 = X
115 = X
Por lo tanto, los sábados el editor puede corregir 115 páginas.
B) Dado que 14 lápices cuestan $42, para saber cuánto cuesta un lápiz y cuánto me costará comprar 25 lápices se deben realizar los siguientes cálculos:
42 / 14 = X
3 = X
3 x 25 = 75
Por lo tanto, cada lápiz cuesta $3 y 25 lápices cuestan $75.
What is Inheritence in computer science? Explain in your won words with examples.
Answer:
Inheritance is when one class or script, inherits the properties and methods of another class. They can be re-used which makes it useful. This is why there are parent classes and child classes. Child classes inherit the properties of the parent class. An example is when a "car", "truck" are subclasses of a class called vehicle. Allowing you to make more vehicle using the same parent class.
Hope this makes sense!
Suppose you have a certain amount of money in a savings account that earns compound monthly interest, and you want to calculate the amount that you will have after a specific number of months. The formula is as follows:
f = p * (1 + i)^t
• f is the future value of the account after the specified time period.
• p is the present value of the account.
• i is the monthly interest rate.
• t is the number of months.
Write a program that takes the account's present value, monthly interest rate, and the number of months that the money will be left in the account as three inputs from the user. The program should pass these values to a function thatreturns the future value of the account, after the specified number of months. The program should print the account's future value.
Sample Run
Enter current bank balance:35.7↵
Enter interest rate:0↵
Enter the amount of time that passes:100↵ 35.7↵
Btw, this does not work, but is presumably close to the answer.
p=float(input("Enter current bank balance:"))
i=float(input("Enter interest rate:"))
t=float(input("Enter the amount of time that passes:"))
print(p *(1+i)^t)
Answer:
The update code is:
p=float(input("Enter current bank balance:"))
i=float(input("Enter interest rate:"))
t=float(input("Enter the amount of time that passes:"))
print(p*(1+i)**t)
Explanation:
Required
Program to compute future value
Up to the third line, your program is correct.
The only correction that needs to be made is as follows:
On the fourth line, change p*(1+i)^t to p*(1+i)**t because Python use ** as raise to power and not ^
Easy way of communication with people is one disadvantage of a network. *
1.True
2.False
Answer:
false
because we are able to connect with people easily..
without have to wait for long time in the case of letters..
Answer:
False.
Explanation:
WLAN is a network connected by cables. *
true or false
Answer:
are you girl
shslanshaknskaozbdksos
Answer:
true
Explanation:
it is wireless LAN network connected by cables