About 174,000 results
Open links in new tab
  1. java - What is a JavaBean exactly? - Stack Overflow

    A JavaBean is just a standard. It is a regular Java class, except it follows certain conventions: All properties are private (use getters/setters) A public no-argument constructor Implements …

  2. language agnostic - What is a callback function? - Stack Overflow

    May 5, 2009 · Developers are often confused by what a callback is because of the name of the damned thing. A callback function is a function which is: accessible by another function, and is invoked after …

  3. sql - What is a stored procedure? - Stack Overflow

    What is a "stored procedure" and how do they work? What is the make-up of a stored procedure (things each must have to be a stored procedure)?

  4. What is JSON and what is it used for? - Stack Overflow

    I've looked on Wikipedia, googled it, and read the official documentation, but I still haven't got to the point where I really understand what JSON is, and why I'd use it. I have been building

  5. language agnostic - What is a lambda (function)? - Stack Overflow

    Aug 19, 2008 · For a person without a comp-sci background, what is a lambda in the world of Computer Science?

  6. integer - What exactly is a float? - Stack Overflow

    May 9, 2012 · Yeah, the noob question of the century... But in all seriousness, I actually have no idea what a float value actually is... And more importantly, the difference between a float and an integer. T...

  7. glossary - What is a UUID? - Stack Overflow

    Nov 15, 2008 · UUID stands for Universally Unique IDentifier. It's a 128-bit value used for a unique identification in software development. UUID is the same as GUID (Microsoft) and is part of the …

  8. What is the difference between "IS -A" relationship and "HAS-A ...

    An IS-A relationship is inheritance. The classes which inherit are known as sub classes or child classes. On the other hand, HAS-A relationship is composition. In OOP, IS-A relationship is completely …

  9. multithreading - What is a deadlock? - Stack Overflow

    Aug 29, 2008 · When writing multi-threaded applications, one of the most common problems experienced are deadlocks. My questions to the community are: What is a deadlock? How do you …

  10. multithreading - What is a semaphore? - Stack Overflow

    Aug 29, 2008 · A semaphore is a programming concept that is frequently used to solve multi-threading problems. My question to the community: What is a semaphore and how do you use it?