
Search In
Strictly Typed Arrays
Strictly Typed Arrays allows to define a variable number of arguments to a function by using "..."
We have to use "..." inside the method parentheses so that method accepts a variable length of arguments.

So when we talk about iteration on arrays in JavaScript, first thing comes in mind is traditional loops, but here we are discussing something that might surprise you that is array reduce() method, so first I’ll tell you, how does array reduce()
In this Android Video Tutorial, I am giving giving a simple and basic demonstration on activity and layout creation.
I have also mentioned activities deceleration in the manifest and also how we make the particular activity as launcher activity
In this tutorial, we will get to know that how we can get our speed using GPS in android, we get the speed in onLocationChanged(Location location) method that is our @overrided method whose parameter that is Location here helps us to give speed in me
Artificial Intelligence (AI) is designing machines that have the ability to think. The discussion about its importance have gained momentum in recent years. Is it a bane or boon to future of human existence is an ongoing debate. However the truth is

Sometimes you need to adding dynamic fields in a form as per client requirement. The dynamic field is new input field which will be created whenever we click + button in our script. Here, in this tutorial, I have provided an easy way to add dynamic f
ZAP Tool is a security tool which is an easy-to-use integrated penetration testing tool for finding vulnerabilities in web applications/Web apps.
ZAP provides automated scanners as well as a set of tools that allow you to find security vulnerabiliti
Understanding Layered Navigation In Layman’s Terms
Break down the term “Layered Navigation” and suddenly words become self-explanatory. Arrange everything in orderly layers and walk through these layers of arrangements. If
In draggable gridlayout cells of the GridLayout(consist rows and columns) can be draged from one position to another by using OnDragListener.
To use GridLayout, first add gridlayout to project gradle (app level) and follow below st
def zipdir(path, ziph):
#ziph is zipfile handle
for root, dirs, files in os.walk(path):
for file in files:
ziph.write(os.path.join(root, file))
zipf = zipfile.ZipFile('test_python.zip', 'w',
zipfile.ZIP_DEFLATED)
