Answer:
The answer to this question is given below in this explanation section.
Explanation:
"cyber security"
cyber security refers to the body of technologies,Processes and practices designed to protect networks,devices,programs and data from attack,damage or unauthorized access.Cyber security may also be referred to as information technology security.
Importance:
Cyber security is important because government financial and medical organization collect process and store unprecedented amounts of data on computer and other devices.A significant portion of that data can be sensitive information,whether that be intellectual property financial data personal information or other type of data for which unauthorized access or exposure could have negative consequences.organizations transmit sensitive data across network and to other devices in the course of doing business,and cyber security describes the discipline dedicated to protecting that information and the systems use to process or store it.
Challenges of cyber security:
For an effective cyber security an organization needs to coordinates its effort throughout its entire information systems.Elements of cyber components all the following:
Network securityApplication securityEndpoint securityData securityIdentity managementDatabase and infrastructure securitycloud securityMobile securityManaging cyber security:
The national cyber security alliance,through recommends a top down approach to cyber security in which corporate management leads the change in prioritizing cyber security management across all business practices. NCSA advises that companies must be prepaid to response to the inevitable cyber incident restore normal operations,and ensure that company assets and the company reputation are protected.
What are some ways to cut down on repetitive code in your website?
Answer:
using functions or loops
Explanation:
Functions allow you to repeat code execution simply by calling the function containing the code that needs to be repeated multiple times.
Loops also allow you to execute the same code repeatedly.
prepare a model of an editorial on "social problems and evils are the adversary factors of progress and prosperity"
Answer:Social problems are the issues that are collectively faced by a society. It is not only related to one individual but a whole society. For example; illiteracy, poverty, infanticide, child abuse, child labour etc.
Social problems are the issues that are collectively faced by a society. It is not only related to one individual but a whole society. For example; illiteracy, poverty, infanticide, child abuse, child labour etc. Social evils are those activities that negatively affect a country. For example; alcoholism, drug abuse, prostitution etc.
Social problems are the issues that are collectively faced by a society. It is not only related to one individual but a whole society. For example; illiteracy, poverty, infanticide, child abuse, child labour etc. Social evils are those activities that negatively affect a country. For example; alcoholism, drug abuse, prostitution etc. Both social problems and evils badly affect a country. They are a hurdle in the development of the country.
Thanxxxx
Explanation:
Which of these cannot be used to open a zip file?
O WinZip
O WordPad
File Viewer Plus
O Apple Archive Utility
Answer:
c
Explanation:
bc
PLEASE HELP!!!!
Which of the following statements about content-based filtering is TRUE?
A. With content-based filtering, users receive recommendations for items liked by similar users.
B. With content-based filtering, users receive recommendations for items that are similar in type to ones they already like.
C. Both A and B are true
D.Neither A nor Bare true
Answer:
D
Explanation:
It means its based on things similar to what you are reading or looking at.
The statement that is true about content-based filtering is; A. With content-based filtering, users receive recommendations for items liked by similar users.
What is Content based Filtering?
Content-based filtering is defined as a type of recommender system that attempts to guess what a user may like based on that user's activity.
Now, from the given options we can say that option A is correct because it matches the description we have above about Content based filtering.
Read more about Content based filtering at; https://brainly.com/question/10043488
#SPJ9
state differences between title bar and menu bar
Answer:
The answer to this question is given below in this explanation section.
Explanation:
"Title bar"
A title bar is a small strip that extends across the top of a window.It display the title of the window and typically include the close minimize and maximize button.In macros these buttons are on the left side of the title bar while in windows they are on the right.The title bar is a horizontal bar located at the top of a window in a GUI.It displays the title of the software name of the current.
"Menu bar"
A menu bar is a graphical control elements which contains drop down menu.The menu bar purpose is to supply a common housing for window or application specific menu which provide access to such function as opening file interaction with an application or displaying help documentation or manuals.
In cell B3, insert a nested MATCH function within an INDEX function that will look up the rental price in column D using the apartment number referenced in cell B2. With 101 entered in cell B2, the lookup function displays $950.00.
Solution :
Step 1:
Open the excel exploring_e07_grader_h1_Apartment.xlsx and save it as exploring_e07_grader_h1_Apartment_LastFirst.
Step 2:
At cell G8 in the Summary worksheet, insert the date function to the number of Years since remodel:
Compute the difference between the years 1/1/2018 value in the cell H2 and the Last remodel date present in cell F8 which returns the number of days.
Then, divide the resultant by 365 days to get the answer in the form of years.
The formula to compute the number of years since remodel at cell G8 is,
=($H$2 - F8)/365.25
Copy the function used in the cell G8 to the cells G9:G57.
Step 3:
At cell H8 in the Summary worksheet, insert the function to compute the pet deposit.
Condition to check is whether the number of rooms that is at Cell C8 is greater than or equal to 2 and it is remodel less than 10 years ago.
If the condition is true, then pet deposit cost is $275 present at cell H4.
Otherwise the pet deposit cost is $200 present at cell H5.
So, the formula to apply at cell H8 is,
=IF(AND(C8>=2, G8<$H$3), $H$4, $H$5)
Step 4:
At cell I8 in the Summary worksheet, insert the function to display Need to Remodel:
Condition to check is whether the apartment is unoccupied depending on the cell E8(“Yes” or “No”) and last remodeled that is cell G8 is greater than 10 years (cell H3).
If the condition is true, then display as “No Change”.
Otherwise display as “Need to Remodel”.
So, the formula to apply at Cell I8 is,
=IF(_AND(_E8="No", G8>$H$3), "Need to Remodel", "No Change")
Step 5:
Copy the functions used in the cells H8:I8 to the cell range H9:I57.
Step 6:
At cell B3, to display the rental price:
By using Index function look up for the rental price present in Column D and check for the match of cell B2 with respective the Column Range A8:A57.
Syntax for INDEX function is:
=INDEX(Array, Row number, Column number)
Syntax for MATCH function is:
=MATCH(Loop up, Loop up array, Match type)
So, the function to be inserted at cell B3 is,
=INDEX($D$8:$D$57, MATCH(B2, $A$8:$A$57,0))
.WAP to enter monthly sale of Salesman and give him commission i.E. If the monthly sale is more than 500000 then commision will be 10% of monthly sale otherwise 5%
sales = float(input("Enter monthly sales amount: $"))
commission = 0.05
if sales> 500000:
commission = 0.1
print("You earned: $"+str(sales*commission))
I wrote my code in python 3.8. I hope this helps.
What natural resources products are discussed in the article? Are they renewable or nonrenewable?
Where is the article
Word templates include pre-made flyers which may be edited and saved only if permission is obtained from the Microsoft Office teacher.
Question 3 options:
True
False
Karen wants to create a program that will allow the user to input their age. Which of these lines of code should be used?
print("What is your age?")
age = ("What is your age?")
age = input("What is your age?")
age = ask("What is your age?")
Answer: age = input("What is your age?")
Explanation: Since this is the syntax for inputing a variable and storing it as age
Answer:
Answer is age=input(what is your age)
Explanation: Its right because age=input your inputting your age and what is asking you hopefully it helped have a good day :)
what is The Impact Of Technology On Real Estate
Answer:
Technology can help real estate agents predict the future values of properties in the market. For most consumers purchasing a new home is an investment, but having a reliable source of value and future value, will make them more confident in investing into that property.
Explanation:
use of the Internet to access programs and data on computers that are not owned and managed by the user often using large data centers
Answer:
Cloud computing
Explanation:
Given that Cloud computing is a term that is used in explaining the method in which the users utilize big data centers like Amazon Web Services, Microsoft Azure, etc, to carry out functions such as storing and accessing created data and files, and formation of the database online without saving it on the user's computer.
Therefore, CLOUD COMPUTING is the use of the Internet to access programs and data on computers that are not owned and managed by the user often using large data centers.
What is the full path and filename for the file on a Debian Linux distribution that displays the time zone settings?
Answer:
/etc/timezone
Explanation:
Debian based Linux distribution is a free distribution software and an operating system. It is composed of a open source and free source software. It is one of the most popular distributions.
A computer file name is a unique system of identifying the computer stored file in the file system. The names of the different file system have different formats or extensions in the file name and imposed different file restrictions.
In the context, the full path and the file name of a file that displays a time zone settings on a Debian Linux distribution is " ../etc/timezone".
Nadia has inserted an image into a Word document and now would like to resize the image to fit the document befter. What is the quickest way to do this? keyboard shortcut sizing handles context menu sizing dialog box
Answer:
To resize the document, Nadia needs to press
Command +>/ Ctrl+> to increase the size of the frame and its contents by 1%.
Or press Command +</ Ctrl+< to decrease the size of the frame and its contents by 1%
Storage.
• Mouse
• Laser Printer • Hard Disk
• Speaker • Joystick
Digital Video Camera
- CD-ROM
• Scanner
• Monitor
Microphone
Answer the following.
List the four basic hardware components of
computer.
What is an input device? Name some input devices an
mention what they are used for.
Megha Computer Science - 6
Answer:
Part A
1) Mouse
2) Monitor
3) Hard Disk
4) Joystick
Part B
i) An input device is used to provide input signal to the computer or other information technology system for processing
ii) scanners, joysticks, mouse, and keyboards
iii) a) A scanners is used to create digital image input
b) A joystick is mainly used in gaming
c) The (computer) mouse is moved on a flat surface to navigate the mouse pointer
d) A (computer) keyboard is used for data input into the
Explanation:
Part A
The list of the four basic hardware components of computer are;
1) Mouse
2) Monitor
3) Hard Disk
4) Joystick
Part B
i) An input device is an equipment with which computer control signal and data are entered into a computer or other forms of technology for processing information.
ii) Input devices includes, scanners, joysticks, mouse, and keyboards
iii) a) A scanners is used to create digital image input for the computing system
b) A joystick (mainly used in gaming) consists of stick with control buttons that pivots on an attached base whose movement and control button input are reported to the information technology processing system, such as a computer to which it is attached
c) The (computer) mouse is moved on a flat surface to navigate the mouse pointer displayed on a graphical user interface for controlling and operation of a computer
d) A (computer) keyboard is a primary computer input device that is very much similar to a typewriter keyboard in design and functioning
Data input to the computer are made by typing values using the keyboard
Type the correct answer in the box. Spell all words correctly.
Which spreadsheet program the BLANK option will allow Lily to arrange data in chronological order?
Lily needs to arrange data in a spreadsheet in reverse chronological order. The
option will allow Lily to perform this task.
Answer:
That would be the SORT option.
Explanation:
The sort option allows you to sort them in orders such as newest to oldest and oldest to newest.
Answer:SORT
Explanation:
state two types of files which can be accessed by online download servers
How would you delete a slide from your presentation after selecting it?
In a single paragraph, write about the development of HTML and its relevance to the growth of the Internet.
Explanation:
This chapter is a short history of HTML. Its aim is to give readers some idea of how the HTML we use today was developed from the prototype written by Tim Berners-Lee in 1992. The story is interesting - not least because HTML has been through an extremely bumpy ride on the road to standardization, with software engineers, academics and browser companies haggling about the language like so many Ministers of Parliament debating in the House of Commons.
1989: Tim Berners-Lee invents the Web with HTML as its publishing language
The World Wide Web began life in the place where you would least expect it: at CERN, the European Laboratory for Particle Physics in Geneva, Switzerland. CERN is a meeting place for physicists from all over the world, where highly abstract and conceptual thinkers engage in the contemplation of complex atomic phenomena that occur on a minuscule scale in time and space. This is a surprising place indeed for the beginnings of a technology which would, eventually, deliver everything from tourist information, online shopping and advertisements, financial data, weather forecasts and much more to your personal computer.
4. Why does Hancock believe that our communication online is more honest than we might
expect?
Answer:
The reason we are more honest online is simpler than we think, says Hancock. In the past, before there was modern technology or even written language, people could lie to each other easily. Once the words were said, they disappeared. ... Technology therefore might make us more honest than ever
Answer:
Hancock believes that communication online can be more honest because in the past, before modern technology or even written language, technology makes communications written conversation make you reliable if you can't/or don't delete or unsend the messages. That might make people more honest than ever.
What is unique about the date calculations from other formulas? Some do not require any arguments. It uses absolute numbers. It uses / for division. It uses parentheses for arguments.
Answer:
a. Some do not require any arguments.
Explanation:
Answer:
A) Some do not require any arguments.
Explanation:
on edge 2020
Select the correct answer.
Jeff has created a table to calculate the cost of raw materials that he purchases monthly. Cell A2 shows the fixed cost of the raw material (3). Column D lists the
quantity (number of units) that Jeff purchased each month. What formula can Jeff use in E2 to calculate the monthly cost of the raw material that he can copy to all
the rows below?
1 Monthly rate
2
3
4
5
6
7
Month
Jan
Feb
Mar
Apr
May
Jun
D
Number of units Cost
10
8
12
13
10
15
ОА.
=A2*D2
B.
=$A2 D2
ОС.
=$A$2*$D$2
D. =$A$2*D$2
E.
=A$2*D2
Answer:ell A2 shows the fixed cost of the raw material (3). Column D lists the quantity (number of units) that Jeff purchased each month. What formula ..
Explanation:
(6) A man buys some chocolates for Rs. 30.25, noodles for Rs. 65.25 and biscuits for Rs.
85.50. If he gives Rs. 200 to the shopkeeper, how much money will he get return back
19 Rs ( अनीस रुपए)
Explanation:
that is 200
why does elephant has thicker legs? Explain in terms of breaking stress?
Answer:
Since volume is proportional to area, volume is inversely proportional to pressure.
An elephant has a greater weight towards Earth's surface, so it has a larger legs of larger volume which exerts less pressure on Earth's surface in order to prevent it from immersing in soil, or soft land
Which of the following is a good way to keep your knowledge of Internet technology current? Select all that apply.
Find a mentor in the field.
Monitor technical website discussion boards.
Attend local career days.
Research organizations dedicated to advancing the Internet.
Answer:
Find a mentor in the field.
Monitor technical website discussion boards.
Attend local career days.
Research organizations dedicated to advancing the Internet.
What is it called when servers on the Internet supply applications as a service, rather than a product
Answer:
cloud computing
What was the job of the Committee of Correspondence? WILL GIVE BRANLEST AND 40 POINT
to tar and feather all British tax collectors
to communicate with the British Parliament
to contact each colony's legislature and pressure them to pay British taxes
to contact each colony's legislatures so they could join together in their opposition to the British
Answer:
to contact each colony's legislatures so they could join together in their opposition to the British
Explanation:
The committees of correspondence functioned mainly as a means of spreading news and information about the Patriot cause and mobilizing opposition to British policies in cities, towns and rural communities throughout the colonies.
Answer: to contact each colony's legislatures so they could join together in their opposition to the British
Explanation:
Leave a thanks and review if it helped, thanks?!
In his paper, Mario rephrases his description of food deserts. Read his description below. Food deserts are places that lack access to healthy, fresh food. He wants to use another word for "access” in his description. How can Mario complete his task without leaving the Word application? Use a browser to find a synonym of the word. Use the Tell me bar to find a synonym of the word. Use the Thesaurus feature to find a synonym of the word. Use the Smart Lookup feature to find a synonym for the word.
Answer:
C.
Explanation:
Answer:
C.
Explanation:
I just took it
TRUE OR FALES
1.Windows 98 is not a GUI-based operating system.
Answer:
TRUE
Explanation:
t is a graphical user interface (GUI) based operating system. Which makes our operation interactive and easy to use. Windows 98 is an improved version of Windows 95. Main feature in windows 98 is its 'Desktop'.
What is problem scoping
Answer:
the process that people use to figure out what problem they’re solving
Explanation: