
Search In
In today's online marketing world every marketer opts for different strategy for the identical goal - “Get higher SERP”. One of the most common and important strategies is doing Social Bookmarking (SB). Posting content on social media gives
In the previous part C++ Interview Questions and Answers Part 1 I have explained some basic questions of C++.This part is in continuation with the previous C++ Interview Questions and Answers tutorial. In this part of the tutorial we are proceeding
The first thought you can have with the title is of the influencers you follow or the small businesses that are flourishing online bit by bit. Before the Covid-19 pandemic hit us, personal branding selectively was used only when it is requ
In this blog we have defined Floating Toolbar which is new component into android with the introduction of material design. Floating Toolbar view just expand after click on Floating Action button with some icons.
With the help of some following step
Imagine a situation in which you just wake up at 2 Am midnight and you tried to browse internet and typed the Website URL, but due to half sleep condition you typed the wrong URL and after hitting the
This error used to come when you are trying to do bundle install and mysql2 gem is unable to install properly. So below are the steps as per the different operating systems:
Sometimes you need to update your Ruby library, run this code:
Step 1: sud
Here I am writing a way to implement Hashset. HashSet creates hashtable to store the data. As it implements Set interface so it doesn’t contains duplicate elements. It also extends AbstractSet class.
We can implement HashSet by using different cons
If you have error in line
__weak typeof(self)weakSelf = self;
replace this line with
__typeof__(self) __weak weakSelf = self;
if we want to break the execution of loop in while, do while and for loop and switch case we use break satement.
Syntax:
jump-statement;
break;
below are examples to illustrate break statement:
Example1
Example of C break statement with loop
As we all know all data are sent in form of bytes from one end and on another end we can read that bytes and convert back into original string. following code will help you to convert string to bytes and vice versa.
public static String encodeBytes