InterviewSolution
Saved Bookmarks
| 1. |
What Is The Difference Between ‘type’ And ‘like’? |
|
Answer» ‘Type’: You ASSIGN DATA type directly to the data object while declaring. ‘LIKE’: You assign the data type of another object to the declaring data object. ‘Type’ REFERS the existing data type while ‘Like’ refers to the existing data object. ‘Type’: You assign data type directly to the data object while declaring. ‘Like’: You assign the data type of another object to the declaring data object. ‘Type’ refers the existing data type while ‘Like’ refers to the existing data object. |
|