Trusting, loyal, and a hard worker. All indristies want employees who won't backstab, works hard, and is loyal to the company
Source from extension , report layout extension for animation are,and graphics interchange format.
<h3>What is the report ?</h3>
It is layout which includes and primarily based totally animations. The complete abbreviation of is Small Web Format.
I assume the solution A.graphics interchange format. is the maximum accurate answer, it could be established from analyzing books and records on internet.
Read more about the animation :
brainly.com/question/18260878
#SPJ4
Answer and Explanation:
Static variables are variables that still maintain their values outside the score which they are declared. They are declared with the static keyword
Example:
<em>static int score = 30;</em>
Local variables are variables whose scope are restricted to a block. Their values are restricted to the block which they are declared in.
Example:
<em>void abd(){</em>
<em>int score;</em>
<em>}</em>
<em>score is a local variable to abcd() function</em>