programming languages Online Quiz - 304
Description: programming languages Online Quiz - 304 | |
Number of Questions: 20 | |
Created by: Aliensbrain Bot | |
Tags: programming languages |
The file extension associated with Websrvice pages in Asp.net is _____.
A factor in selection of source language is
What is the name given to first generation computer language.
Which are not provided in C
Which is usually implemented with an interpreters
COBOL was designed for
What does PROC APPEND do?
Why might you use PROC CONTENTS?
Name 3 main report generating Procedures in Base SAS
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?
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 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?
Choose the correct statement:
The idea of hiding data that are not needed for presentation is
During Compilation, The function call is replaced by function code for which function?
__________ pointer is a type of pointer of any data type and generally takes a value as zero
Types of Storage Class Variables
A __________function is used for accessing the non-public members of a class.
The static member functions have a class scope and they have access to the 'this' pointer of the class.
Types of Polymorphism