1. Given a class called Employee and the following definitions statement. Void my function ( Employee eptr): Employee emp: Which of the following statement correctly calls the function passing in the address of the data array ? myFunction(emp; myFunction(&emp); myFunction(*emp); myFunction(**emp); 2. What is the output of the following code snippet? Int *p; Int*q; P= new int; *p =43; q = p; *q=52; P=new int; *p =78; Q= new int; *q =*p; Cout <<*p << <<*q<