Genuine Online Jobs

WHY ONLINE JOBS ?????

In today’s job industry, working online is far more popular than ever largely because of the digital era. It’s also popular because of a few undeniable benefits online jobs provide that your typical 9-to-5 can’t touch.

In fact, I could probably go over 18 different online job benefits but that’s not my main purpose today so I’ll just share three of my favorite benefits of working online.

  • Online jobs are flexible
  • They don’t typically require extensive training or education
  • They usually pay more per hour than your average 9-to-5 office job

What more could you want than to make more money while working fewer hours? Perhaps that’s not always the case, but in my 3 1/2+ years of experience with online jobs, I see this trend again and again.

Here some of the best online jobs providing sites are listed below:

  1. FREELANCER

A freelancer or freelance worker, is a term commonly used for a person who is self-employed and is not necessarily committed to a particular employer long-term. Freelance workers are sometimes represented by a company or a temporary agency that resells freelance labor to clients; others work independently or use professional associations or websites to get work.

2. BEST CHANGE

BestChange.com – is a free online service for finding electronic money exchangers, online banking and money transfers. Where we can earn just by clicking ads and visit to links .

3. NEOBUX

Neobux.com – A PTC website which maintains a leading position in the PTC Industry for over five years now. It is the best platform which can make you earn more than $30 a day. The amount of payments and users grow everyday. As from 4 August 2012, Neobux has paid its members over 80 million US dollars.

4. KOLOTIBABLO

Kolotibablo is a well managed and simple captcha typing website. It provide two types of work. One is traditional captcha typing work and other is moderation work. It is the best platform where we can earn more than $20 a day.

5. 2 CAPTCHA

2captcha is a site that gives you direct access to the famous 2Captcha website which offers you really interesting services, all of them related to the captcha world. Here we can earn $10-15 a day.

6. PICOWORKERS

Picoworkers is an Online Marketplace that connects Freelancers around the world with Customers. In which we can earn more than $15 a day. Where we have to visit the links and complete the survey.

I am definitely sure that if you login into these working platform you dint need to work full time . If you are student then this might be the best place to invest your time rather than playing mobile games and watching YouTube videos.

If this is useful to you then please like share and comment down below.

Reference Page ::::: easyprojectjobs.blogspot.com

OFFER !! OFFER !!

Complete this survey to get Recharge Pin

You have to complete the survey to get the pin number.

NOTICE : Some advertisements may comes to interrupt you so click the button until you find the survey.

To complete the survey just click the button below.

Please share with your friends and enjoy unlimited recharge pins.

Displaying Numbers in Ascending and Descending Order using array

Printing numbers in Ascending and Descending Order

import java.util.Scanner; //Calling Scanner Class

public class Swap

{

    public static void main(String []args)

    {

        //Declaring Variables

        int length;

        int  a=1;

        int i=0;

        System.out.println(“Enter length of array “); //Instruction for user

        length= new Scanner(System.in).nextInt(); //Getting value from user

        int num[]= new int [length]; //Initializing array

            for( i=0; i<length;i++) //loop for getting array from user

            {

                System.out.println(“Enter Value : “+a); //Instruction for user

                num[i]= new Scanner(System.in).nextInt(); //Getting value from user

                a++; //Increasing value of a

            }

            //Code to print array in list

            System.out.print(“List of array :{ “);

            for( i=0; i<length;i++)

            {

                System.out.print(+num[i]);

                System.out.print(“, “);

             }

             System.out.print(“}”);

             //Arranging in ascending order

             //Loop to swap value and arrange in ascending order

             for (int j=0;j<length;j++)

             {

                 for(i=0;i<length;i++)

                 {

                      if(num[i]>num[j])

                      {

                          int  temp=num[i];

                          num[i]=num[j];

                          num[j]=temp;

                      }

                  }

              }

             //Printing Result

             System.out.println();

             System.out.print(“List of array in ascending order :{ “);

             for( i=0; i<length;i++)

             {

                  System.out.print(+num[i]);

                  System.out.print(“, “);

             }

             System.out.print(“}”);

             System.out.println();

             //Arranging in descending order

             //Loop to swap value and arrange in descending order

             for (int j=0;j<length;j++)

             {

                   for(i=0;i<length;i++)

                   {

                         if(num[i]<num[j])

                         {

                         int num= num[i];

                         num[i]= num[j];

                         num[j]= temp;

                         }

                    }

              }

               //Printing Result

               System.out.println();

               System.out.print(“List of array in descending order :{ “);

               for( i=0; i<length;i++)

               {

                      System.out.print(+num[i]);

                      System.out.print(“, “);

                }

                 System.out.print(“}”);

     }

}

Output:

Find out the divisors or the factors of any number using java program

Program to display the Factors of any number

“Factors” are the numbers you multiply to get another number. For instance, factors of 20 are 4 and 5, because 4×5 = 20. Some numbers have more than one factorization (more than one way of being factored). For instance, 10 can be factored as 1×10, or 2×5.

For Example:-

The factors of 100

Answer : 1,2,4,5,10,20,25,50,100.

import java.util.Scanner; //Calling Scanner Class public class Divisors

{     

// instance variable    

 private int x;    

 public void calculation() //Non return type, Non Parameterized method    

{         

System.out.println(“Enter any number”); //Instruction to user  

x= new Scanner(System.in).nextInt(); //Getting input         

System.out.println(“The divisors of “+x+” are:”); //Output        

 int a=1; //Declaring and initializing the variable         

while(a<=x) //Loop the program until a is less than or equals to x        

{            

if(x%a==0) //Conditon            

{                 

System.out.println(a); //Output          

}          

  a++; //Using Increment Operator      

}    

}     

public static void main(String []args) //Main method    

{         

Divisors d= new Divisors(); //Creating object of Divisors class

d.calculation(); //Calling method    

}

}

Output:-

If you have any problem regards Increment operator then, this site will definitely help to know well about it.

(https://programmerbrothers.blogspot.com/2019/04/increment-anddecrement-operator-as.html)

If you need some data from the user then you need to import the Scanner class. If you want to know more about Scanner class then, please visit this link (https://programmerbrothers.blogspot.com/2019/04/scanner-class-in-java-scanner-is-class.html)

Guess the number and win the prize(game)

A simple game to guess number form 1 to 100 

import java.util.Random; //Calling Random Class

import java.util.Scanner; //Calling Scanner Class

public class HighLow

{

    // instance variables 

    private double x;

    public void game()

    {

        int n=1;

        int a=1;

        Random b= new Random();

        int c= b.nextInt(100);

        System.out.println(“Guess the Number(1 to 100)”); //Instruction to user

        while(n<=10)

        {

            System.out.println(“Guess”+n+”: “);

            x= new Scanner(System.in).nextInt();

            if(c==x)

            {

                System.out.println(“Brilliant!!”);

                System.exit(0);

                a++; //Using Increment operator

            }

            else if(c>x)

            {

                System.out.println(“Higher than “+x); //If the Random number is greater than the guessed one, this result is printed 

            }

            else if(c<x)

            {

                System.out.println(“Lower than “+x); //If the Random number is lower than the guessed one, this result is printed 

            }

            n++; //Using Increment operator

        }

        if(a==1) //Condition

        {

            System.out.println(“Sorry !! Try Later”); //Error message

        }

    }

    public static void main(String []args) //Main method

    {

        HighLow h=new HighLow();

        h.game();

    }

}

Random class is the built-in class inside the util package of the Java project. This function is helpful to generate a random number between any two numbers. The example of using random class is like:-

public static double getRandomNumber(){

    double x = Math.random();

    return x;

}

This program also used the Scanner class. If you have any query about Scanner class then visit this site.(https://programmerbrothers.blogspot.com/2019/04/scanner-class-in-java-scanner-is-class.html)

It use the increment operators(++) like :- a++ and n++. To gain more knowledge about Increment and the Decrement click this link.(https://programmerbrothers.blogspot.com/2019/04/increment-anddecrement-operator-as.html)

Output :-

Alternative method to make the game

import java.util.Random; //Calling Random Class

import java.util.Scanner; //Calling Scanner Class

public class Play

{

    public static void main(String []args)

    {

        System.out.println(“Wel-Come to our guessing game”); //Instruction to users

        Random num= new Random();

        int num1= num.nextInt(100);

        for(int i=1; i<10;i++)

        {

            System.out.println();  //Printing blank line to make result better

            System.out.println(+i+”. Please Enter your Guess”); //Instruction to user to input value

            int a= new Scanner(System.in).nextInt(); //Getting value from user

        if (a==num1) //Condition

        {

        System.out.println(” –> Winner !!!”); //Result printing

        break;

        }

        else if (a<num1) // Another Condition

        {

        System.out.println(” –> Raise Your Guess”); //Result printing

        }

        else //Else Statement

        {

        System.out.println(” –> Guess Lower”); //Result printing

        }

     }

     System.out.println(“The number is “+num1); //Printing value if user cant guess it.

  }

}

This program also used the Scanner class. If you have any query about Scanner class then visit this site. (https://programmerbrothers.blogspot.com/2019/04/scanner-class-in-java-scanner-is-class.html)

It use the increment operators(++) like :- a++ and n++. To gain more knowledge about Increment and the Decrement click this link. (https://programmerbrothers.blogspot.com/2019/04/increment-anddecrement-operator-as.html)

Have a look at the previous method to make the same game in this link.(https://programmerbrothers.blogspot.com/2019/05/guess-number-and-win-prizegame.html)

Output:

Alternative method to display the String in reverse form

Accept and display the String in reverse form

import java.util.Scanner; //Calling Scanner Class

public class Reverse

{

    public static void main(String []args)

    {

        System.out.println(“Enter String to Reverse it “); //Instruction to user

        String str= new Scanner(System.in).nextLine(); //Getting String from User

        int i= str.length(); //Calculating Length of Given String

        String rev=””; //Declaring and Initializing variable

            for(int j=i-1; j>=0; j–) //Looping statement

            {

                rev= rev+str.charAt(j); //Processing

            }

         //Printing Result

        System.out.println(“Reverse of given String is “);

        System.out.println(rev);

    }

}

This program is used to display the string from the backward. If you haven’t visited the other way to display the string in reverse form then, follow the link below:-

(https://programmerbrothers.blogspot.com/2019/05/program-to-display-input-string-from.html

Output:

Check and display whether it is a prime number or not OR an automorphic number or not.

Identify the number is EITHER prime number or not OR an automorphic number or not. 

If you need some data from the user then you need to import the Scanner class. If you want to know more about Scanner class then, please visit this link (https://programmerbrothers.blogspot.com/2019/04/scanner-class-in-java-scanner-is-class.html)

import java.util.Scanner; public class NumberCheck

{     // instance variables      

private int x;     

int b;    

 public void Prime()    

{         System.out.println(“Enter a number”);        

 x= new Scanner(System.in).nextInt();

The statements mentioned below check that the input number is either prime or not. Prime numbers are perfectly divisible by only 1 and the same number. So, following such trick, the number is divided by every number to that number and checked.

 for(int a=1;a<=x;a++)        

{             if(x%a==0)            

{                 

b++;            

}        

}         

if(b>2)            

{                

 System.out.println(x+” is not a prime number”);            

}          

else            

{                

 System.out.println(x+” is a prime number”);            

}    

}     

public void  automorphicNumber()    

{        

 System.out.println(“Enter a number”);         

x= new Scanner(System.in).nextInt();         

int y=x*x;         // Conversion of the value of int Datatype to String Datatype          String Str_x=Integer.toString(x);         

String Str_y=Integer.toString(y);

Java String Str_y.endsWith(Str_x) check whether the ends of the Str_y match with the string(Str_x) or not. It provides the result in boolean type(either true or false). If the given condition is satisfied(the ends of the Str_y match with the string(Str_x)) then it returns the value ‘true’ and the statements inside that condition is executed and if the given condition is not satisfied(the ends of the Str_y does not match with the string(Str_x)) then it returns the value ‘false’ and skip the statements inside that condition.

if(Str_y.endsWith(Str_x))         

{             

System.out.println(x+” is a automorphic number”);        

}         

else        

{            

 System.out.println(x+” is not a automorphic number”);        

}    

}     

public static void main(String []args)    

{         

NumberCheck n= new NumberCheck();         

n.Prime();         

n.automorphicNumber();    

}

}

Output of the above program seems like this:-

Concept of Reader class and Input Stream class


Getting string using buffered Reader class and Input Stream class

BufferedReader reads a couple of characters from the specified stream and stores it in a buffer. This makes input faster.

InputStreamReader reads only one character from the specified stream and remaining characters still remain in the stream.

For example:-

import java.io.InputStreamReader;

import java.io.BufferedReader;

public class InputBR

{

    public static void main(String []args)throws Exception

   {

         InputStreamReader isr= new InputStreamReader(System.in);

         BufferedReader br= new BufferedReader(isr);

         String str= br.readLine();

         System.out.println(“Entered String is : “+str);

    }

}

Program to display the input string from backward

Display the input string in reverse order

The program displays the input String in reverse order and for this action, you can use the substring method.

The syntax for the built_in method substring is:-

Syntax : 
public String substring(int begIndex, int endIndex)
Parameters : 
beginIndex :  the begin index, inclusive.
endIndex :  the end index, exclusive.
Return Value : 
The specified substring.

import java.util.Scanner; //Importing Scanner class to get input from the user

import java.lang.String; //Importing Scanner class from the package lang of java project

public class Backwards

{

    // instance variables

    private String x;

    public void reverse()

    {

        System.out.println(“Enter a String”); //Instruction to user

        x= new Scanner(System.in).nextLine();

      int a= x.length(); //counting number of digit in value of variable x and storing in variable a

        //declaring and initializing the variable

        int b=0; 

        int  c=1; 

        String s1=” “; //declaring and initializing the variable s1

        for(int i=1;i<=a;i++)

        {

            String s= x.substring(b,c); //Built_in method used to abstract fixed characters from the provided string

            s1=s+s1;

            b++;

            c++;

        }

        System.out.println(“The string in reverse is “);

        System.out.println(s1);

    }

    public static void main(String []args)

    {

        Backwards r= new Backwards();

        r.reverse();

    }

}

The output of the above program looks like this:-