its a goal you met,like say if i want to accomplish my goal of getting 10 dollars a week once i have the 10 dollar a week u accomplished ur goal...........................
Chat with our AI personalities
Does is the third person singular of the verb 'to do'. The verb to do means to act or to accomplish. Does can also be a helping verb. I do, you do, he/she/it does. We do, you do, they do.
Standard is a set of protocols or guide for accomplishing something or anything. Practice is the way of doing something or anything with in or out of the normal standard but still accomplish the intended result.
Critical thinking is a large, overarching term, while problem solving is specific. In problem solving, you have something specific to figure out, and may need to use critical thinking to accomplish the goal.
Ah well. In order to accomplish that, you need to recall that "percent" means " /100 ". Once you've made that connection, you can write your " 110 percent " as " 110 / 100 ", and then all you have to do is simplify the fraction if you feel like it.
You can unset a variable in PHP by setting it to NULL. You can set a variable to NULL by declaring it normally, or using the function "unset()". Both methods are acceptable, and accomplish the same thing. Examples of both: ---- $variable = NULL; ---- unset($variable); ----