Designed by bhawesh chaudhary. Theme images by MichaelJay. Powered by Blogger.

Click this ad.

Showing posts with label Tutorials. Show all posts
Showing posts with label Tutorials. Show all posts

Monday, November 13, 2017

Coding & Decoding





Hello guys  my name is bhawesh and today we'll talk about coding and decoding. Let's get started.
---------------------------------------------------------------------------------------------------------


Coding and decoding form an important part of the Analytical reasoning section in all the aptitude related papers. Usually, three to five questions appear from this area in various entrance exams.

In the alphabetic coding and decoding area, the majority of the questions are of the following types:

    Pattern Based Coding and Decoding
    To solve pattern based questions quickly, you should learn the positions of the letters in English alphabet. For this, you should learn the basic five letters of the non-dictionary word E-J-O-T-Y which are respectively positioned at 5, 10, 15, 20 and 25th position. With these five 'landmarks', the positions of all the other letters can be easily found.
    Let us take the case of 'R'. Since R is two letters behind T, so its position will be 18.

Example 1: The questions covered in this type are like "If TEACHER is coded as VGCEJGT, how will you code HUSBAND"?

Solution: Here, you need to check what logic of coding is applied between the letters of the given word and that of the code. Here code for T is V i.e. 2 is added in the position of T to get its code. The same thing happens for the other letters too. Now, to write the code of the word HUSBAND, you need to add 2 in the positions of the letters of the HUSBAND and its code will be JWUDCPF.


Key Learning

    You must keep one important point in mind- in many cases of pattern coding, the coding is written in the reverse order i.e. the code of the first letter is written in the last, the code of the second letter is written at the second last position and so on.

Example 2: The code of the word TEACHER is TGJECVG.

Solution: Here, the basic concept in coding is the same as the earlier one, the only difference is that the code is written in the reverse order. Similarly, the difference in the letters of the word and the code may vary. E.g. the code for the word TEACHER could have been UGDGMKY, then the letters are moved + 1, + 2, + 3, + 4, + 5, + 6 positions.

    Random pattern coding and decoding
    In this type of questions, the code of the word is written randomly and the question asked contains the same letters as given in the original word. In order to answer this, you just have to check for the code of each letter from the given word and place the corresponding code for every letter.

Example 3: If the code of the word TEACHER is XHDIKHL, what will be the code of HEAT?


Solution: Observe the question closely and you should be able to conclude that there is no relation between the letters of the word TEACHER and the letters of the given code, but the letters of the word HEAT are already contained in the parent word TEACHER. So, picking the corresponding code from the parent word, the code for HEAT will be KHDX.

    Coding of a word in a sentence:
    In this type of coding questions, generally three or four sentences or words are given with sentences or words containing codes. You just have to check for the common words/letters in the sentences/words and corresponding common words/letters in the codes to get the answer e.g. "Ram is Smart" is coded as LPG and "Smart means intelligent" is coded as SLY. From this, you should analyze that the only common word is 'smart' and the only common letter is 'L', which means that 'L' is the code for the word 'smart'. Do remember- in such cases, the codes are not seen at the corresponding positions but for the common words. 



Coding and Decoding: Key Learning

    In this article, you got to know about different types of coding-decoding questions asked in competitive exams and how to solve these questions by using EJOTY technique.
    In order to get a hold on such questions, you need to solve variety of Coding-Decoding questions. This section is a very important and time-consuming from competitive exams' point of view.

_____________________________________________________________________________________


If you like this Don't forget to share and write your comments about it.


Guys if you like our post then do subscribe to our blog, share your thought, if you want you can contact with us.

FACEBOOKt
TWITTER
TUMBLR
Instagram
Youtube
Pinterest
Snapchat
Wikipedia

We'll post such contents in our blog that our viewers's really need & they search every where. So for that we request all our viewers to connect with us and tell your problem.

Publisher: Bhawesh chaudhary
Related post:-
      
- Learning These Coding Language Can Help you Get Any Job Quickly         
 -CSS ANIMATION

We've started making our cover song on youtube also so we request our visitors to support us by subscribing.
You can visit us by clickingyoutube.


Thanks for visiting us!

Thursday, November 9, 2017

CSS ANIMATION

Hello guys today my name is bhawesh and today i'll teach you something about CSS ANIMATION FROM W3 OFFLINE SCHOOL TUTORIAL.




CSS3 Animations

CSS3 animations allows animation of most HTML elements without using JavaScript or Flash!
CSS3
Animation

Browser Support for Animations

The numbers in the table specify the first browser version that fully supports the property.
Numbers followed by -webkit-, -moz-, or -o- specify the first version that worked with a prefix.
Property
@keyframes43.0
4.0 -webkit-
10.016.0
5.0 -moz-
9.0
4.0 -webkit-
30.0
15.0 -webkit-
12.0 -o-
animation43.0
4.0 -webkit-
10.016.0
5.0 -moz-
9.0
4.0 -webkit-
30.0
15.0 -webkit-
12.0 -o-

What are CSS3 Animations?

An animation lets an element gradually change from one style to another.
You can change as many CSS properties you want, as many times you want.
To use CSS3 animation, you must first specify some keyframes for the animation.
Keyframes hold what styles the element will have at certain times.

The @keyframes Rule

When you specify CSS styles inside the @keyframes rule, the animation will gradually change from the current style to the new style at certain times.
To get an animation to work, you must bind the animation to an element.
The following example binds the "example" animation to the <div> element. The animation will last for 4 seconds, and it will gradually change the background-color of the <div> element from "red" to "yellow":

Example

/* The animation code */
@keyframes example {
    from {background-color: red;}
    to {background-color: yellow;}
}

/* The element to apply the animation to */
div {
    width: 100px;
    height: 100px;
    background-color: red;
    animation-name: example;
    animation-duration: 4s;
}
Note: If the animation-duration property is not specified, the animation will have no effect, because the default value is 0. 
In the example above we have specified when the style will change by using the keywords "from" and "to" (which represents 0% (start) and 100% (complete)).
It is also possible to use percent. By using percent, you can add as many style changes as you like.
The following example will change the background-color of the <div> element when the animation is 25% complete, 50% complete, and again when the animation is 100% complete:

Example

/* The animation code */
@keyframes example {
    0%   {background-color: red;}
    25%  {background-color: yellow;}
    50%  {background-color: blue;}
    100% {background-color: green;}
}

/* The element to apply the animation to */
div {
    width: 100px;
    height: 100px;
    background-color: red;
    animation-name: example;
    animation-duration: 4s;
}
The following example will change both the background-color and the position of the <div> element when the animation is 25% complete, 50% complete, and again when the animation is 100% complete:

Example

/* The animation code */
@keyframes example {
    0%   {background-color:red; left:0px; top:0px;}
    25%  {background-color:yellow; left:200px; top:0px;}
    50%  {background-color:blue; left:200px; top:200px;}
    75%  {background-color:green; left:0px; top:200px;}
    100% {background-color:red; left:0px; top:0px;}
}

/* The element to apply the animation to */
div {
    width: 100px;
    height: 100px;
    position: relative;
    background-color: red;
    animation-name: example;
    animation-duration: 4s;
}

Delay an Animation

The animation-delay property specifies a delay for the start of an animation.
The following example has a 2 seconds delay before starting the animation:

Example

div {
    width: 100px;
    height: 100px;
    position: relative;
    background-color: red;
    animation-name: example;
    animation-duration: 4s;
    animation-delay: 2s;
}

Set How Many Times an Animation Should Run

The animation-iteration-countproperty specifies the number of times an animation should run.
The following example will run the animation 3 times before it stops:

Example

div {
    width: 100px;
    height: 100px;
    position: relative;
    background-color: red;
    animation-name: example;
    animation-duration: 4s;
    animation-iteration-count: 3;
}
The following example uses the value "infinite" to make the animation continue for ever:

Example

div {
    width: 100px;
    height: 100px;
    position: relative;
    background-color: red;
    animation-name: example;
    animation-duration: 4s;
    animation-iteration-count: infinite;
}

Run Animation in Reverse Direction or Alternate Cycles

The animation-direction property is used to let an animation run in reverse direction or alternate cycles.
The following example will run the animation in reverse direction:

Example

div {
    width: 100px;
    height: 100px;
    position: relative;
    background-color: red;
    animation-name: example;
    animation-duration: 4s;
    animation-iteration-count: 3;
    animation-direction: reverse;
}
»
The following example uses the value "alternate" to make the animation first run forward, then backward, then forward:

Example

div {
    width: 100px;
    height: 100px;
    position: relative;
    background-color: red;
    animation-name: example;
    animation-duration: 4s;
    animation-iteration-count: 3;
    animation-direction: alternate;
}

Specify the Speed Curve of the Animation

The animation-timing-functionproperty specifies the speed curve of the animation.
The animation-timing-function property can have the following values:
  • ease - specifies an animation with a slow start, then fast, then end slowly (this is default)
  • linear - specifies an animation with the same speed from start to end
  • ease-in - specifies an animation with a slow start
  • ease-out - specifies an animation with a slow end
  • ease-in-out - specifies an animation with a slow start and end
  • cubic-bezier(n,n,n,n) - lets you define your own values in a cubic-bezier function
The following example shows the some of the different speed curves that can be used:

Example

#div1 {animation-timing-function: linear;}
#div2 {animation-timing-function: ease;}
#div3 {animation-timing-function: ease-in;}
#div4 {animation-timing-function: ease-out;}
#div5 {animation-timing-function: ease-in-out;}
»

Animation Shorthand Property

The example below uses six of the animation properties:

Example

div {
    animation-name: example;
    animation-duration: 5s;
    animation-timing-function: linear;
    animation-delay: 2s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
}
»
The same animation effect as above can be achieved by using the shorthandanimation property:

Example

div {
    animation: example 5s linear 2s infinite alternate;
}

CSS3 Animation Properties

The following table lists the @keyframes rule and all the animation properties:

PropertyDescription
@keyframesSpecifies the animation code
animationA shorthand property for setting all the animation properties
animation-delaySpecifies a delay for the start of an animation
animation-directionSpecifies whether an animation should play in reverse direction or alternate cycles
animation-durationSpecifies how many seconds or milliseconds an animation takes to complete one cycle
animation-fill-modeSpecifies a style for the element when the animation is not playing (when it is finished, or when it has a delay)
animation-iteration-countSpecifies the number of times an animation should be played
animation-nameSpecifies the name of the @keyframes animation
animation-play-stateSpecifies whether the animation is running or paused



animation-timing-functionSpecifies the speed curve of the animation





#copied_w3_school_offline


If you like this Don't forget to share and write your comments about it.


Guys if you like our post then do subscribe to our blog, share your thought, if you want you can contact with us.

FACEBOOK
TWITTER
TUMBLR
Instagram
Youtube
Pinterest
Snapchat

We'll post such contents in our blog that our viewers's really need & they search every where. So for that we request all our viewers to connect with us and tell your problem.

Publisher: Bhawesh chaudhary

Monday, September 25, 2017

How To Make Money From Your Blog




Now that you have your blog set up and traffic is coming your way, you’re ready to start monetizing your blog.
You must have seen or heard about people who make a lot of money from blogs. Some people aren’t even afraid to show it off to their readers. Here are a couple of folks who do extremely well with blogging:
  1. Pat Flynn from SmartPassiveIncome.commakes around $80,000 per month (he started his blog 5-6 years ago, though).
  2. Lindsay from PinchOfYum.com makes around $20,000 per month (she started her blog in 2010).
  3. Regina from ByRegina.com makes around $7,000 per month.

Email marketing to your own list the best way to make money with your blog.

List building refers to adding new subscribers to your email list. You can entice readers to subscribe by offering a free gift exclusive to subscribers and, of course, by consistently producing great content that people want to come back to.
But how does this help you monetize? It keeps people in-the-know. When you launch your eCourse, start offering consulting services, or publish an eBook, your subscribers are going to be the first ones to care. So, if you want to see quick results after a launch, be sure you have an email list built up to gain access to a pool of interested individuals.
That’s not to mention that you can also monetize your email campaigns with banner ads and affiliate links, too. In some cases, you might even set up a separate paid subscription email list for exclusive tips and offers.
If you want to start gathering your visitors you will need a email service. I recommend Constant Contact. *Constant Contact has a 60 day free trial (no credit-card required). After that their pricing starts as low as $20/month but I was able to get you 20% off if you click here! I like their service because it isn’t expensive, they have excellent support, and a great autoresponder management system.

Here are six more excellent ways you can monetize your blog:

1) Affiliate Marketing

Affiliate marketing is a type of performance-based marketing. As the blogger, you include links to a product or service offered through another business’s affiliate program. If one of your visitors clicks on that link and purchases the good or service, you’ll receive a cut of the cost.
That’s how I monetize my blog here at Start Blogging Online.
If you choose to join an affiliate program, it’s always a good idea to:
  1. Only promote products relevant to your niche.
  2. Only promote products you’ve personally used and recommend.
  3. Include a disclaimer on your site as to not mislead your readers (like I do here).
So how do you get involved in affiliate marketing? You can start by joining a popular program such as:
But you don’t have to stick with just the big-name programs. Businesses can also set up their own programs for a single product or a small group of products, and you can become one of their affiliates. For instance, a fellow blogger might offer an affiliate program for eBooks or eCourses in your niche, which would be a great opportunity for you since it’s highly relevant to your readers.
How much can you make through affiliate links? Melissa Culbertson of Blog Clarity points out just two examples of a mommy blogger and decorative concrete blogger who make $20,000 and $32,000 per year respectively, and that’s with minimal visitors.

2) Google AdSense

Some people create a self-hosted blog solely for ads and Google AdSense is one of the most popular ad networks around. Simply put, you make money by displaying ads on your site. There are two ways to start earning cash from Google AdSense:
  1. Based on impressions: This depends on page views. For instance, for every 1,000 page views you get, you earn a set dollar amount.
  2. Based on clicks: Regardless of page views, if a visitor clicks on the ad from your site, you’ll earn a certain cut of the ad revenue. This can range anywhere from $0.01 to a couple of dollars depending on the ad.
AdSense is compatible with free Blogger blogs and self-hosted WordPress blogs, but keep in mind that it won’t work with a free WordPress blog (although you can monetize with WordAds if you have a custom domain).
googleadsense
How much can you make with AdSense? Well, that all depends on your traffic and how many people are willing to click on your ads. (Remember that you should never click on your own ads since Google can penalize you for it.) Pat Flynn of Smart Passive Income has reported earning upwards of $3,000 per month on AdSense revenue alone, but other bloggers like Spencer Haws of Niche Pursuitshave reported earnings well over $10,000 per month.

3) Course and/or Services

If you’re already teaching your visitors through your blog, why not create an exclusive learning opportunity by building a paid online course? A common way to sell these courses is by setting up an 8-week course through automated email messages or releasing the full package all at once so students can work at their own pace. Just some examples of online courses include:
  • Audience Business Masterclass (from Firepole Marketing)
  • Article Writing Masterclass (by Carol Tice and Linda Formichelli)
  • Social Media Training for Serious Marketers (from Market Motive)
How much can you make selling eCourse memberships? Again, this all depends on how much you sell it for and how many people are willing to purchase the course. Gina Horkey of Horkey Handbook made over $1,000 in her first month after launching a freelance writing eCourse.
Like courses, you can also offer services. For example, many bloggers are also freelance writers, and they get paid to write blog content for other people. Other common services include speaking engagements and private coaching. Depending on your niche, you can get more specific. A wedding blogger, for instance, might offer wedding planning services.

4) Consulting

Consulting is another popular way to make money through your blog’s traffic. With these services, you charge a fee to give feedback to readers. For example, let’s say you blog about social media. You could charge $75 for a one-hour Skype session where you discuss your client’s social media strategy. Along with the Skype call, you might send a full written report via email on how to improve that strategy.
Let’s look at a few examples. Jim Connolly of Jim’s Marketing Blog sells two-hour-long “Pick My Brain” sessions for $319 a pop to discuss marketing tactics. Sophie Lizard of Be a Freelance Blogger sells one-on-one mentoring sessions for freelance bloggers in packages ranging from $197 to $497.

5) Paid Reviews and/or Banner-ads

If you’re generating a decent amount of traffic, you might be approached by a business looking to sponsor your site. There are usually two requests you get in these cases:
  1. Paid reviews or sponsorship posts
  2. Banner ads
Paid reviews are when the business sends you their product and pays you to write a review about it, but you are not obligated to write a positive review. Alternatively, some businesses will sponsor a specific post in exchange for a link back to their site. It is an ethical practice to disclose the sponsorship to your readers.
Banner ads are just what they sound like. They’re ads you place in “banner” style, usually in your sidebar. The business sponsoring the ad will often pay you monthly to keep the ad up on your site.

6) eBooks

Writing eBooks is a super popular way to start selling a unique product in your industry, and it’s ideal for pretty much any niche. With so many self-publishing opportunities available, too, it’s easy to get your book published and ready to sell with major retailers like Amazon or directly on your site.
How much money can you make? Darren Rowse of ProBlogger reports earning $72,000 in just one week after launching his eBook. If you’re not terribly well-known, you can still make a decent chunk of cash. Steve Gillman reports at The Penny Hoarder that he made about $2,000 from an eBook on ultralight backpacking that he wrote in just a few days.

Need more advice?

Head to the next section to get in touch with me. I’ll answer all your blogging related questions for free (limited time). So grab your chance!
Now that you have your blog set up and traffic is coming your way, you’re ready to start monetizing your blog.
You must have seen or heard about people who make a lot of money from blogs. Some people aren’t even afraid to show it off to their readers. Here are a couple of folks who do extremely well with blogging:
  1. Pat Flynn from SmartPassiveIncome.commakes around $80,000 per month (he started his blog 5-6 years ago, though).
  2. Lindsay from PinchOfYum.com makes around $20,000 per month (she started her blog in 2010).
  3. Regina from ByRegina.com makes around $7,000 per month.

Email marketing to your own list the best way to make money with your blog.

List building refers to adding new subscribers to your email list. You can entice readers to subscribe by offering a free gift exclusive to subscribers and, of course, by consistently producing great content that people want to come back to.
But how does this help you monetize? It keeps people in-the-know. When you launch your eCourse, start offering consulting services, or publish an eBook, your subscribers are going to be the first ones to care. So, if you want to see quick results after a launch, be sure you have an email list built up to gain access to a pool of interested individuals.
That’s not to mention that you can also monetize your email campaigns with banner ads and affiliate links, too. In some cases, you might even set up a separate paid subscription email list for exclusive tips and offers.
If you want to start gathering your visitors you will need a email service. I recommend Constant Contact. *Constant Contact has a 60 day free trial (no credit-card required). After that their pricing starts as low as $20/month but I was able to get you 20% off if you click here! I like their service because it isn’t expensive, they have excellent support, and a great autoresponder management system.

Here are six more excellent ways you can monetize your blog:

1) Affiliate Marketing

Affiliate marketing is a type of performance-based marketing. As the blogger, you include links to a product or service offered through another business’s affiliate program. If one of your visitors clicks on that link and purchases the good or service, you’ll receive a cut of the cost.
That’s how I monetize my blog here at Start Blogging Online.
If you choose to join an affiliate program, it’s always a good idea to:
  1. Only promote products relevant to your niche.
  2. Only promote products you’ve personally used and recommend.
  3. Include a disclaimer on your site as to not mislead your readers (like I do here).
So how do you get involved in affiliate marketing? You can start by joining a popular program such as:
But you don’t have to stick with just the big-name programs. Businesses can also set up their own programs for a single product or a small group of products, and you can become one of their affiliates. For instance, a fellow blogger might offer an affiliate program for eBooks or eCourses in your niche, which would be a great opportunity for you since it’s highly relevant to your readers.
How much can you make through affiliate links? Melissa Culbertson of Blog Clarity points out just two examples of a mommy blogger and decorative concrete blogger who make $20,000 and $32,000 per year respectively, and that’s with minimal visitors.

2) Google AdSense

Some people create a self-hosted blog solely for ads and Google AdSense is one of the most popular ad networks around. Simply put, you make money by displaying ads on your site. There are two ways to start earning cash from Google AdSense:
  1. Based on impressions: This depends on page views. For instance, for every 1,000 page views you get, you earn a set dollar amount.
  2. Based on clicks: Regardless of page views, if a visitor clicks on the ad from your site, you’ll earn a certain cut of the ad revenue. This can range anywhere from $0.01 to a couple of dollars depending on the ad.
AdSense is compatible with free Blogger blogs and self-hosted WordPress blogs, but keep in mind that it won’t work with a free WordPress blog (although you can monetize with WordAds if you have a custom domain).
How much can you make with AdSense? Well, that all depends on your traffic and how many people are willing to click on your ads. (Remember that you should never click on your own ads since Google can penalize you for it.) Pat Flynn of Smart Passive Income has reported earning upwards of $3,000 per month on AdSense revenue alone, but other bloggers like Spencer Haws of Niche Pursuitshave reported earnings well over $10,000 per month.

3) Course and/or Services

If you’re already teaching your visitors through your blog, why not create an exclusive learning opportunity by building a paid online course? A common way to sell these courses is by setting up an 8-week course through automated email messages or releasing the full package all at once so students can work at their own pace. Just some examples of online courses include:
  • Audience Business Masterclass (from Firepole Marketing)
  • Article Writing Masterclass (by Carol Tice and Linda Formichelli)
  • Social Media Training for Serious Marketers (from Market Motive)
How much can you make selling eCourse memberships? Again, this all depends on how much you sell it for and how many people are willing to purchase the course. Gina Horkey of Horkey Handbook made over $1,000 in her first month after launching a freelance writing eCourse.
Like courses, you can also offer services. For example, many bloggers are also freelance writers, and they get paid to write blog content for other people. Other common services include speaking engagements and private coaching. Depending on your niche, you can get more specific. A wedding blogger, for instance, might offer wedding planning services.

4) Consulting

Consulting is another popular way to make money through your blog’s traffic. With these services, you charge a fee to give feedback to readers. For example, let’s say you blog about social media. You could charge $75 for a one-hour Skype session where you discuss your client’s social media strategy. Along with the Skype call, you might send a full written report via email on how to improve that strategy.
Let’s look at a few examples. Jim Connolly of Jim’s Marketing Blog sells two-hour-long “Pick My Brain” sessions for $319 a pop to discuss marketing tactics. Sophie Lizard of Be a Freelance Blogger sells one-on-one mentoring sessions for freelance bloggers in packages ranging from $197 to $497.

5) Paid Reviews and/or Banner-ads

If you’re generating a decent amount of traffic, you might be approached by a business looking to sponsor your site. There are usually two requests you get in these cases:
  1. Paid reviews or sponsorship posts
  2. Banner ads
Paid reviews are when the business sends you their product and pays you to write a review about it, but you are not obligated to write a positive review. Alternatively, some businesses will sponsor a specific post in exchange for a link back to their site. It is an ethical practice to disclose the sponsorship to your readers.
Banner ads are just what they sound like. They’re ads you place in “banner” style, usually in your sidebar. The business sponsoring the ad will often pay you monthly to keep the ad up on your site.

6) eBooks

Writing eBooks is a super popular way to start selling a unique product in your industry, and it’s ideal for pretty much any niche. With so many self-publishing opportunities available, too, it’s easy to get your book published and ready to sell with major retailers like Amazon or directly on your site.
How much money can you make? Darren Rowse of ProBlogger reports earning $72,000 in just one week after launching his eBook. If you’re not terribly well-known, you can still make a decent chunk of cash. Steve Gillman reports at The Penny Hoarder that he made about $2,000 from an eBook on ultralight backpacking that he wrote in just a few days.

Need more advice?

Head to the next section to get in touch with me. I’ll answer all your blogging related questions for free (limited time). So grab your chance!
Hey, we've just launched a new custom color Blogger template. You'll like it - https://t.co/quGl87I2PZ
Join Our Newsletter