Individual or other words user and attackers
Jsjsjsoos I jdkkskso I iDisks I iiddikdk I ididkkd
Answer:
a[i] = a[len(a) - i - 1]
Explanation:
Based on the definition of corresponding elements above,
First element of a list and last element are corresponding :
Using this :
Given a list defined as 'a'
First element of list is at index 0
Last element of a list is at index ; len(a) - 1
For a list containing 10 elements:
Second element corresponds to second to the last element
Second element is at index 1;
Second to the Last element is at index 8
(since indexing starts from 0)
Second element = a[1]
Second to the last element = a[len(a) - i - 1]
Hence,
a[i] = a[len(a) - i - 1]
Answer: Password protected
Explanation: Package is the namespace which carries the set of all the related classes and related interfaces. Package class has the right to access the package members. If a package is built and is kept for the future use then it should be made secured so there can be no unauthorized access of the class that package contains,therefore it should be password protected. This will help the class and the members to be in security an can be accessed by authority in future.