A tag is a keyword or label that categorizes your question with other, similar questions. Using the right tags makes it easier for others to find and answer your question.
Type to find tags: |
java× 6660
Java (not to be confused with JavaScript) is a class-based, object-oriented, strongly typed, reflective language and run-time environment (JRE). Java programs are compiled to bytecode and run in a vir…
|
c#× 5861
a multi-paradigm, managed, garbage-collected, object-oriented programming language created by Microsoft in conjunction with the .NET platform.
|
python× 5419
an interpreted, general-purpose high-level programming language whose design philosophy emphasizes code readability.
|
javascript× 5231
ECMAScript (commonly referred to as JavaScript) is primarily used for scripting web-pages but also has several embedded forms and stand-alone interpreters / JIT engines. Use this tag for questions reg…
|
c++× 4073
a statically typed, free-form, multi-paradigm, compiled, general-purpose programming language.
|
performance× 3413
a subset of Optimization: performance is the goal when you want the execution time of your program or routine to be optimal.
|
beginner× 3275
to your question to indicate that you are new to the language of your code. This will often be taken into consideration by reviewers when assessing your code.
|
php× 2941
a widely-used, general-purpose scripting language that is especially suited for web development.
|
algorithm× 2343
a sequence of well-defined steps that define an abstract solution to a problem. Use this tag when your issue is related to algorithm design.
|
jquery× 1964
A JavaScript Library that simplifies HTML document traversing, event handling, animating, and Ajax interactions for rapid web development.
|
c× 1799
a general-purpose computer programming language used for operating systems, games, and other high performance work and is clearly distinct from C++. It was developed in 1972 by Dennis Ritchie for…
|
oop× 1695
a programming paradigm using "objects": data structures consisting of data fields and methods together with their interactions.
|
strings× 1566
a sequence of characters. It is commonly used to represent text or a sequence of bytes. Use this tag along with the appropriate programming language being used.
|
programming-challenge× 1286
off-site challenges meant to offer programmers educational experiences while testing their abilities.
|
ruby× 1173
a multi-platform, open-source, dynamic, object-oriented, interpreted language created by Yukihiro Matsumoto (Matz) in 1993.
|
optimization× 1134
in the process of being eliminated. If your question is just about performance, use the [performance] tag.
|
c++11× 1089
the successor to the C++03 standard, adding various core language changes and fixes, and an improved and expanded standard library.
|
html× 1056
the standard content markup language of the web. It is an open standard developed and maintained by W3C (World Wide Web Consortium).
|
game× 1054
For questions requesting reviews of game development code.
|
python-3.x× 1044
the latest version of the Python programming language and was formally released on December 3rd, 2008.
|
array× 986
an ordered data structure consisting of a collection of elements (values or variables), each identified by one (single dimensional array, or vector) or multiple indexes.
|
sql× 914
a language for interacting with relational databases. Read the tag wiki's guidelines for requesting SQL reviews: 1) Provide context, 2) Include the schema, 3) If asking ab…
|
multithreading× 870
how work performed by a computer can be divided into multiple concurrent streams of execution (generally referred to as threads).
|
design-patterns× 866
a general reusable solution to a commonly occurring problem in software design.
|
python-2.7× 759
if you are specifically using Python 2.7. Such questions should be tagged with [python] as well.
|
parsing× 735
the process of analysing a string of symbols, either in natural language or in computer languages, conforming to the rules of a formal grammar.
|
.net× 711
a software framework supporting a multi-language paradigm and supporting language interoperability. .NET applications are executed in a virtual machine (CLR) which provides a few important ser…
|
mysql× 708
an open-source, relational database management system. If your PHP code uses MySQLi, use the MySQLi tag instead.
|
haskell× 659
a purely functional programming language, featuring static typing, lazy evaluation, and monadic effects. The primary implementation is GHC, a high-performance compiler with a runtime suppor…
|
datetime× 607
DateTime objects in many programming languages describe an instant in time, expressed as a date and time of day. Use on questions about reviewing code involving date/time logic.
|
sorting× 584
the process of applying some order to a collection of items.
|
css× 580
a language used to control the presentation of HTML and XML documents including colors, layout, and fonts.
|
unit-testing× 567
a method by which individual units of source code are tested to determine if they are fit for use.
|
recursion× 534
a method of problem solving where the solution to a problem depends on solutions to smaller instances of the same problem.
|
android× 530
Google's software stack for mobile devices. For non-developer questions, see http://android.stackexchange.com
|
tree× 507
a graph in which there is exactly one path between any two nodes. It is often used as a hierarchical data structure.
|