Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
1answer
183 views

What class of language can Perl regular expressions be used against?

I know that some of the capabilities of the Perl regular expression engine are not regular. However, what class is it? It might be context-free, but CS theory was never my strongest subject.
4
votes
2answers
103 views

Which Law of Computer Science is: “Information cannot exist apart from its carrier”?

After reading the page "Laws of Computer Science and Programming" and not finding this law, can anyone tell me what this law is? The point of the law is that the carrier IS the information. In other ...
3
votes
7answers
426 views

What is missing for this P != NP proof?

I tried to recover a password. When thinking of this I recognized that the problem "password recovery" is a very nice example of a NP problem. If you know the password it's very easy to verify it in ...
1
vote
3answers
100 views

Online resources for Introduction to computer and computer sciences for absolute beginner

In our office, we have an office boy(completed high school(10+2 years)) with average academic record so far). He wants to learn programming. I have started coaching him in Computer Science basics ...
0
votes
2answers
42 views

How many lines of machine code are generated by one statement in programming language X?

Reading an article about Lost Programming Skills, the author brings up this chat: Me: How much horsepower do you need? SE: I don't know. Me: Let's see, how many lines of code in your main ...
0
votes
2answers
53 views

shortest way with more then 2 Points, but fix Order

at first, please excuse my bad knowledge in english. I've got the following Problem: I must find the shortest way between more then 2 Points in a fix order (e.g. A -> D -> F). I am familiar with the ...
0
votes
0answers
33 views

how to check if a set is decideable using CFG [closed]

Let S = {〈G,w〉 | G is a CFG that accepts string w┤}. Show that S is decidable.
0
votes
2answers
236 views

How to argue that if we could solve the halting problem, then we could solve busy beaver?

This is one of the tasks of my assignment. I have a Turing machine simulation which can simulate a busy beaver function. I have done some research about proving this problem, but still don't get it so ...
-1
votes
3answers
168 views

Big O estimation of Math.random()?

Is it possible to obtain a Big O estimate of Math.random()?