Answer:
E. The data is not under the owner’s direct control.
Explanation:
Disadvantages of cloud storage:
- Need for internet connection: We need to accept the fact that the internet connection, whether by broadband, 3G, 4G or 5G. Opening and retrieving data in the cloud becomes impossible without the internet.
- Mistrust: Security breaches are very rare, especially if your content is stored on large enterprise servers that invest heavily in security.
- Internet laws are unclear - and are different in each country: Because servers are scattered around the world, cybercrime is a doubt: in case of a leak, the hacker should be tried according to the virtual laws of the country in which is the server or country of the user who uploaded these files?
- Price: Yes, there are free options, but companies and business owners who create and access large volumes of files may need paid plans to meet their needs.
Answer:
The program in Python is as follows:
apples = int(input("Apples: "))
people = int(input("People: "))
apples%=people
print("Remaining: ",apples)
Explanation:
This gets the number of apples
apples = int(input("Apples: "))
This gets the number of people to share the apple
people = int(input("People: "))
This calculates the remaining apple after sharing the apple evenly
apples%=people
This prints the calculated remainder
print("Remaining: ",apples)
Answer:
The Update statement in the DML is used for changing existing data in a table.
Explanation:
Their are following Sql statement in the DML.
Insert
This SQL statement is used for inserting data into the table.
select
This SQL statement is used for retrieving data from database
update
This SQL statement is used for updating data in a table.
delete
This SQL statement is used for delete data from database .
The "UPDATE" SQL statement in DML is used for Modify the data in the existing table .
Following are the syntax of Update SQL query
Update tablename
set column1=value1,column2=value2............column N=valueN
Where condition;
Example :Suppose we have student table and (rollno,name,age and add) are the field for that table we have to change the address of rollno 105
Then we use update query like that
UPDATE STUDENT
SET add='kalam nagar'
where rollno=105;