Tagged Questions

5
votes
2answers
67 views

Rules Engine vs Expert System

What is the difference between a rules engine and an expert system? Example1: Let's say that I have a program that determines the expiration date of a new driver's license. It ta …
0
votes
1answer
72 views

How would you interpret this Compiler/Grammar homework question?

I'm working on my compiler homework and I have the following question: Consider the following grammar: lexp -> number : (op lexp-seq) op -> + | - | * lexp-seq -> lexp-seq …
1
vote
2answers
80 views

Which CS curriculum to take?

I'm currently planning to do a transfer right now and my area of interest is Software Development. I've been thinking a lot about these two curriculum and I want to ask advice on …
7
votes
16answers
615 views

Your favorite poorly-named computer science concepts [closed]

Subjective question inspired by this thread... I believe that the term "random salt value" is one of the most poorly-named concepts in computer science. There is really nothing ra …
3
votes
6answers
248 views

Finding the highest 2 numbers- computer science

I'm trying to figure out an algorithm to find the highest 2 numbers in a list of numbers. The highest number can be found in n-1 stages, perhaps by doing the fist step of a bubbl …
11
votes
4answers
351 views

Why is (a | b ) equivalent to a - (a & b) + b?

I was looking for a way to do a BITOR() with an Oracle database and came across a suggestion to just use BITAND() instead, replacing BITOR(a,b) with a + b - BITAND(a,b). I tested …
3
votes
13answers
240 views

Computer Science Degrees? [closed]

Hello again. This is just a question about my future career. As of current i am a second year student in Computing. Im enjoying the course very much and think its very well balan …
3
votes
6answers
143 views

looking for scientific evidence of the benefits of using a DSL

Greg Wilson's talk "bits of evidence" ( http://www.slideshare.net/gvwilson/bits-of-evidence-2338367 ) discusses the lack of evidence behind the following claims that Martin Fowler …
15
votes
23answers
2k views

O(log N) == O(1) - Why not?

Whenever I consider algorithms/data structures I tend to replace the log(N) parts by constants. Oh, I know log(N) diverges - but does it matter in real world applications? log( …
38
votes
72answers
4k views

What programming languages do the top tier Universities teach?

I'm constantly being inundated with articles and people talking about how most of today's Universities are nothing more than Java vocational schools churning out mediocre programme …
45
votes
78answers
6k views

What was your biggest CS eye-opener?

What was the single thing you learned (either in classes or during work) that felt most like scales falling off your eyes? For me, it was a lecture about microcode, because that f …
6
votes
5answers
260 views

Hilbert System - Automate Proof

I'm trying to prove the statement ~(a->~b) => a in a Hilbert style system. Unfortunately it seems like it is impossible to come up with a general algorithm to find a proof, but I' …
2
votes
2answers
79 views

How can we convince the administration of our university that computer science is important enough to retain it as a discipline?

The university where I teach is currently restructuring in a major way. Alas, we have been told that we have one week to respond to a current plan which includes discontinuing com …
12
votes
8answers
125 views

How to compute the absolute minimum amount of changes to convert one sortorder into another?

Goal How to encode the data that describes how to re-order a static list from a one order to another order using the minimum amount of data possible? I have a feeling there is an …
5
votes
5answers
208 views

How to keep up to date on latest computer science?

I was re-reading some of my Steve McConnell books and this quote got me thinking 'scientists build in order to learn, engineers learn in order to build'. On the vein of 'learning i …

1 2 3 4 5 24 next
15 30 50 per page