Find the total inductance L T in the network in Fig. P6.69. All inductors are in millihenrys. LT 12 4 9 6 2 1 2 3 Figure P6.69
EECS - DAY 1 Vocab Algorithm : set of steps to solve a problem ● Different ones vary in efficiency and speed ● TEST YOUR ALGORITHMS ○ Step by step by step ○ Write one thing, then press 1 Pseudocode : resembling programming language Algorithm expressed in your own words Loop : do something repeatedly Condition : do one thing in a certain situation Source Code: Algorithm expressed in a programming language Notes about main XCODE Source code > compiler> object code Every c++ has a “main” function Where it all starts (void)= nothing , not the same as 0 A parameter OS= operating system Using Return return= done with the function, go back to where you came from Return value When 0 is returned to the OS from main, it means “all good” t