A square root computing turing machine [closed] - finite-automata

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 11 years ago.
I think i am close to this answer but still to confirm can we create a turing machine(At least in Principle) which can work on real number computation and give exact results?**For example finding square root of an integer.(whose output would be a real number)
My logic that we can't develop such a machine is that the real numbers are uncountably infinite and for uncountably infinite languages we can't create a turing machine.

I think the Turing machine can be made if you put some restriction on Precision (i.e. answer up to 4 or 5 decimal place). Then it is possible. Otherwise I feel it can't be made.

Related

Elliptic curve example [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I would like to use ECC to sign messages. I trying searching in google, but I was not able to find a commented code to understand how it works.
Do you know some documentation that explains not only the mathematical basis, but also how to implement it?
See Johannes Bauer's ECC Tutorial, based on Python and Sage. A small Python ECC library was published by bellbind.

Dynamic code generation and execution without writing code to database [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
Is it possible to generate ABAP code and execute it in memory without writing code to DB?
Yes. Use Google. Use Google. Use Google. Use Google. Use Google. (I have to write at least 30 characters although I really don't have anything else to say besides that wanting to generate code dynamically is usually a sign you're on the wrong track.)

How to scan for networks in the area [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 11 years ago.
I have a question; I want to be able to make an iPhone iOS 5 app which can scan for networks and afterwords and prefereable filter one out [on SSID, for example], and show this in a list
I am looking for a class than can handle this but Im finding a lot of classes that handles services in a network.
I'd recommend that you check out the WWDC videos which are free from Apple about Bonjour. Alternatively, just check out using Bonjour. It's probably the best internet network interface known to man.

How do I test software in a really good way? [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 11 years ago.
It's hard. I don't know where to start, do I use JUnit or a library for PHP?
The problem is I keep testing things and it works out really bad. Shall I give you a code example?
Software testing is only as good as the known defects that you discover. I recommend unit, functional, and regression testing while relying on a continuous integration tool. This will allow changes to be propagated and tested as soon as possible.

How to get the code from a `.dll` in C++ [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I have a .dll and I need some code from it. How do I get the code from a .dll?
If by code you mean the textual instructions that were used to generate the machine code in the library, the best you can really do at this point is assembly language. Nearly any debugger will let you view the assembly.
If you meant the original high level language, your out of luck.
You can't. You can open it up in a hex editor, but there is no way to get the original source code from compiled output. This is the basis for the entire closed-source (proprietary) software industry.