Welcome to Coding Things,
Coding is the process of transforming ideas, solutions, and instructions into the language that the computer can understand.
Want to learn Computer Programming ? In this channel I make videos on computer programming, various tech stacks in software development and coding related tutorials.


Mail Id - codingthings22@gmail.com



Coding Things

Which of the following character is used to close a tag in HTML?

2 years ago | [YT] | 0

Coding Things

Select Output of the following Python Code ?

var = { }
print( type( var ) )

2 years ago | [YT] | 3

Coding Things

What will be the output of the following Python Code ?

a = [1, 2]
print(a * 2)

3 years ago | [YT] | 2

Coding Things

What is the Output of the Following Python Code ?

n = ( 5 )
print( type( n ) )

3 years ago | [YT] | 3

Coding Things

What is the Output of the Following Python Code ?

a = [ ]
b = [ ]
print( a is b )

3 years ago | [YT] | 5

Coding Things

What Will be the Output of Below Python Code ??

lst = [ 1, 2, 3, 4 ]
print( lst.pop() )

3 years ago | [YT] | 2