Explanation:
Las WAN se utilizan para conectar redes LAN y otros tipos de redes. Así los usuarios se pueden comunicar con los usuarios y equipos de otros lugares. Muchas WAN son construidas por una organización en particular y son privadas.
I need the answer ASAP. I’ll mark brainliest if right
Answer:
copy or repeat
Explanation:
Cindy, our company’s Chief Technology Officer (CTO), suspects that someone is trying to hack into the company, and she’s heard that you have some cybersecurity skills that could prove useful. Cindy suspects that there are some hackers who are using SQLi to launch attacks and steal information from one of the databases and also to hijack users’ sessions and take over certain accounts. Can you use your cybersecurity penetration testing skills with SQLi to track down the hackers?
Cindy will need for you to submit a report with recommendations on your findings, which is pretty typical for others in your industry with this type of role.
Write a security assessment report that will be sent to the technical team and senior management, and specifically Cindy, the CTO. Your report should be approximately 3 pages and address the following:
Summary of Findings (overview of vulnerabilities found)
Types of tests used (with details on outcomes)
Impact of Threats
How any parts of the CIA Triad could be compromised with the vulnerabilities
Does OWASP have any recommendations that you can apply?
Executive Summary (what recommendations would you give to the CTO)
Present potential solutions, mitigations, or other
suggestions for reducing or eliminating the vulnerability
Answer:
I'm a cyber security enthusiast
Explanation:
How do you want the report delivered to you?
Use parallel and highway in a sentence
Answer:
The road ran parallel to the highway, with the Uncompahgre River separating the unpaved road from the main thoroughfare to the east.
Answer:
QUESTION:
Use parallel and highway in a sentence
ANSWER:
We were on the highway parallel to the train tracks.
Explanation:
Hope that this helps you out! :)
If any questions, please leave them below and I will try my best and help you.
Have a great rest of your day/night!
Please thank me on my profile if this answer has helped you!
How does computer science play a role in art?
Answer:
Many artists now learn to code; computer scientists develop algorithms with aesthetics as the goal. Projects such as Deep Dream, a program that uses neural networks to produce new visuals, let anyone use AI approaches to generate, ostensibly, art.
Abby wants a high-end computer system for her home office that can be upgraded. Which of the following should she choose?
Laptop
Gaming Console
Desktop
Server
who doesn't like reeses
Answer:
I like Reeses. but then sometimes I don't
literally nobody lol
Decimal numbers are based on __________.
letters (a and b)
16 digits
10 digits
two digits (1s and 0s)
Answer:
They are based on 10 digits.
Explanation:
I just did the test and got the answer right.
What protects your computer so that it doesn't get a computer virus?
Answer:
an anti-virus program such as avg
Stephen is creating video tutorials to sell his company's products. The target audience will consist of company employees using primarily new computers with the Windows operating systems and Internet Explorer 9. Stephen is debating whether to publish the videos using the MP4 or the OGG video format. Both formats are compatible with the HTML5 video element, which he is using in his tutorials. Which of the following would be a reason for Stephen to choose one format over the over?
A. The MP4 video format is a free open-source solution that is compatible with all browsers.
B. The OGG video format is a free open-source solution that is compatible with all browsers.
C. The MP4 video format is natively supported by Internet Explorer 9 and does not require a plug-in.
D. The OGG video format is natively supported by Internet Explorer 9 and does not require a plug-in.
Answer:
The answer is "Option C".
Explanation:
MP4 is a digital video filesystem that was firstly introduced in 2001. That very many platforms or applications throughout the digital market support MP4. Sound signals, video clips, yet still images, and text could be stored in an MP4 format, therefore internet Explorer 9 accepts the MP4 video format it does not have to have a plug-in.
A company is recruiting for a web designer. What kind of candidate should the company recruit so that they can complete the tasks
resourcefully?
Answer:
Explanation:
The company should recruit someone who possesses at least an associate's degree in computer science or a technical subject and knows designing languages such as HTML5 and CSS. These two languages are the primary design languages that every single web designer must know. Without these two languages, a website cannot be created. Every career in tech teaches these two languages since they are basics that must be known, therefore an associate's degree would show that they have well versed in many technical subjects.
WHAT SYPHERPKS REAL NAME
Answer:
Ali Hassan
Explanation:
Answer:
His real name is Ali Hassan. Because, he was born from Austin, Texas
Explanation:
Sampson runs his own online business, and much of his success depends on the reliability and accuracy of various online data needed to run that business. How does integrity help to ensure that Sampson can trust the online data he is using?
because integrity takes steps to ensure Sampson's information cannot be altered or deleted by unauthorized people and that it stays intact, no matter where it goes
because integrity refers to a process that makes it impossible for anyone but Sampson to see the data that he is using
because integrity blocks all hackers from interfering with Sampson's data and what he does with it
because integrity allows Sampson to access and move data on an unsecure network
Answer:
because integrity takes steps to ensure Sampson's information cannot be altered or deleted by unauthorized people and that it stays intact , no matter where it goes.
essay about important of
education
and discipline?
Answer:
Importance of Education & Discipline
Explanation:
Education is an enlightening learning process.It enhances knowledge & perspective towards selves & outside world. It enriches our capabilities, virtues & minimises our vices.
Education is a crucial strong tool, which can empower & transform individuals & society, make world better.
Discipline is obedience to appropriate code of behaviour.It is very integral to maintain orderliness, no chaos in life. It is interconnected with good qualities of dedication (commitment) to goal & hard work. So, it helps attain desired goal with positive outlook & sense of self accomplishment.
60 points for this!!!!!!!!!!!!!!!!
Answer:
you can convert that to word document and aswer and edit every thing
Explanation:
Explanation:
it is clearly not visible
please send me again
I just played slither.io and got a length of 50632! Can you beat that? http://slither.io
I WANNA SEE YOU BEAT ME ¯\_(ツ)_/¯ if my name is on the leader board it's kirishima
Answer:
Nice
Explanation:
Answer:
well yes
Explanation:
can you plz tap the thanks button and rate 5 stars thx
he superclass Student contains: a constructor that accepts a String corresponding to the name of the school the student attends a toString method that returns 'student at X' where X is the name of the school the student attends. Write a public subclass HighSchoolStudent, based on Student, which contains: a constructor accepting a String which is used as a parameter to the superclass constructor a toString method that returns 'high school student at X'. This method must use the toString method of its superclass.
Solution :
public [tex]$\text{class}$[/tex] Student {
[tex]$\text{protected String}$[/tex] school[tex]$;$[/tex]
public [tex]$\text{Student}$[/tex](String school) {
[tex]$\text{this.school}$[/tex] = school;
}
public String [tex]$\text{toString}()$[/tex] {
return [tex]$\text{"student at"}$[/tex] + school;
}
}
HighSchool[tex]$\text{Student.java}$[/tex] :
public class [tex]$\text{HighSchoolStudent}$[/tex] extends Student {
public [tex]$\text{HighSchoolStudent}$[/tex](String school) {
super[tex]$\text{(school)}$[/tex];
}
public String [tex]$\text{toString}()$[/tex] {
return [tex]$\text{"high school"}$[/tex] + super.[tex]$\text{toString}()$[/tex];
}
}
Art directors win awards for their work, and awards can make their careers. Art directors win awards for work in fields like the following:
film
animation
television
advertising
gaming
For this project, focus on the career of one award-winning art director in one of the above fields and research award(s) that he or she has won through the Art Directors Guild within the past five years. .
As this is a visual arts area, you will need to present examples of the art. Be sure the Terms of Use from your sources allow for student use. You can research your topic and the available range of topics by a variety of means:
internet searches
movie databases
the award organization archives
industry news and magazines
Use reliable sources and factual content while keeping quotes to a minimum. Present the topic in your own words, and do not present copied text from published sources as your own reporting.
In your paper, include a timeline, a discussion of your chosen art director’s education, and career highlights. You will need to show why the art director won the award.
Your presentation should be 3-4 pages if written, or five minutes long if presented as a Power Point presentation. Use your own words, and use quotes sparingly. If your presentation is oral, practice presenting your project and adjust your length for a clear, calm, and concise delivery. Check your work.
Please include the following:
A title
Introduction to your topic
Why you chose it
Background info, and bio of the subject of your presentation
Explanations of terms as needed
What you found out about your subject
Examples, timeline, photos, artwork
What you particularly like about your subject
Conclusion, with personal ideas if you imagine a similar career for yourself
Citations of sources
Question # 1
File Upload
Submit your biography of an art director.
Answer:
N/A
Explanation:
im sorry mate, but this sounds like its supposed to be a paper by you, i cant write a paper for you, but i can help you make one, ive got some methods and tricks i can share to make it easier
again not trying to be mean, just trying to help the best way i can :)
Answer:
slide 1
A title
And the Art Direction Award Goes to...ME
slide 2
Intro to Tamara Deverell
Tamara Deverell is an actress who has appeared in Nightmare Alley (2021), Guillermo del Toro's Cabinet of Curiosities (2022), and Star Trek: Discovery (2017). Since February 7, 1992, she has been married to Ken Woroner. They've got two kids.
slide 3
Career
Tamara Deverell is a production designer who has worked on Star Trek: first two seasons as well as the live action episodes of Star Trek: Short Treks. She received the 2019 Directors Guild of Canada Award for Best Production Design - Dramatic Series for her work on the episode "Such Sweet Sorrow, Part 2" of Star Trek: Discovery.
Deverell was interviewed for the DIS Season 1 DVD and Blu-ray special feature "Designing Discovery," as well as the Star Trek: Discovery Official Companion feature "Making Discovery.
In the late 1980s, Deverell attended Capilano University in Vancouver, completed a four-year degree at the Emily Carr Institute of Art and Design, and began working in film art departments in Montreal.
slide 4
Citations of source
Image from wiki
Using the simple alphabet code below, you will decode and encode the message. Write the Full
Message on the line given. Your spaces have been indicated.
1
3
5
6
7
8
9
10
12
13
2
b
4
d
11
k
a
с
e
h
i
m
f
19
j
23
1
25
14
15
16
17
18
20
21
22
24
26
Z
n
O
p
q
r
t
u
V
w
х
у
Answer:
acefghijlmb2d4k1113589136510waynopqrtuvx2261415161718202122232425
Explanation:
questions about the data policy and privacy policy of YT
the questions are in the picture attached below!
Answer:
I'm confused
Explanation:
Why do computers use binary code?
Answer:
To make sense of complicated data, your computer has to encode it in binary. Binary is a base 2 number system. Base 2 means there are only two digits—1 and 0—which correspond to the on and off states your computer can understand
Answer:
It has two clearly distinct states that provide a safety range for reliability and the least amount of necessary circuitry, which results in the least amount of space, energy consumption, and cost.
In your own words! Give me an example of Digital Literacy? (50 words
No links or I will report!!!!!!!
Answer: See explanation
Explanation:
Digital literacy is when an individual can compose, find, and evaluate, a clear and composed information on digital platforms.
It involves possessing the skills that one need to live, and learn, through the use of digital platforms such as social media, mobile
Example of digits literacy is the use of search engines, understanding how web browser can be used or sending of emails. etc
A natural language processor reads the sentence The walk was tiring and mistakes the noun “walk” as a verb. What is such an error called?
A.
syntax-level ambiguity
B.
semantic information complexity
C.
lexical ambiguity
D.
context error
A natural language processor comes across a sentence that contains the word "weightless." The morphology component identifies the word "weight" and the suffix "-less." What type of morphology does this follow?
A.
inflectional morphology
B.
compounding morphology
C.
functional morphology
D.
derivational morphology
Pick the sentence that is true with regards to NLU.
NLU stands for natural language unit. It deals with generating human language. It works by mapping input to representations and analyzing them. It also accesses content from a knowledge base and maps sentence structures. NLU is comprised of NLP and NLG.
A language translator software works by recognizing the words a person is speaking and translating the semantics and meaning into another language. What components of NLP are utilized in this software?
The software first uses
to map and analyze the input. It then creates the output using
.
Which of these is a compound morphology?
A.
bookkeeper = book + keeper
B.
happiness = happy + ness
C.
books = book + s
D.
banker = bank + er
Answer: Which of these is a compound morphology? (A. bookkeeper = book + keeper)
The software first uses (NLU) to map and analyze the input. It then creates the output using (NLG).
(It works by mapping input to representation and analyzing them.)
What type of morphology does this follow? (D. derivational morphology)
What is such an error called? (C. lexical ambiguity)
Explanation: Plato
A natural language processor misinterprets the noun "walk" as a verb in the sentence "The walk was tiring." Such an error is called lexical ambiguity. The correct options are C, D, and A respectively.
Lexical ambiguity refers to a situation wherein a word or phrase has more than one feasible meanings or interpretations.
The word "weightless" follows derivational morphology. Derivational morphology involves including affixes to a base word to create new phrases with extraordinary meanings or phrase training.
The real sentence close to NLU is: NLU stands for herbal language know-how. It offers with mapping input to representations, reading them, and gaining access to content from a expertise base.
In a language translator software, two components of NLP are applied. The software program first uses natural language expertise (NLU) to understand the words being spoken and translate the semantics and which means.
The compound morphology example is bookkeeper = e-book + keeper. Compound morphology involves combining or extra separate words to create a new phrase with a awesome which means.
Thus, the correct options are C, D, and A respectively.
For more details regarding software, visit:
https://brainly.com/question/32393976
#SPJ2
Geraldo would like to compare two areas of text, Text1 and Text2, to each other. What steps should he take?
select Text1, hit F1, click “Compare to another selection,” select Text2
select Text1, hold Shift+F1, click “Compare to another selection,” select Text2
hold Shift+F1, select Text1, hold Shift+F1 again, select Text2
hit F1, select Text1, hit F1 again, select Text2
Answer:
Can you elaborate on this?
Which term best describes a popular marketing strategy that centers
around the acquisition, enhancement, and retention of long-term
relationships that add value for the organization and the customer?
Answer:
Customer Relationship Management (CRM).
Explanation:
CRM is an acronym for customer relationship management and it typically involves the process of combining strategies, techniques, practices and technology so as to effectively and efficiently manage their customer data in order to improve and enhance customer satisfaction.
This ultimately implies that, these employees are saddled with the responsibility of ensuring the customer are satisfied and happy with their service at all times.
Marketing can be defined as the process of developing promotional techniques and sales strategies by a firm, so as to enhance the availability of goods and services to meet the needs of the end users or consumers through advertising and market research. It comprises of all the activities such as, identifying, anticipating set of medium and processes for creating, promoting, delivering, and exchanging goods and services that has value for customers.
Basically, CRM involves understanding customer needs, building and maintaining healthy long-term relationships with them, in order to add value or scale up your business.
Hence, customer relationship management (CRM) is one of the popular marketing strategy that is mainly based on the acquisition, enhancement, and retention of long-term relationships that add value for the organization and the customer.
What are the uses of various lights? How are they all different? How do you decide on their usage? How can you use natural light to your advantage?
Answer:
lights
Explanation:
I NEED THIS ASAP!!! I"LL GIVE 30 PTS.!!!
2 things are required to make a loop: a. ______________ b. _____________
Answer:
(not quite sure what the question is asking seems you need, but bare minimum is)
an initial value and an increment or decrement
a condition where the loop stops
Explanation:
assuming you have the structure for the loop, depending on the language it could be a for, while or until command. You will always need the initial value for the variable your looping on, how it changes (increment or decrement) and then a condition when the looping in to stop.
e.g. say you want to add up the numbers from 1 to 10, inclusive
sum = 0
for I is 1 to 10 incremented by 1
sum=sum+I
end of loop
please help
match the features with the software
Word Processor, Spreadsheet, Database
- addiction of images, drawings, tables and graphics to text
- centralized data management
- data security
- digital version accounting sheets
- supports multiple users for adding data simultaneously
- visual representation of data
- digital version of a typewriter
Answer:
word processor- addition of images, drawing tables, and graphics to texts and digital version of a typewriter. spreadsheet- digital version of accounting sheets and visual representation of data. database- centralized data management, data security, and supports multiple users for adding data simultaneously
Just switch the two I got wrong and you'll get the correct answers. :)
Select the correct answer. In which item is energy stored in the form of gravitational potential energy? A. a slice of bread B. a compressed spring C. an apple on a tree D. a stretched bow string
Answer:
C. an apple on a tree
Explanation:
Energy can be defined as the ability (capacity) to do work. The two (2) main types of energy are;
a. Kinetic energy (KE): it is an energy possessed by an object or body due to its motion.
b. Gravitational potential energy (GPE): it is an energy possessed by an object or body due to its position above the earth.
Mathematically, gravitational potential energy is given by the formula;
[tex] G.P.E = mgh[/tex]
Where;
G.P.E represents gravitational potential energy measured in Joules.
m represents the mass of an object.
g represents acceleration due to gravity measured in meters per seconds square.
h represents the height measured in meters.
In an apple on a tree, energy is stored in the form of gravitational potential energy.
Match each role to the corresponding web development task.
Answer:
1. Art director: selecting color palettes.
2. Web project manager: creating budget spreadsheets.
3. Usability lead: researching target audiences.
4. Developer: coding.
Explanation:
HTML is an acronym for hypertext markup language and it is a standard programming language which is used for designing, developing and creating web pages.
Generally, all HTML documents are divided into two (2) main parts; body and head. The head contains information such as version of HTML, title of a page, metadata, link to custom favicons and CSS etc. The body of the HTML document contains the contents or informations of a web page to be displayed.
The various role performed during the web development process (task) includes;
1. Art director: selecting color palettes. This individual is saddled with the responsibility of choosing the color that best fits a website.
2. Web project manager: creating budget spreadsheets. He or she is responsible for performing tasks such as creating a financial (budget) plan, start and finish date (timing), procurement, etc.
3. Usability lead: researching target audiences. This individual is saddled with the responsibility of surveying and collecting data from the demography for which the website is designed.
4. Developer: coding. This is the technical expert referred to as a web developer and is responsible for writing the set of instructions (codes) that enables the website to work properly and serve a purpose.
When planning your App what difficulties did come across and why?
Answer:
1. An engaging app idea
2. Sufficient funds
3. Cross-platform apps
4. Interactive apps
5. Application content management
ETC...