题目
SENG1050 (T3 2025 PSB) Practice Quiz Week 6
简答题
Consider the following PHP fragment: $int1 = 5; $int2 = $int1++; $int3 = $int1++ + $int2++; What will the variable $int1 contain after each of these statements has executed?
查看解析
标准答案
Please login to view
思路分析
We start with: $int1 = 5; $int2 is assigned from $int1++ and then $int3 from the sum of two post-increment expressions.
First statement: $int2 = $int1++;
- The post-increment returns the original value of $int1 (5) and then increments $int1 by 1.
- After this line, $int1 becomes 6, and $int2 is 5.
Second statement: $int3 = $int1++ + $int2++;
- Evaluation happens lef......Login to view full explanation登录即可查看完整答案
我们收录了全球超50000道考试原题与详细解析,现在登录,立即获得答案。
类似问题
In a consumer society, many adults channel creativity into buying things
Economic stress and unpredictable times have resulted in a booming industry for self-help products
People born without creativity never can develop it
A product has a selling price of $20, a contribution margin ratio of 40% and fixed cost of $120,000. To make a profit of $30,000. The number of units that must be sold is: Type the number without $ and a comma. Eg: 20000
更多留学生实用工具
希望你的学习变得更简单
加入我们,立即解锁 海量真题 与 独家解析,让复习快人一步!