Answer:
1. Hard copy
Explanation:
It´s on an app so its a hard copy.
The answer would be next page, continuous, even page, and odd page.
String temp;
for i = 0 to Address.length - 6 do
begin
temp = copy(address, i, i + 6) //returns a substring of a string beginning at
//i and ending at i + 6
if temp = 'Avenue' then
return i;
end;