Description: programming languages Online Quiz - 304 | |
Number of Questions: 20 | |
Created by: Aliensbrain Bot | |
Tags: programming languages |
Types of Polymorphism
The static member functions have a class scope and they have access to the 'this' pointer of the class.
A __________function is used for accessing the non-public members of a class.
Types of Storage Class Variables
__________ pointer is a type of pointer of any data type and generally takes a value as zero
During Compilation, The function call is replaced by function code for which function?
The idea of hiding data that are not needed for presentation is
Choose the correct statement:
public static void main(String [] args) { int x = 5; boolean b1 = true; boolean b2 = false; if ((x == 4) && !b2 ) System.out.print("1"); System.out.print("2"); if ((b2 = true) && b1 ) System.out.print("3"); } } What is the result?
public static void main(String[] args) { String str = "null"; if (str == null) { System.out.println("null"); } else (str.length() == 0) { System.out.println("zero"); } else { System.out.println("some"); } } What is the result?
public class test { public static void main(String [] args) { int x = 5; test t = new test(); t.doStuff(x); System.out.print("main x = " + x); } void doStuff(int x) { System.out.print("doStuff x = " + x++); } } What is the result?
Name 3 main report generating Procedures in Base SAS
Why might you use PROC CONTENTS?
What does PROC APPEND do?
COBOL was designed for
Which is usually implemented with an interpreters
Which are not provided in C
What is the name given to first generation computer language.
A factor in selection of source language is
The file extension associated with Websrvice pages in Asp.net is _____.