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”,printf(“What this prints”)) };
What is the maximum length of command line arguments including space between adjacent arguments
void main(){ print(“%d”,scanf(“%s”)) };
void main() { int x=20,y=35; x= y++ + x++; y= ++y + ++x; printf(" %d %d" , x,y); }
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?
Of the following who is NOT the inventor of a programming language in current use?
Hungarian Notation is a variable-naming convention used by some programmers. How did it get its name?