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