Variables in Python with Examples

Variables in Python are declared using some set of rules as given below When you declare a variable in python then it must start with a letter or underscore character. You can not start with numbers or digit while declaring python variables. The variables consist of alphabets and numbers i.e. alphanumeric characters and underscore such … Read more

Do While Loop in C with example

A do-while loop in C is also used to execute and repeat a block of statements depending on a certain condition. It has the following form do{ <statement Block>}while(<condition>); where the <condition> is the relational or logical expression that will have the value true or false. When the above statement is executed, the computer will … Read more

While Loop in C with Example

A while loop in C is used to execute and repeat a block of statements based on a certain condition. Also Read, C Program To Find Factorial of a Number with Example Syntex:-while(){ <statement Block>} while is the relational or logical expression that will have the value of true or false. When this statement is … Read more

For Loop Statement in C With Example

For loop statement in C is used to execute and repeat a block of statements based on a certain condition. It has the following form: Syntax:- for(<initial value>; <condition>; <increment>){ <statement block>} whereas the <initial value> is the kind of assignment expression that initializes the value of a variable.<condition> is a relational or logical expression … Read more

Create Captcha Code in HTML and Javascript

Hi friends, in this tutorial, you will learn how to create captcha code in HTML and Javascript. There are various ways to generate captchas such as Google ReCaptcha and other captchas etc. Also read, Google Maps Add Marker Using Maps Javascript API and HTML The logic of captcha code in HTML and Javascript First of … Read more

Google Maps Add Marker Using Maps Javascript API and HTML

Hi friends, in this tutorial, you will learn the example of google maps add marker using maps javascript API and HTML. As we all know that a marker is usually a point of something but in this case marker identifies a particular location on the Google map and is also referred to as an icon. … Read more