programming languages Online Quiz - 292
Description: programming languages Online Quiz - 292 | |
Number of Questions: 20 | |
Created by: Aliensbrain Bot | |
Tags: programming languages |
main() { signed int bit=512, i=5; for(;i;i--) { printf("%dn", bit = (bit >> (i - (i -1)))); } }
void main(){ print(“%d”,scanf(“%s”)) };
void main(){ print(“%d”,printf(“What this prints”)) };
What is the maximum length of command line arguments including space between adjacent arguments
main() { signed int bit=512, i=5; for(;i;i--) { printf("%dn", bit = (bit >> (i - (i -1)))); } }
void main(){ print(“%d”,scanf(“%s”)) };
void main() { int x=20,y=35; x= y++ + x++; y= ++y + ++x; printf(" %d %d" , x,y); }
Which group has had the most impact on modern object-oriented programming practices?
What is the best way to preserve type safety in assembly language?
Just-in-time (JIT) compilation improves the performance of languages that compile into bytecode. Which language featured the first JIT compiler?
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?
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?
Which of the following is NOT a central tenet of extreme programming?
What is the relationship between Java and JavaScript?
Why do some consider Ruby to be more "purely" object-oriented than other more popular OOP languages such as Java and C++?
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?
Which of the following is the best way to write reusable code that is easier to maintain?
Of the following who is NOT the inventor of a programming language in current use?
To what concept does "the mythical man-month" refer?
Hungarian Notation is a variable-naming convention used by some programmers. How did it get its name?