Looking for LENGUAJE DE PROGRAMACION test answers and solutions? Browse our comprehensive collection of verified answers for LENGUAJE DE PROGRAMACION at online.upr.edu.
Get instant access to accurate answers and detailed explanations for your course questions. Our community-driven platform helps students succeed!
What is the result of the following lines of code in Python
def my_function(x):
x=[4,5]
def main():
x=[1,2,3]
my_function(x)
print(x)
main()
Which of the following languages is NOT strong typed
What is the result of executing the following lines of code in C
int main()
{
char *q = NULL;
*q="Hello World";
printf(*q);
return 0;
}
Consider the following two lines of code in Python
w1 = "hello"
w2 = "hello"
What happens if we try to access memory allocation of both variables?
Which is the output of the following operation in Scheme:
( cons \,\, '(1 \,\,2) \,\, '(3 \,\,4) )
Which is the output of the following operation in Scheme
(map + ' (1 2) '( 3 4) ' (5 6) )