Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

51
votes
9answers
19k views

Why does Java's hashCode() in String use 31 as a multiplier?

In Java, the hash code for a String object is computed as s[0]*31^(n-1) + s[1]*31^(n-2) + ... + s[n-1] using int arithmetic, where s[i] is the ith character of the string, n is the length of the ...
49
votes
24answers
3k views

Why is “null” present in C# and java?

We noticed that lots of bugs in our software developed in C# (or java) cause a NullReferenceException. Is there a reason why "null" has even been included in the language? After all, if there were ...
42
votes
9answers
4k views

How does delete[] “know” the size of the operand array?

Foo* set = new Foo[100]; // ... delete [] set;You don't pass the array's boundaries to delete[]. But where is that information stored? Is it standardised?
30
votes
14answers
11k views

How do malloc() and free() work?

I want to know how malloc and free work. int main() { unsigned char *p = (unsigned char*)malloc(4*sizeof(unsigned char)); memset(p,0,4); strcpy((char*)p,"abcdabcd"); // **deliberately ...
30
votes
13answers
2k views

Is the Microsoft.VisualBasic namespace “true .NET” code?

My dev team is getting ready to start a new project. The shop has been a "VB shop" since the days of VB3, but the prevailing opinion now is that we're a ".NET shop" and since C# was created ...
29
votes
11answers
715 views

How does it know where my value is in memory?

When I write a program and tell it int c=5, it puts the value 5 into a little bit of it's memory, but how does it remember which one? The only way I could think of would be to have another bit of ...
25
votes
11answers
20k views

Size of a byte in memory - Java

I have heard mixed opinions over the amount of memory that a byte takes up in a java program. I am aware you can store no more than +127 in a java byte, and the documentation says that a byte is only ...
25
votes
14answers
7k views

Is there any way to determine the size of a C++ array programmatically? And if not, why?

This question was inspired by a similar question: How does delete[] “know” the size of the operand array? My question is a little different: Is there any way to determine the size of a C++ array ...
21
votes
7answers
3k views

What's the algorithm behind sleep()?

Now there's something I always wondered: how is sleep() implemented ? If it is all about using an API from the OS, then how is the API made ? Does it all boil down to using special machine-code on ...
18
votes
8answers
3k views

Is there a good reason I see VARCHAR(255) used so often (as opposed to another length)?

In multiple courses, books, and jobs, I have seen text fields defined as VARCHAR(255) as kind of the default for "shortish" text. Is there any good reason that a length of 255 is chosen so often, ...
13
votes
11answers
2k views

C for loop implemented differently than other languages?

I read the following in a review of Knuth's "The Art of Computer Programming": "The very 'practicality' means that the would-be CS major has to learn Kernighan's mistakes in designing C, notably the ...
10
votes
10answers
1k views

Can every float be expressed exactly as a double?

Can every possible value of a float variable can be represented exactly in a double variable? In other words, for all possible values X will the following be successful: float f1 = X; double d = f1; ...
9
votes
6answers
1k views

How do code profilers work?

While I was working on an University project, I used a project-internal profiler made by an elder student, it was very basic but good enough since its task was to subtract times between two points of ...
9
votes
8answers
2k views

How many random elements before MD5 produces collisions?

I've got an image library on Amazon S3. For each image, I md5 the source URL on my server plus a timestamp to get a unique filename. Since S3 can't have subdirectories, I need to store all of these ...
8
votes
2answers
446 views

How Firebug works internally?

I have debugged through JavaScript using Firebug more than hundred times without worrying about whats happening there. I want to know how exactly a Firebug handles JavaScript/DOM debugging. Say I set ...
8
votes
3answers
749 views

How exactly is a PHP script executed?

I was just thinking to myself "How exactly is a PHP script executed?" I thought it was parsed first for syntax errors etc, and then interpreted and executed. However, I don't know why I believe that ...
7
votes
1answer
111 views

Verizon SongID - How is it programmed?

For anyone not familiar with Verizon's SongID program, it is a free application downloadable through Verizon's VCast network. It listens to a song for 10 seconds at any point during the song and then ...
7
votes
3answers
7k views

Why an abstract class implementing an interface can miss the declaration/implementation of one of the interface's methods?

A curious thing happens in Java when you use an abstract class to implement an interface: some of the interface's methods can be completely missing (i.e. neither an abstract declaration or an actual ...
7
votes
4answers
9k views

How to instantiate a Java array given an array type at runtime?

In the Java collections framework, the Collection interface declares the following method: T[] toArray(T[] a) "Returns an array containing all of the elements in this collection; the runtime type ...
6
votes
5answers
612 views

Getting confused in with == and = in “if” statement

I know that we cant use assignment operator in if statements in java as we use in any other few languages. that is int a; if(a = 1) { } will give a compilation error. ...
6
votes
5answers
372 views

How does Wikipedia's “What links here” work?

I recently used Wikipedia's function "What links here" (which is found under the "Toolbox" element in any entry's left menu) and it got me started wondering how this function actually works. I'm ...
6
votes
5answers
408 views

Why is this code with several “or” statements slightly faster than using a lookup table in Java?

While looking at a micro-optimization question that I asked yesterday (here), I found something strange: an or statement in Java is running slightly faster than looking up a boolean value in an array ...
6
votes
5answers
2k views

Why is SomeClass<? super T> not equivalent to SomeClass<T> in Java generic types?

I noticed the specificaition for Collections.sort: public static <T> void sort(List<T> list, Comparator<? super T> c) Why is the "? super" necessary here? If ClassB extends ...
5
votes
5answers
213 views

Where can I start looking to better understand how computers work?

I've been trying to figure out what computer field I want to go into later on in life. College is just around the corner for me and I've considered looking into Computer Engineering, Software ...
5
votes
2answers
212 views

How does PHP work - literature

I'm interested in literature (articles on internet, in magazines, books, podcasts - I don't really mind anything) that describes how PHP works internally, about its gotchas and perhaps some advanced ...
4
votes
3answers
713 views

How is mime type of an uploaded file determined by browser?

I have a web app where the user needs to upload a .zip file. On the server-side, I am checking the mime type of the uploaded file, to make sure it is application/x-zip-compressed or application/zip. ...
4
votes
6answers
1k views

How much memory does a thread consume when first created?

I understand that creating too many threads in an application isn't being what you might call a "good neighbour" to other running processes, since cpu and memory resources are consumed even if these ...
3
votes
4answers
120 views

How is the real-time billboard made at Apple?

Right now, Apple shows "The App Store is about to hit 10 billion downloads". The index page contains a kind of real-time billboard, displaying a constantly increasing number of downloads. They're ...
3
votes
1answer
151 views

How does this superb quine work?

Another SO question mentions a fantastic quine by Yusuke Endoh. A quine is a computer program which produces a copy of its own source code as its only output; this one does it with a twist. A ...
3
votes
3answers
285 views

What does this Perl code do?

In cPanel, they tell you to insert this code into the beginning of Perl files. I'm not sure what it does. I've tried code with and without this in the beginning of the file and it seems to all work ...
3
votes
5answers
146 views

How are self-extracting executables made?

There are many programs out there that will allow you to pack a few files together and generate an executable that has the necessary code to extract them. Somehow, those files are residing inside the ...
3
votes
2answers
2k views

How does virtualization software work?

I wonder how virtualization software such as VirtualBox or VMWare Workstation works? How can they create a virtual environment that is taken as a separate computer by operating systems? I'm almost ...
3
votes
1answer
215 views

Process Explorer - How does the dragabble crosshair work?

There is a feature in sysinternal's process explorer that allows a crosshair to be dragged from the application to a control in any other application you are running and highlights said control. Does ...
2
votes
2answers
44 views

How does php script executes

I have two similar questions How does php script executes. For example I have a file that is being called with certain parameters. Let's say the script first start processing the request, then ...
2
votes
1answer
176 views

Why does ReSharper's “Rename” only sometimes display a prompt?

When I rename a variable using ReSharper 4.5 (VS2008), the rename is performed inline (I specify the new variable name in the editor itself) or via a prompt (a popup window where I specify the new ...
2
votes
1answer
178 views

How do GUI builders work?

I'm curious, how does a GUI builder/designer work? My guess ( for Java ), is that it actually creates a JFrame and overrides the events in some way. However, this is only a guess. Can you offer some ...
1
vote
0answers
46 views

How the Visualisation of Remote Desktop Works

In Remote Desktop sessions we see a live visualisation of the desktop we are connected to, how is this usually achieved. Is it done by sending a constant stream of snapshot images to the client ...
1
vote
3answers
78 views

CSS - How it works

i want to know how CSS works.. how browsers execute whatever is designed in CSS... lets say when a page is loaded and it has multiple CSS file attached to it, and mouse goes over some anchor and ...
1
vote
2answers
238 views

C++ metaprogramming question

I have the following problem: Suppose I have some basic counter class Counter. And suppose we also have some sets of classes, that can be counted. Let's name some of them class CountedA and class ...
1
vote
3answers
211 views

How do Download Managers download huge files on HTTP without multiple requests?

I was downloading a 200MB file yesterday with FlashGet in the statistics it showed that it was using the HTTP1.1 protocol. I was under the impression that HTTP is a request-response protocol and most ...
1
vote
3answers
820 views

how does silverlight deep zoom work behind the scenes

hey guys i have done few sample projects (just for fun) using silverlight deep zoom. its really cool and exciting stuff. but i was curious to know about what goes on behind the scenes to achieve this ...
0
votes
2answers
32 views

Surely schedulers aren't this harmful? Don't we have better APIs?

I'm wondering what APIs are available to avoid the following problem. Casting my mind back to Operating System lectures on my old CS course, the topic was multiprocess scheduling and concurrent I/O. ...
0
votes
2answers
76 views

Where does this method's arguments get passed from?

Simple question: where do the tableView and section arguments get passed from? The actual code in the method return [self.listData count]; doesn't even mention them. Here's my interface code: ...
0
votes
3answers
114 views

PHP: include\require behavior

whenever we include\require some file using php like require ('links.php'); OR include ('links.php'); which one of the following two scenarios happen     EXAMPLE lets say ...
0
votes
1answer
98 views

How does Google Drawing work?

just wondering what is behind the major functionalities used in Google Drawing. Does it use jQuery?
0
votes
1answer
30 views

Question : how does this parents control apps do web filtering and site blocking

Hello i just wander how does the parents control sites do problematically the web filtering and the url blocking in there applications ? the question is because i need to build something similar
0
votes
3answers
265 views

How to explain the answer to this java enum question?

Given public enum Title { MR("Mr."), MRS("Mrs."), MS("Ms."); private final String title; private Title(String t) { title = t; } public String format(String last, String first) { return ...
0
votes
5answers
185 views

How the Swing Hello World application works?

I am trying to figure out how the Swing based Hello World application works. This is the code I have: import java.awt.*; import javax.swing.*; public class HelloWorldSwing extends JFrame { ...
0
votes
2answers
165 views

Null pointer exception error

When I run my program I get this error nullPointerException: null. import model.*; import java.awt.*; import java.awt.event.*; import java.text.*; import javax.swing.*; public class ButtonPanel ...
0
votes
4answers
93 views

is this a valid xpath and if so what does it mean?

/html/body/input[@id='query' and @name='query' and @value='Search Text']

1 2