Computer science (CS) is the science behind programming. It is the study of the theoretical foundations of information and computation and of practical techniques for their implementation and application in computer systems.

learn more… | top users | synonyms (1)

-2
votes
0answers
22 views

Keno applet GUI java code [closed]

Hey can anybody explain this code(section by section preferred) and correct if there is anything wrong? Thanks a lot for looking at the code. I am a beginner in java code, how can I improve my logic ...
0
votes
0answers
4 views

BBj grid tutorial problems

Side note: I couldn't find tags for BASIS or the BBj language, so I didn't know what to tag. Hopefully someone can help with that. Trying to learn BBj using the Grid Tutorial located here. ...
-4
votes
0answers
21 views

BufferedReader, read file and assigning to textfields [closed]

im having an issue trying to get this loop to iterate correctly, my program keeps crashing giving and ArrayIdexOutOfBounds Exection: 9. What i have is 9 textfields stored in an array that are ...
1
vote
6answers
67 views

Object Reference passing in Java. Pass by reference working differently in different case?

While playing in Java. I saw different behaviour if an object is modified and given a value and different value if it is assigned a new object. Here is code that I made to show the result. public ...
1
vote
2answers
42 views

What is the benefit of minimizing a finite automata?

Minimizing a discrete finite automata is a standard problem in computer science. What are the benefits of minimizing a finite automata? Is it just an academic problem?
2
votes
3answers
50 views

Inheritance Use? General Programming

I'm a beginner programmer ( Currently using Java ) and I'm practicing classes, objects, and inheritance/Polymorphism. I'm confused on the whole idea of what is useful when it comes to Polymorphism. ...
0
votes
0answers
19 views

Best algorithm for rough set based attribute reduction? [closed]

Which is the best algorithm for rough set based attribute reduction? I tried lot. But couldn't find. Help me.
-1
votes
2answers
43 views

Java Requesting Double

If in my program im using scanner.NextDouble() and the user enters something that is not a double ie a char of any kind, how can i re-promt them to enter a valid double? I tried throwing an exception ...
-4
votes
1answer
47 views

longest common subsequence with linear memory usage [closed]

I'm trying to find an algorithm which uses linear space of memory for: Given two strings x and y over an arbitrary alphabet, determine their longest common sub sequence.
3
votes
2answers
59 views

An unparenthesized arithmetic expression

An arithmetic expression can have many possible values Can someone help me?
0
votes
0answers
14 views

Amdahl's law — how does the book get $8000/131.58% = $38.00?

Did a simple Amdahl's law equation and received the same answer(s) as the book... Fraction of work: 60% CPU, 40% disk. SCPU = 1/((1-f)+(f/k)) = 1/((1-0.60)+(0.60/1.4)) = 120.69% SDISK= ...
0
votes
1answer
20 views

Row / column vs linear indexing speed (spatial locality)

Related question: This one I am using a spatial grid which can potentially get big (10^6 nodes) or even bigger. I will regularly have to perform displacement operations (like a particle from a node ...
-3
votes
0answers
73 views

Using java write a program to check if a number is a Palindrome or not [closed]

How to write a java program on Palindromes without using if statements, loops or Strings. Instead use Boolean and modulus. You may assume the user enters a positive integer that is at most 4 digits ...
2
votes
1answer
36 views

Machine code to execution, what is going on?

I have been learning computer programming over the years and a layer of abstraction is clouding what I understand. Say I compiled some source code and I have the executable machine code. Once the ...
2
votes
5answers
151 views

Is number comparison faster than string comparison?

I heard that hashing (ie converting a string or object to a number) is used for strings and such because it is easier to compare numbers than strings. If true, what is the reason for this ?
-4
votes
1answer
65 views

C++ modular programming [closed]

Define a function flight_type that reads an input from the user that represents a flight category. The user should enter 1: for a less than a 4-hour flight, or 2: for a longer than 4- hour flight. ...
-1
votes
1answer
52 views

Ways to continue Artificial Intelligence systems [closed]

As a project this summer I'm trying to build an Artificial Intelligence system out of java. I've started and networked it to a web-server (php + mysql; It uses $_GET, to process inputs and return ...
1
vote
1answer
38 views

Finding 2's complement of negative no

We assume that 4bit 2's complement system is used to represent both positive and negative numbers Suppose we have to find 2's complement of no. 3 We can subtract this no. with 2^4 ...
13
votes
3answers
243 views
+100

Is there a black box method to detect if a sorting algorithm is stable?

In JavaScript (somewhat applicable elsewhere), where you don't know what target implementation your code is running on, is there a way to feature detect if the underlying sorting algorithm (of ...
0
votes
0answers
13 views

what happens if all acknowledgement is lost in Go back N protocol

In Go back n protocol what happens if all the acknowledgement from the receiver ,but data frames are successfully arrived at the receiver and the receiver window has moved but the sender window is not ...
-6
votes
2answers
41 views

Answers to interactive Python-Think Like a COmputer scientists? [closed]

Im a begginer in Python and I want to learn more by practicing the exercises There are lots of exercises in Python but when I'm stuck on a exercise I dont know who to turn to when I get lost and ...
-1
votes
1answer
54 views

Factors that influence the design of programming languages syntax and Semantics? [closed]

over the years primitive programming language developed from completely irreprehensible machine language into modern high level language , along this line of evolution there exist a lot of programming ...
0
votes
1answer
15 views

Error while running Snort intrusion detection system

I'm trying to run Snort on my PC ,, windows 7,I get this error every time I run it on the command prompt ,, any Ideas about this error ?? ERROR: c:\Snort\etc\snort.conf(511) => Unable to open ...
0
votes
0answers
61 views

Hit and miss ration in chache and average time calculation

I'm trying to solve a objective type question , came In examination. I actually don't know the right answer, and don't know how to get it , need your help. Thank you . Question : In a certain system ...
4
votes
1answer
159 views

Rewriting trees

I have a data structure that represents a type signature, this data structure is a tree exemplified in the first picture as the red one. I would like to get the black one and so far I've only got the ...
0
votes
1answer
32 views

Sudoku Grid Tester - list index out of range

As part of a computer science assignment I was required to test whether a Sudoku grid is valid or invalid. I have debugged the program a few times, and inserted the values of the second iteration ...
0
votes
2answers
49 views

Sources for learning Computer Networks [closed]

I've been recommended Computer Networks, a top-down approach by James Kurose and Keith Ross. Related to that I've heard good and bad critics, I would like ask you what's your opinion. I mean, I expect ...
0
votes
1answer
25 views

Allocated memory growth on web servers

I am trying to create a web application where the memory allocated can at times grow exponentially and would like to estimate how much maximum memory can be allocated by an application on a web ...
0
votes
0answers
31 views

How do I compile pipes in Windows?

I am using MinGW as my compiler and I do not know how to get pipes to work on it. I have tried the function pipe() and fork() but neither of them seem to be working. Does anybody know how to create ...
-1
votes
1answer
71 views

Array implemetnation of stack [closed]

I wrote this program and it supposed to test for the correct use of the three grouping symbols "(",")";"[","]"; and "{","}". It is using the array implementation of the stacks and supposed to evaluate ...
3
votes
1answer
52 views

Regular Expression for a infinite language

I'm just kind of confused about regular expressions. Can there be a regular expression that recognizes an infinite language or do all regular expressions recognize finite languages?
1
vote
2answers
69 views

What's the difference between a boolean literal and a boolean value?

I can't seem to find a clear explanation as to what the difference is between these two. I'd also like to point out that I don't really understand the difference between literals and values either. ...
-7
votes
1answer
66 views

Asymptotic Estimate for integer division [closed]

k = n; //integer division while(k > 1) { std::cout << k; k=k/2; } I need to find out the asymptotic estimate as a function of n.
0
votes
1answer
23 views

Implementing Amdahl's Law

I am working on a homework assignment. I seem to be having difficulties applying Amdahl's Law. I feel as if I am working the problem out correct. Here is the question I am working on. Suppose the ...
-1
votes
1answer
27 views

Books for virtualization - technical explanations needed

I want to learn virtualization basics inside out. All the books in top results of amazon are too superficial and are only meant for managers, ie people who only need to have a vague idea of what it is ...
0
votes
2answers
100 views

Deterministic Finite Automata pattern

I'm trying to solve this problem using Deterministic Finite Automata : inputs: {a,b} conditions: a. must have exactly 2 a b. have more than 2 b so a correct input should be like this abbba ...
-1
votes
0answers
36 views

Is there a imull Y86 equivalent?

imull $2, %eax, %eax I am confused as how to I would convert this to a Y86 equivalent. To my understanding imull in IA32 multiplies the value at the address computed from %eax + %eax? If so, the ...
0
votes
2answers
71 views

Rock, paper, scissors game. Writting a print statement that works

Here is my code: from random import* from myro import* from math import* def computerChoice(): computer = randint(0,2) if (computer == 0): choice = "rock" elif(computer == 1): ...
3
votes
2answers
321 views

Cache hit and miss calculation in c#

This is a c++ code snippet used to read traces of address of main memory for cache memory simulation: char hex[20]; ifstream infile; infile.open(filename,ios::in); if(!infile) { ...
0
votes
0answers
45 views

proving that 0^(n)1^(n^2) is not context free language [closed]

The question is in the title? I'm trying to prove it using pumping lemma but I don't know how to deal with the case that vxy is composed with 0/1? Thanks in advance for your help :)
0
votes
1answer
31 views

Cards and JButtons

I am trying to write a code to make a card turn every time I press it. Is the problem in createGUI in JCardDemo applet? How to correct it then? here's my code.thx JCardbutton class import ...
0
votes
1answer
63 views

How To Solve Recurrence Relation with a quadratic term

I'm trying to solve this recurrence relation. Here's what I've attempted so far, but I think I'm wrong. I would really appreciate some guidance. This is the recurrence relation I am trying to solve:- ...
-2
votes
0answers
29 views

A weird issue with computer screen [closed]

I don't know if it is at all related to programming but the problem is some links on my web site don't work at all on some computers while work fine on others. I have never seen or heard anything like ...
1
vote
3answers
31 views

What is the Big O Notation of a nested loop where the inner loop is ran a fixed number of times regardless of N?

function DoStuff(someNumber) { for(var i = 1; i <= someNumber; i++) { // some arbitrary logic for(var a = 0; a <= 3; a++) { // This loop gets run 4 times regardless of i ...
0
votes
0answers
42 views

trouble with 4 bit 2's complement comparator?

I'm having trouble creating a 4 bit 2's complement comparator. Can anyone help or give me a boolean expression if possible? There should be 2 inputs and 3 outputs which are <, > or =. Should output ...
2
votes
4answers
120 views

Recursive Fibonacci Sequence print out the list

I have the follow code for a recursive Fibonacci Sequence if (term < 2){ System.out.print("1 "); return 1; } int results = fibonacci(term - 1) + fibonacci(term - ...
0
votes
1answer
35 views

Polynomial time user pairing algorithm

i have a problem . Consider users with different weights which depends on present channel .i.e. if the channel is good weights are high. I had to pair the users in such a way that total weight of the ...
-4
votes
1answer
33 views

Can Someone review my Google script because I dont know what to do [closed]

I am working on a project and I would like a little help with the script portion of it. In Google script I am unable to save the code for some reason because there is a error. The project is here: ...
0
votes
2answers
49 views

What prevents a race condition when checking a semaphore value?

I'm studying multithreading and trying to understand the concept of semaphores and mutual exclusion. Most of the examples I find online use some sort of library (e.g. pthread) to implement the ...
-1
votes
5answers
104 views

Strange multiplication error

Why would something simple like this: System.out.println("test problem: " + 194*194*194*409); output something like this: test problem: -1308701240

1 2 3 4 5 26