1
Answer

How the execution flow happen in Inheritance.

Vijay Tailor

Vijay Tailor

7y
234
1
Today i attend a interview , interviewer asked a question . I gave all possible answer but interviewer is not satisfied. So I though I put this question here... Suppose we have a base class and child class how the execution flow in back end and how calls happen. Class a { // No variable n methods inside base class } Class B : A { // No variable n methods inside Child class } Suppose if we run this code what will happen in terms of execution flow. Thanks in advance. Please suggest me idea about inheritance execution flow.
Answers (1)
0
Nazmul Badsha

Nazmul Badsha

NA 505 13.3k 7y
  1. SELECT Empid,Empname,Deptname  
  2. FROM Employee  
  3. INNER JOIN Department ON Department.Deptid = Employee.Deptid  
This is the best code.
0
Tapan Patel

Tapan Patel

NA 8.1k 101k 7y
  1. SELECT Empid,  
  2.             Empname,  
  3.             Deptname  
  4. FROM Employee   
  5. INNER JOIN Department ON Department.Deptid = Employee.Deptid