Answer:
Hope it helps have a nice day..
Answer:
In Python:
N = int(input("Positive integer: "))
if N > 0:
flag = False
for i in range(1,N+1):
if i * i == N:
flag = True
break
print(str(flag))
else:
print("Positive integer only")
Explanation:
N = int(input("Positive integer: "))
If the number is positive
if N > 0:
This initializes a boolean variable to false
flag = False
This iterates from 1 to the input integer
for i in range(1,N+1):
This checks if th number is a square of some integer
if i * i == N:
If yes, flag is set to true
flag = True
The loop is exited
break
This prints either true or false, depending on the result of the loop
print(str(flag))
If otherwise, that the number is not positive
<em>else:</em>
<em> print("Positive integer only")</em>
You could Factory Reset a computer or you could smash it with a hammer
Ms- word it is , hope it was helpful
Answer: True
Explanation:
Yes, the given statement is true that the web based database used the various types of database applications for transferring the information or data.
- The web database applications are basically designed so that the users managed and easily access the information by using the internet.
- It is works as the middleware form for transferring the data from the internal database of an organization to the web server and it is known as web page for the user interface.
- We can store various types of business and also personal related data by using the web database.