It all depends on what you're doing online.
Answer:
b) objects are resuable
Explanation:
In OOP there's code reuse where a method or any other body of code is defined once and called or reused severally.
Answer:
DUAL - HOMED FIREWALL
Explanation:
Dual-home firewall refer to an Ethernet device that has more than one network interface that sits between an untrusted network and trusted network in other to provide secure access.
In dua homed firewall one connection is an internal network and the second connection is to the Internet and works as firewall provided in which there is no direct IP traffic between the Internet and the internal network. In such a case, all Internet applications are run only on the dual-homed host.
Among the following option B. Ignoring new idea will not be considered in improved performance planning.
<h3>What is buisiness performance planning?</h3>
Performance planning is the term used to describe a <em>company's systematic process for determining and preparing an individual's or organization's goals</em>, as well as the most effective means of achieving them. Both <em>the company and the employee</em> participate in the planning process through a formal plan called the development plan.
A company must successfully utilize new ideas in order to <em>advance its operations, introduce fresh goods and services to the market, boost productivity, and, most significantly, raise profits.</em>
<em />
So, new ideas must not be ignored .
Learn more about buisiness performance planning here brainly.com/question/25922327
#SPJ10
Answer:
Answered below.
Explanation:
//Program in Python
login_name = "Admin"
password = "PASS"
display = " "
user_login_name = input ("Enter username: ")
user_password = input("Enter your Password: ")
if user_login_name == login_name and user_password == password:
display = "Correct Login"
elif user_login_name != login_name:
display = "wrong username"
elif user_password != password:
display = "wrong password"
print(display)