Post

@Python_Dv Answer: C) 16
n * n means 4 × 4, which evaluates to 16.
English

@Python_Dv Answer= 16
U don't need an explanation right? If you do, the lemme know, I'll break it down. Trust me 🫵🫶🫂
English

@Python_Dv Is it possible, the asterisk represents any kind of addition, subtraction, multiplication and division, so it is: 4+4=8, 4-4=0, 4×4=16, 4÷4=1, so the correct answer is B, C !!! 😜😜😜
English

@Python_Dv Oh , so now python is assuming their learners dumb, its 16 as a fact even for grade 1 guy
English

@Python_Dv The variable n is assigned the value 4.
The expression n * n calculates 4 times 4, which equals 16.
The print() function outputs the result.
Output:16
English
































