| Computer Programs
|
Is it worth getting into Arduino electronics or should i focus on more complex things?
I want to learn electronics so i can create devices that can for example open doors with a button, practical devices that involve gears, but also i want to know if the things i learn using Arduino could be applied to fixing/creating electronics like putting together a computer, programming, and mixing electronics together. Like a cell phone and a computer monitor.
If not what should i try to learn instead?
I would really like some feedback, positive or negative. Thanks.
Get the answers
|
|
All the latest computer programmes makes a big mess of your computer?
virus scanners, registry scanners and anything you try to install makes the computer go bananas
why is that?
Get the answers
|
|
Recurrence relation of a program?
I have this recursive-computer-program function:
void f(int n) {
if(n<=1) return; //quit
f(n/2);
System.out.println("still going...");
f(n/2);
f(n/2);
}
I need to work of the recurrence of how many time the lines is printed by the program with input n
Currently I got, 3T(n/2) + 1 or the other answer 3T(n/2) + 3 but both are wrong in think because when i solve the recurrence i get 3^((log n)-1) + 3((logn) -1)
Get the answers
|
Next page: Registry Cleaner
Bookmark/Share This Page:
Computer Programs News
|
|