Showing posts with label Java. Show all posts
Showing posts with label Java. Show all posts
Java Developer Openings @ CODETRONIX Software Solutions

Java Developer Openings @ CODETRONIX Software Solutions

Java Developer Openings @ CODETRONIX Software Solutions in VISAKHAPATNAM

Dear Candidate,
Job Description: Opportunity for a Java Developer with CSS who are expanded their presence in Visakhapatnam. The role requires hands on technology expert who has been coding in Java for at least 1 to 2 years. The candidate must have strong understanding of Core and Advance Java development and concepts.

Opportunity for Software Engineer - Visakhapatnam

Job Title- Java Developer

Exp : 0 - 2 Years

Work Location : Visakhapatnam

Required Skills: Java Core & Advanced, JSP / Servlet, DHTML/CSS, Web 2.0, Advanced JavaScript, PL/SQL (Oracle), Unix/Linux

------------------------------------------------------------------------------------------------------------------------------------------------------------
Now, please do confirm whether you are open for these openings and forward your latest CV immediately incorporating the following details (Mandatory for shortlisting) :
------------------------------------------------------------------------------------------------------------------------------------------------------------

# Are you open for Visakhapatnam Location :
# Are you open for long run position(Y/N) :
# Your current Designation :
# Your Total IT Experience :
# Your Current Company Name & Location :
# Your Current CTC :
# Your Expected CTC :
# Your Notice Period :
# PAN Card No:
# Your Highest Qualification(Passout Year) :
# Your DOB :
# Your Contact No. & Email ID:
=========================================================================================

Please send your CV to: hr@codetronix.co.in
Java Developer - Immediate Joinees

Java Developer - Immediate Joinees

Java Developer - Immediate Joinees


Experience required for the Job: 1 - 2 years
Annual Salary of the Job: 1.0 - 3.0 Lacs
Job Location: Bengaluru/Bangalore

Dear Candidate,
Greetings from SPS Consultancy Services.

Please find the job description below. Candidates with notice period less than 15 days / 30 days are preffered

Company name -Keyfalcon Solutions

Keyfalcon Solutions is all that you want from a software services company and that little extra that you would want as an advantage over the rest! We build software solutions around your needs and requirements and have therefore placed ourselves

JD for Java Developers

1.Good practical exposure on Java concepts
2.Hands on Frameworks like hibernate and springs
3.Knowledge on Angular JS

Regards,
Bharati

SPS CONSULTANCY SERVICES
B2, 1st Floor, Unity Buildings,
JC Road, Bangalore - 560002
Off 080-4114 8435
Mob +91 8105863008/9972766091
Check Given Number is Prime or Not

Check Given Number is Prime or Not

Check Given Number is Prime or Not


public class PrimeNum

 {

    public static void main(String args[])

    {

        int n=13,count=0;

        for(int i=2;i<=n;i++)

        {

            if(n%i==0)

            {

                count=count+1;

            }

        }

        if(count>=2)

            System.out.println("not prime");

        else

        System.out.println("prime");

    }

}
output: Prime 
String Sorting using java Program

String Sorting using java Program


String Sorting using java Program


public class Stringsorting
 {

    public static void main(String args[])

    {

        String str="sirishe",str1="sirisha";

        char s[]=str.toCharArray();

        char s1[]=str1.toCharArray();

        int a='0',j=0;

        for(int i=s.length-1;i>=0;i--)

        {

            if(((int)s[i])>((int)s1[i]))

            {

             j=1;

            }

            else

            {
              j=0;
            }
                                   
        }
   
   if(j==1)

        {

             System.out.println(str+"\t"+str1);

          }
        else
             System.out.println(str1+"\t"+str);
        }      
 
}

Output:  sirisha sirishe

Reverse The Statement  as given Statement eg: "i love India" into "aidin love i"

public class RevString

{

    public static void main(String args[])

    {

        String orig="i am indian",rev="";

        int l=orig.length();

        for(int i=l-1;i>=0;i--)

        {

          rev=rev+orig.charAt(i);
         
        }

        System.out.println(rev);

    }

}

input:  i love India
Output: aidin love i
Revere the Statement Using java Program

Revere the Statement Using java Program


Revere the Statement Using java Program 


public class RevStatement
 {

    public static void main(String []args)

    {

        String str="i love india";

        String []split= str.split(" ");

        String rev="";

        for(int i=split.length-1;i>=0;i--)

        {

           rev+=(split[i]+" ");

        }

        System.out.println(rev);

    }

}

input: i love india

output: india love i
To Find the Palandrum String

To Find the Palandrum String

To Find the Palandrum String Program in Java


public class PalandrumString

 {

public static void main(String args[])

{

   StringBuffer s1=new StringBuffer("SrS");

   StringBuffer s2=new StringBuffer(s1);

    s1.reverse();

     System.out.println("given:"+s2.toString());

      System.out.println("reverse:"+s1.toString());

   if(String.valueOf(s1).contentEquals(String.valueOf(s2)))

        System.out.println("equal");

    else

        System.out.println(" not equal");
 
}

}

To Find the Palandrum Number using Java

To Find the Palandrum Number using Java

To Find the Palandrum Number using Java


import java.util.*;

public class PalandrumNum {

  public static void main(String args[])

  {

      Scanner s=new Scanner(System.in);

    int n,r,d=0,temp;

    System.out.println("enter a number");

    n=s.nextInt();

    temp=n;

    while(n!=0)

    {

        r=n%10;

        d=d*10+r;

        n=n/10;
        
    }

    if(temp==d)

        System.out.println("palandrum");

    else

        System.out.println("not palandrum");
  }

    
  
}

To Find the Fibnocci Series

To Find the Fibnocci Series

To Find the Fibnocci Series

public class Fibnocci
{

    public static void main(String args[])

    {

       int f1=0,f2=0,f3=1;

       System.out.println(f1+"\n"+f3);

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

        {

          f1=f2;

          f2=f3;

          f3=f1+f2;

          System.out.println(f3);

        }
     
    }
}

write a program to find the Amstrong Number in java

write a program to find the Amstrong Number in java

write a program to find the Amstrong Number in java


import java.util.*;
public class AmstrongNum {

   public static void main(String args[])

   {

    Scanner s=new Scanner(System.in);

    int n,r,d=0,temp;

    System.out.println("enter a number");

    n=s.nextInt();

    temp=n;

    while(n!=0)

    {

        r=n%10;

        d=d*d*d+r;

        n=n/10;
    }

    if(temp==d)

        System.out.println("amstrong number");

    else

        System.out.println(" not amstrong");

   }

}