Answer: Information security
Explanation:
The information security is one of the system that keeps the data confidential, assure the integrity and also availability of the information or data.
This system is basically refers as the CIA triad in the information security system and the data risk management.
The main aim of the information security is that keeps the data protected from the unauthorized accessing and also controlling the access in the system.
Therefore, Information security is the correct answer.
Answer:
#code (count_seq.py)
def count_seq():
n='2'
while True:
yield int(n)
next_value=''
while len(n)>0:
first=n[0]
count=0
while len(n)>0 and n[0]==first:
count+=1
n=n[1:]
next_value+='{}{}'.format(count,first)
n=next_value
if __name__ == '__main__':
gen=count_seq()
for i in range(10):
print(next(gen))
Explanation:
- Start with number 2. Use string instead of integers for easy manipulation
.
- Loop indefinitely
.
- Yield the integer value of current n
.
- Loop until n is an empty string
.
- Loop as long as n is non empty and first digit of n is same as first
.
- Append count and first digit to next_value
.
Answer:
name is a reserved word in JS and cannot be used as an identifier
Explanation:
From the group of answer choices provided the only one that may be a problem would be using the word name as a parameter. Although name is not a reserved word per say in JS it is in HTML, and since JS targets HTML it could cause some errors. This however does not prevent this code from running correctly. JS does not require semicolons anymore, and the opening and closing braces for a body of code does not need to be on their own lines. Also, variable names are not Strings and do not need to be inside quotes, even for console.log()
Answer:
Total 13 poly packets are there
Explanation:
Total number of poly packets = 10
Number of poly packets given to esmeraldas father = 2
Number of poly packets left with his cat = 1
Total remaining poly packets = 10 + 2 + 1 = 10 + 3 = 13
1. Use many of the same skills and technologies as Web application developers to create applications for devices such as smartphones and tablets - Mobile Application Developers
2. Websites designed specifically for mobile device browsers - Web Architects
3. Applications created specifically for mobile operating systems, such as Google Android or Apple iOS - Mobile Apps
4. They consult with the management team and Website users to design and implement the plan for developing and maintaining the organization's Website - Interface Designer
5. use Web programming languages or products to develop Websites, generally for Web server applications - Web Application Developers
<u>Explanation:</u>
The definitions and its terms are self explanatory. A <em>mobile application developer</em> will develop applications for mobiles and other gadgets.
<em>Mobile Websites</em> can be accessed only from browsers of mobile.
<em>Android or iOS</em> are the operating system designed for Mobile.
Interface designers develop designs for websites.
<em>Web app developers</em> develop websites using web programming languages.