<span>An URL, or Uniform Resource Locator search involves trying to find a website by directly typing in said site's web address, rather than going through an alternative channel such as an internet search engine. After typing the desired destination address into the search bar, the final step is of course simply pressing search.</span>
Explanation:
<html>
<title>first term 9/<title>
<head>SUNGHAVA SHIKSHA NIKETANA</head>
<body>
<h1>maths formula</h1>
<h6>a2-b2=(a+b)(A-B)</h6>
<h1>list of exams<\h1>
<h6>1.computer,2.english,3science</h6>
</body>
</html>
Answer:
The features that required to protect the privacy should be:
- Protection of User name and Password
- Protection of Finger print and other bio metric information if collected from user.
- Protection of Personnel Information such as contact information, Identity information if collected.
- Protection of data shared such as pictures and videos.
Explanation:
Privacy protection is required to different websites that are involved in collection of different information from users such as user name, password, contact information, account information and messengers. These websites could be website of some bank, online mailing platforms, online shopping platform and social media platforms. These all are used to share and gather our personnel information for different purposes. To ensure the protection of user data they signed a document with users at the time of making account.
The above mentioned are the features that should be included in privacy protection of the website. As all mentioned features are personnel for every user and should be protected from hackers.
Answer:
Soft Reset
Explanation:
A Soft Reset is a type of reset in which a gadget such as smartphones, PC, or other related gadgets undergo to refresh or reset the device or makes certain applications work or function well without user data, settings and applications.
Hence, a SOFT RESET occurs when you reset a mobile device but retain your installed applications and personal settings
Answer:
mystr = input("Enter a string ")
length = len(mystr)
while length<10:
mystr = input("Enter a string ")
length = len(mystr)
if(length>=10):
break
if len(mystr)%2==0:
print(mystr.lower())
else:
print(mystr.upper())
Explanation:
The variable mystr is used to save user's input which is received with the input function
A second variable length is used to save the length of the input string Using a while statement the user is continually prompted to enter a string while length is less than 10.
If length is greater or equal to 10. We check for even or odd using the modulo (%) operator.
We use lower() and upper() to change the case of the string