Sorry! Posting Assignment is allowed only for commercial accounts.
def addItem(listParam): listParam += [1] mylist = [1, 2, 3, 4]addItem(mylist)print(len(mylist))
print("op"+"code")
functioncomparison() { int number=10; if(number==="10") returntrue; else returnfalse; }
public class MyClass{ }
What will be the output of this python code for X in range (6): Print(X)
int main() { int a[ ]={1,2,3,4,5,6,7,8,9}; int *ptr= &a[4]; while(ptr!=a){ printf("%d\n",*ptr); ptr--; } return 0; }