Answer:
Explanation:
An answer on Brainly can only be marked as Brainliest if the individual who answered the question is not yourself, and if one week has passed since the answer was posted. Once the week has passed and the answer is still there (has not been removed) then a Brainliest button should appear that will allow you to mark the answer as Brainliest. Simply click the button and the answer will be marked as Brainliest.
Answer:
1. Time management
2. troubleshooting
Explanation:
In Software development job, Tester is responsible for Quality of development and deployment. The responsibilities of Tester are following:
- Analyze feasibility and validity of software.
- Execute all level of testing
- Detect and track inconsistencies and defects in software
- Provision of solution in timely manners
- Provide support and documentation
<u>Definitions</u>
<u />
<u>Time Management</u>
A process of managing and controlling the time to spend on specific activities. Good time management skills help to provide solution in shorter period of time.
<u>Troubleshooting</u>
A form of problem solving by tracing faults in logical and correct manners is called Troubleshooting.
<em>So, This is the reason why I choose, time management and trouble shooting for Tester Job. Because He/She should be able to fix the problem in short period of time.</em>
Your question is poorly formatted
<em>#include <stdio.h>
</em>
<em>int main(void) {
</em>
<em>int i, t[4];
</em>
<em>t[3] = 0;
</em>
<em>for (i = 1; i >= 0; i--)
</em>
<em>t[i] = t[3] * i;
</em>
<em>printf("%d", +t[1]);
</em>
<em>return 0;
</em>
<em>}</em>
Answer:
It outputs 0
Explanation:
I'll start my explanation from the third line
This line declares an integer variable i and an array of 4 elements of type integer
<em>int i, t[4];
</em>
<em />
This line initialize the 3rd index element to 0
<em>t[3] = 0;
</em>
<em />
The next two lines is an iteration;
The first line of the iteration iterates the value of i in descending order from 1 to 0
<em>for (i = 1; i >= 0; i--)
</em>
<em />
This line of the iteration calculates t[1] as t[3] * i and t[0] as t[3] * i; Since t[3] is 0; both t[1] and t[0] will be 0
<em>t[i] = t[3] * i;
</em>
<em />
This line prints t[1] which is 0
<em>printf("%d", +t[1]);
</em>