
Search In
Country X calculates tax for its citizens using a graduated scale rate as shown below:
Yearly Income: 0 - 1000
Tax Rate: 0%
Yearly Income: 1,001 - 10,000
Tax Rate: 10%
Yearly Income: 10,001 - 20,200
Tax Rate: 15%
Yearly Inco
As we know our most of the projects in Java is run using Tomacat application server. Sometimes we also need some web server like apache2 for other functionalities like wordpress integration.
In such situation our project need both of the server to ru
JQuery helps us to easily handle the CSS of the elements. jQuery provides several methods to handle CSS elements. These methods are :-
addClass() :- This allows to add one or more than one classes to the selected elements
$("bu
HttpClient class is used to send the http request and receive http response by URL.
It is defined inside the System.Net.Http namespace.
HttpClient is instantiated once and re-used throughout the life of an application.
Properties:
It contains
A common problem encountered during SQL server development is to check if a particular table exists or not. There are different approaches to solve this problem and in this blog we will list out these approaches. For illustration purpose we will be u
Basic difference between the two is the Synchronization. Vector is Synchronized and Arraylist is not. If your application will be having single thread of execution use Arraylist else Vector.
ArrayList is fast because its not synchronized. Its
Thread synchronization is used to verify that no two or more synchronous processes or threads simultaneously executes some particular program block. When one thread executes in the critical section then it does not allow the another thread to e
Ionic provides a service named Action Sheet. It will add slide up pane on the bottom of the screen that contains different options.
Using Action Sheet:
If you want to use ionic sheet into your application, then in your controller you have to inject
CoreAnimation has provided various animation APIs that can be used to accomplish the animation needs. Using UIBeizierPath and CoreAnimation APIs here I’m drawing a line and a circle using CAShapeLayer.
//Below is the function to draw a l
Hi,
We all know that buttons has their own IBActions that can be drawn easily via xibs/storyboard and codes. But what if the view type is UIImageView or UILabel or any other.
In that case we can use UITapGestureRecognizer which is a concrete
