programming languages Online Quiz - 55
Description: programming languages Online Quiz - 55 | |
Number of Questions: 20 | |
Created by: Aliensbrain Bot | |
Tags: programming languages |
How can pointers be used in C#
Which of the Statements is true
What does 'new' keyword do when used as a modifier for a method (inheritance)?
Which of the following exists in C++ ?
What will be the value of variable 'z' after execution of following code? int z; for(z=0;z<50;z++) {}
class Nav{ 11. public enum Direction { NORTH, SOUTH, EAST, WEST } 12. } 13. public class Sprite{ 14. // insert code here 15. } Which code, inserted at line 14, allows the Sprite class to compile?
Which Man class properly represents the relationship "Man has a best friend who is a Dog"?
Given: 1. package test; 2. 3. class Target { 4. public String name = "hello"; 5. } What can directly access and change the value of the variable name?
A team of programmers is reviewing a proposed API for a new utility class. After some discussion, they realize that they can reduce the number of methods in the API without losing any functionality. If they implement the new design, which two OO principles will they be promoting?