1) Solution for the given question are as follows - declare cid number := 51; cname varchar2(50); begin loop select country_id, country_name into cid,cname from countries where country_id = cid; dbms_output.put_line('CountryId:'||cid||'CountryName:'||cname); cid := cid + 1; if cid > 56 then exit; end if; end loop; end;  2)  2.) In the code below, three new l ... See the full answer