Tag: programming languages
Questions Related to programming languages
-
extraction operator
-
scope resolution operator
-
insertion operator
-
All the above
-
virtual constructor
-
virtual destructor
-
both A and B
-
None of the above
-
Simple constructor
-
parameterized constructor
-
copy constructor
-
none of the above
-
call by reference
-
call by value
-
call by address
-
All the above
-
The output could be 8-1 7-2 8-2 7-1
-
The output could be 6-1 6-2 5-1 5-2
-
The output could be 6-1 5-2 6-2 5-1
-
The output could be 6-1 6-2 5-1 7-1
-
Direction d = NORTH;
-
Nav.Direction d = NORTH;
-
Direction d = Direction.NORTH;
-
Nav.Direction d = Nav.Direction.NORTH;
-
class Man extends Dog { }
-
class Man implements Dog { }
-
class Man { private BestFriend dog; }
-
class Man { private Dog bestFriend; }
-
class Man { private Dog; }
-
any class
-
only the Target class
-
any class in the test package
-
any class that extends Target