programming languages Online Quiz - 293
Description: programming languages Online Quiz - 293 | |
Number of Questions: 20 | |
Created by: Aliensbrain Bot | |
Tags: programming languages |
APL is a legacy programming language that quickly fell out of favor due to its unusual characteristics. What was it about APL that made it so strange by today's standards?
Who is generally credited with being the first computer programmer?
Which of the following is a true statement about the C programming language?
What is a singleton?
What makes parallel computing one of the more difficult disciplines for programmers to master?
Which of the following languages does NOT require every line of code to be terminated with a semicolon?
Which of the following is NOT a characteristic of functional programming languages?
What is a Turing machine?
In object-oriented programming why might you want to "serialize" an object?
Which of the following is NOT strictly speaking a programming language?
What is the first step to designing a recursive algorithm?
C# is a language platform that is very similar to Java in many respects. If a programmer develops software in C# using Microsoft Visual Studio what is an equivalent tool for the Java platform?
Which of the following programming languages is a dialect of ECMAScript?
Which of the following programming languages is a dialect of ECMAScript?
What is the first step to designing a recursive algorithm?
What is a main disadvantage of using statically linked libraries to build software executables?
The first-ever optimizing compiler was written to support which high-level programming language?
void main() { int x=20,y=35; x= y++ + x++; y= ++y + ++x; printf(" %d %d" , x,y); }
void main(){ print(“%d”,printf(“What this prints”)) };