Tagged Questions
The fundamentals tag has no wiki summary.
247
votes
26answers
30k views
Questions every good .NET developer should be able to answer? [closed]
My company is about to hire .NET developers. We work on a variety of .NET platforms: ASP.NET, Compact Framework, Windowsforms, Web Services. I'd like to compile a list/catalog of good questions, a ...
181
votes
17answers
140k views
What is the best way to check for an empty string in JavaScript?
I saw this thread, but I didn't see a JavaScript specific example. Is there a simple string.Empty in JavaScript, or is it just checking for "" ?
178
votes
72answers
11k views
What are the best programming articles? [closed]
Part of being a good software developer is keeping current with what people are saying in the community. There are many good articles out there on the Internet about the wide subject of computer ...
124
votes
17answers
96k views
.NET String to byte Array C#
How do I convert a string to a byte array in .NET (C#)?
Update: Also please explain why encoding should be taken into consideration. Can't I simply get what bytes the string has been stored in? Why ...
55
votes
17answers
24k views
What is the difference between a method and a function
I am a long-time Applescript user and new shell scripter who wants to learn a more general scripting language like Javascript or Python for performance reasons.
I am having trouble getting my head ...
54
votes
26answers
3k views
What should programmers practice every day?
Musicians practice scales, arpeggios, etc. every day before they begin playing "real" music. The top sports players spend time every day practicing fundamentals like dribbling before playing the ...
52
votes
10answers
8k views
What is the Liskov Substitution Principle?
I have heard that the Liskov Substitution Principle (LSP) is a fundamental principle of object oriented design. What is it and what are some examples of its use?
48
votes
9answers
12k views
C# keyword usage virtual+override vs. new
What is the difference between declaring a method in a base type "virtual" and then overriding it in a child type using the "override" keyword as opposed to simply using the "new" keyword when ...
42
votes
9answers
1k views
What is the better approach to convert primitive data type into String
I can convert an integer into string using
String s = "" + 4; // correct, but poor style
or
String u = Integer.toString(4); // this is good
I can convert a double into string using
String s = "" + ...
42
votes
10answers
9k views
StringBuilder and StringBuffer in Java
What is the main difference between StringBuffer and StringBuilder? Is there any performance issues when deciding on any one of these?
38
votes
12answers
58k views
How do I copy an object in Java?
Consider the below code:
DummyBean dum = new DummyBean();
dum.setDummy("foo");
System.out.println(dum.getDummy()); // prints 'foo'
DummyBean dumtwo = dum;
System.out.println(dumtwo.getDummy()); // ...
33
votes
13answers
6k views
What is the fastest way to learn LaTeX basics?
I am completely new to LaTeX. I know, it is not very complicated. But there are always some basics that one need to be taught before going into the autonomous exploration stage.
Currently, I have ...
31
votes
29answers
2k views
Explaining to my boss what can and can't be done with a computer
My boss and his boss have both been coming to me regularly over the past few weeks with feature suggestions. The majority of these are very impractical, and I tell them (politely) that they are ...
26
votes
15answers
2k views
Method Overloading. Can you overuse it?
What's better practice when defining several methods that return the same shape of data with different filters? Explicit method names or overloaded methods?
For example. If I have some Products and ...
21
votes
5answers
3k views
References Needed for Implementing an Interpreter in C/C++
I find myself attached to a project to integerate an interpreter into an existing application. The language to be interpreted is a derivative of Lisp, with application-specific builtins. Individual ...
19
votes
11answers
2k views
Learning Algorithms and Data Structures Fundamentals
Can you recommend me a book or (better!) a site with many hard problems and exercises about data structures?
I'm already answering project Euler questions, but these questions are about interesting, ...
19
votes
8answers
2k views
Questions every good Delphi developer should be able to answer?
Following the spirit of these questions:
How to Recruit Great Developers?
Questions every good .NET developer should be able to answer?
...it would be interesting to know recommendations or ...
18
votes
13answers
4k views
What are the advantages of using an ORM?
As a web developer looking to move from hand-coded PHP sites to framework-based sites, I have seen a lot of discussion about the advantages of one ORM over another. It seems to be useful for projects ...
17
votes
13answers
3k views
Why do I see a double variable initialized to some value like 21.4 as 21.399999618530273?
double r = 11.631;
double theta = 21.4;
In the debugger, these are shown as 11.631000000000000 and 21.399999618530273.
How can I avoid this?
14
votes
6answers
3k views
What is the meaning of prepended double colon “::” to class name?
I found this line of a code in a class which I have to modify:
::Configuration * tmpCo = m_configurationDB;//pointer to current db
and I don't know what exactly means the double colon prepended to ...
14
votes
5answers
4k views
What is the meaning of “$” sign in javascript
In the following JavaScript code there is a dollar sign $. What does it mean?
$(window).bind('load', function() {
$('img.protect').protectImage();
});
13
votes
10answers
853 views
How can I learn to program without understanding programming?
I have learned programming by both at recognized school and self-studying. If there's a sample, I can develop similar thing easily. But I don't understand any single purpose there. For example, I ...
10
votes
4answers
300 views
Which is more fundamental: Python functions or Python object-methods?
I am trying to get a conceptual understanding of the nature of Python functions and methods. I get that functions are actually objects, with a method that is called when the function is executed. But ...
8
votes
11answers
2k views
Why are structs stored on the stack while classes get stored on the heap(.NET)?
I know that one of the differences between classes and structs is that struct instances get stored on stack and class instances(objects) are stored on the heap.
Since classes and structs are very ...
8
votes
10answers
615 views
Help For The Copy & Paste Generation Of Coders
I myself am one of these types of coders, who never learned coding in a formal setting, but am instead, self-taught by the use of copy and paste scripts, and pre-authored works available through GPL ...
8
votes
17answers
2k views
Where to start (self-)learning C, or should I learn I learn a different language?
Lately, I discover more and more that it's good to have extensive knowledge of programming fundamentals. Sadly, I am (one of the many) self-taught PHP developers and have no regrets choosing that ...
7
votes
5answers
394 views
What is the difference between Thread.start() and Thread.run()?
Why do we call the start() method, which in turn calls the run() method?
Can't we directly make a call to run()?
Please give an example where there is a difference.
6
votes
1answer
795 views
Setting smaller buffer size for sys.stdin?
I'm running memcached with the following bash command pattern:
memcached -vv 2>&1 | tee memkeywatch2010098.log 2>&1 | ~/bin/memtracer.py | tee memkeywatchCounts20100908.log
to try and ...
6
votes
4answers
204 views
Unit Testing— fundamental goal?
Me and my co-workers had a bit of a disagreement last night about unit testing in our PHP/MySQL application. Half of us argued that when unit testing a function within a class, you should mock ...
6
votes
5answers
5k views
Compare Two .NET Array objects
I am trying to compare two .NET arrays. Here is an obvious implementation for comparing arrays of bytes:
bool AreEqual(byte[] a, byte[] b){
if(a.Length != b.Length)
return false;
...
5
votes
2answers
149 views
How is null implemented in Java?
I know that null is not a data type.
But null can be only assigned for any type of Object and String.
Example:
Object o = null; // it tells that null is an object
String b = null; // it tells that ...
5
votes
5answers
1k views
ArrayList : How does the size increase?
I have a basic question on Java Array List.
When a Array List is declared and initialized using default constructor, memory space for 10 elements will be created.
Now, When I add 11th element, what ...
5
votes
3answers
168 views
What should a PHP/MySQL web developer know about servers?
I develop websites using PHP and MySQL. What resources would a seasoned web developer recommend that would cover server-specific information relevant to the job of a developer.
If it helps, I work ...
5
votes
3answers
161 views
How are databases efficient?
If databases can support up to millions of records, how is all of this data organized such that queries can be executed in a reasonable amount of time?
5
votes
3answers
378 views
How .NET differentiates reference vs primitive and value types
.NET we have primitive datatypes like int and value types like struct.
And also we have reference types. All of them seem to be derived from object class.
How .NET determine primitive, value type ...
5
votes
2answers
858 views
“Delphi Fundamentals” in Delphi 2009
Has anybody used/converted "Delphi Fundamentals" in Delphi 2009? - http://fundementals.sourceforge.net/
I'm using Dictionaries (cArrays.pas,cDictionaries.pas,cStrings.pas,cTypes.pas) in my project ...
4
votes
4answers
213 views
Mapping hash map key/value pairs to named constructor arguments in Scala
Is it possible to map the key value pairs of a Map to a Scala constructor with named parameters?
That is, given
class Person(val firstname: String, val lastname: String) {
...
}
... how can ...
4
votes
2answers
152 views
Learning networking fundamentals
Not having a CS degree has left large holes in my programming related knowledge.
In particular I'd really like to learn some of the computer networking stuff I would have got in a good CS degree.
The ...
4
votes
7answers
1k views
Why can't create object of an abstract class?
Here is a scenario in my mind and I have googled, Binged it a lot but got the answer like
"Abstract class has not implemented method so, we cant create the object"
"The word 'Abstract' instruct the ...
4
votes
2answers
196 views
Are there any programming textbooks directly based on David Parnas' concepts?
Some great books (like Object-Oriented Analysis and Design with Applications) cite Parnas' papers, some (like Implementation Patterns) mention them in the bibliography. I know modern OO-ness was much ...
4
votes
17answers
701 views
Does any programmer have to know C? Yes, why? No, why?
since I was at the first year of my University I always envied my fellows (mainly coming from a tech-oriented professional school) for knowing C. I came from a natural-sciences-oriented lyceum and ...
4
votes
4answers
2k views
Is args[0] guaranteed to be the path of execution?
This is a fundamental question, but an important one none the less...
When starting a C++ program whose main method has the following common signature:
int main(int argc, char* args[]) {
...
3
votes
1answer
79 views
Java fundamental - a little confusion on return type and return statement in methods
My understanding is that in Java if a method declare a return type, compilation fails if we don't put a return statement in the method. But the following code compiles successfully.
public int ...
3
votes
3answers
634 views
Read a Ruby string one character at a time (for word wrapping)
I know this question is a fundamental one. I am able to take user input for a string and for an integer using:
str = gets()
num = gets().to_i
But I want to read from the String(say which is in my ...
3
votes
5answers
158 views
What makes a problem more fundamental than another?
Is there any formal definition for what makes a problem more fundamental than another? Otherwise, what would be an acceptable informal definition?
An example of a problem that is more fundamental ...
3
votes
1answer
322 views
Purpose of an 'Identity Function'?
I came across this subject when I was reading through PrototypeJS's docs: its Identity Function. I did some further searching&reading on it and I think I understand its mathematical basis (e.g. ...
3
votes
5answers
176 views
Teaching: Field, Class & Package Relationships
In general I think I can convey most programming related concepts quite well.
Yet, I still find it hard to summarise the relationship between Fields, Classes and Packages.
How do You summarise ...
2
votes
3answers
29 views
Fundamental principle about data transfer on the internet
Let's assume I open my PC browser in a LAN at my home and type http://foo.com, the browser or another running service find the foo's IP address and send it through ISP to the foo's server.
Now the ...
2
votes
2answers
40 views
Java Generics beginner - Compiler warning on type safe declaration and instantiation
The compiler throws in a warning if i declare and instantiate a new type safe collection like below
List<String> list = new ArrayList(); // compiler warning
List<String> anotherList = new ...
2
votes
5answers
59 views
comparing strings within a jQuery .each loop
I'm trying to add a class to a list item, based on the text content of the item - it's a workaround to highlight items in a dynamically generated menu, but the class gets applied to all the list ...