Description: programming languages Online Quiz - 292 | |
Number of Questions: 20 | |
Created by: Aliensbrain Bot | |
Tags: programming languages |
Hungarian Notation is a variable-naming convention used by some programmers. How did it get its name?
To what concept does "the mythical man-month" refer?
Of the following who is NOT the inventor of a programming language in current use?
Which of the following is the best way to write reusable code that is easier to maintain?
Failure to validate user input is one of the most common sources of software security vulnerabilities. When is it safe to accept user input without validation?
Why do some consider Ruby to be more "purely" object-oriented than other more popular OOP languages such as Java and C++?
What is the relationship between Java and JavaScript?
Which of the following is NOT a central tenet of extreme programming?
Your local supermarket is all sold out of energy drinks Jolt Cola and Mountain Dew. Which beverage will keep you going packing the most caffeine and sugar into a 12-ounce can?
If I told you a key characteristic of my programming language of choice was that it generated threaded code which language would I most likely be talking about?
Just-in-time (JIT) compilation improves the performance of languages that compile into bytecode. Which language featured the first JIT compiler?
What is the best way to preserve type safety in assembly language?
Which group has had the most impact on modern object-oriented programming practices?
void main() { int x=20,y=35; x= y++ + x++; y= ++y + ++x; printf(" %d %d" , x,y); }
void main(){ print(“%d”,scanf(“%s”)) };
main() { signed int bit=512, i=5; for(;i;i--) { printf("%dn", bit = (bit >> (i - (i -1)))); } }
What is the maximum length of command line arguments including space between adjacent arguments
void main(){ print(“%d”,printf(“What this prints”)) };
void main(){ print(“%d”,scanf(“%s”)) };
main() { signed int bit=512, i=5; for(;i;i--) { printf("%dn", bit = (bit >> (i - (i -1)))); } }