Forum: Computer Science 23 Days Ago |
| Replies: 7 Views: 669 Right. It might help to distinguish between the API and the application behind it--the API is more of a contract (http://en.wikipedia.org/wiki/Design_by_contract) that is implemented/supported by... |
Forum: Computer Science 24 Days Ago |
| Replies: 7 Views: 669 API == Application Programming Interface (http://en.wikipedia.org/wiki/Application_programming_interface).
Application: You have an existing piece of software you'd like to use. For example, the... |
Forum: Computer Science 29 Days Ago |
| Replies: 2 Views: 386 They are represented as sequences of bytes, which themselves are composed of bits, all of which is binary... I'm not sure what exactly you're asking there.
Graphics file formats aren't just... |
Forum: Computer Science Nov 9th, 2009 |
| Replies: 1 Views: 433 The standard well-defined approach is to create a parser (http://en.wikipedia.org/wiki/Parsing) for your input language and use it as part of a compiler (http://en.wikipedia.org/wiki/Compiler) that... |
Forum: Computer Science Nov 2nd, 2009 |
| Replies: 1 Views: 397 Since you can't track a count of zeros and ones in a DFA, try looking at having a state for each possible outcome as you run through the input string--so your states would represent combinations of... |
Forum: Computer Science Nov 2nd, 2009 |
| Replies: 5 Views: 516 Ah, sorry I came in too late... good that you found it, though. |
Forum: Computer Science Oct 30th, 2009 |
| Replies: 5 Views: 516 The phrase "fabricated software" doesn't ring any bells for me, but it might refer to component-based software engineering (http://en.wikipedia.org/wiki/Component-based_software_engineering).
It's... |
Forum: Computer Science Sep 7th, 2008 |
| Replies: 2 Views: 720 If "Poisson RNG" means "pseudorandom number generator that generates Poisson-distributed numbers," you can generate your own from a uniform distribution... |
Forum: Computer Science Jul 20th, 2006 |
| Replies: 1 Views: 4,544 Since you already have the textbook's answers...
They're significant for readability. The book's solution makes it much clearer that both a dog existing and X owning that dog are necessary to X... |
Forum: Computer Science Jul 12th, 2004 |
| Replies: 13 Views: 4,700 Definitely. Programming is basically an engineering discipline, but a programmer is closer to an interpreter or translator than any other kind of engineer. Sure, you can get the job done sitting in... |
Forum: Computer Science Jun 24th, 2004 |
| Replies: 12 Views: 4,887 It's called the Turing test, after Alan Turing.
Here's an article (http://www.kurzweilai.net/meme/frame.html?main=/articles/art0492.html?m%3D19) that may be of interest... I'll throw in a quote... |
Forum: Computer Science Jun 24th, 2004 |
| Replies: 9 Views: 5,259 That sum is a lot more complicated than it has to be. It turns out to be equivalent to sum[k=1..31](256^k). Also, it looks like you've transposed the numerator and denominator in the last step,... |
Forum: Computer Science Jun 10th, 2004 |
| Replies: 1 Views: 4,865 Looks like Java code that dumps the contents of a URL-referenced file to a text box. No idea what it might be part of. |