Quantcast
Channel: Programming Question Archives -
Browsing all 10 articles
Browse latest View live

Why HTML is important to learn programming?

HTML is the language of the Internet. Without it, the digital world lacks existence.  Whether you are planning to take up a career in web development or planning to launch your own website, knowledge...

View Article


What are Functions in program?

Functions are the block of statements encapsulated together and are designed to achieve a specific outcome.   The values that are passed are called the parameters or arguments and the function may or...

View Article

What are the major types of functions in program?

A Function contains a set block of statements that are written outside of the main program and are executed to perform a desired set of operations.   This function may or may not take data from the...

View Article

Image may be NSFW.
Clik here to view.

What are different types of operators in Programming?

Operators are the set of symbols that are used in a programming language to perform mathematical and logical operations.   There are mainly five types of operators present in any language. Here we’ll...

View Article

What is statement in Programming?

Statement in a programming means any line of code that instructs the compiler to perform a specific task.  A computer program is a set of such statements. There can be multiple types of statements in a...

View Article


Describe the basic syntax of python

Unlike C/C++ python is an interpreter-based high-level programming language.   Python is widely popular because:   It is open source and free to use as well as carries a GPL-compatible license....

View Article

Difference between AND, OR Operators

Amongst all operators, AND and OR are two widely used logical operators in any programming language.   AND, OR operators fall under logical operators set and are known as Logical AND denoted by...

View Article

What is a comment in programming?

Comments in programming means adding human readable descriptions in the source code explaining what the code intends to perform.  Commenting is very essential part of every computer program as it helps...

View Article


What are strings in python?

Strings in Python is an immutable collection of characters. It’s like an array of characters that cannot be modified in any case but can only be accessed.  Here the Unicode characters can be written in...

View Article


What are arrays in python? 

In general terms, Python array is a collection of elements having same datatype or typecodes. It can hold more than one value with the same name.  For example: If you want to marks of three students we...

View Article
Browsing all 10 articles
Browse latest View live