JAVATECH NEWS

Java

CORE JAVA

Interview

OFF-CAMPUS

Wednesday 31 December 2014

Opening for Java Web Developer at Symantec


Position:Software Engineer (Java Web Developer)
Auto req ID :20749BR
Full-time or Part-time :Full-time
Location :IND - Tamil Nadu, Chennai
Job Function :Development Function
Responsibilities:
The Gateway Security Group in Symantec helps to keep our customers safe and compliant, protecting email and web communication, user identities, and monitoring for network activity which indicates increased risk. As part of the Gateway Security organization you will be an integral part of the development teams for cloud-based multi-tenant Hosted Security Services. Symantec’s Hosted Services include Symantec Protection Network - our software-as-a-service (SaaS) platform for providing Symantec technologies to customers via cloud-based online filtering services for e-mail, web and instant messaging security.
We’re seeking profiles for a software engineer position. This position needs a candidate with hands on experience with the following:
- Linux ( Preferred ) Windows is also ok.
- Java
- Experience with REST
- HTML & CSS
- JavaScript ( knowledge of JQuery is an advantage )
- Excellent verbal and written communication skills
- Product development, debugging issues and providing solutions.
Qualifications Education: B.E., B.Tech., MCS

Work Experience: 3 to 5 years

Excellent verbal and written communication skills

Apply here


Read more ...

Tuesday 30 December 2014

Java 7 Auto-Update to Java 8 in January 2015


Good news for all Java users.Oracle will start auto-updating Windows 32-bit and OS X, Java Runtime Environment (JRE) users from JRE 7 to JRE 8 in January 2015.

The Java auto-update mechanism is designed to keep Java users up-to-date with the latest security fixes. To achieve this goal Windows and OS X users that rely on Java’s auto-update mechanism will have their JRE 7 replaced with JRE 8.

Oracle will start auto-updating all Windows 32-bit and OS X users from JRE 7 to JRE 8 with the update release of Java, Java SE 8 Update 31 (Java SE 8u31), due in January 2015.

JRE 8 has been the default version on Java.com since October 2014 and is now being used by millions of users.
As Oracle replaced JRE 6 by JRE 7, oracle will auto-update users of the older release to the newer version of Java.
As always, all users are encouraged to update to the most recent Java versions available for public download.
In March 2014 Oracle announced the End of Public Updates for their Java SE 7 products for April 2015.more information....

How to update Java???

Read more ...

Java Opening at Span Infotech Private Limited

Company Name:Span Infotech Private Limited


About Company: Span Infotech Private Limited is ISO 9001:2008 certified company. Offers services such as Custom Development, Application Management, Testing, Data Warehousing, Enterprise Mobility, ERP, Remote Infrastructure Management. Technologies are Java, Microsoft Platform, SOA.
Span Infotech Private Limited is seeking for experienced candidates to work as Sr Java Developer in Bangalore.

Job summary:
Experience: 4-9 years
Location: Bangalore
Industry: IT/ Computers- Software
Role: Team Lead/ Technical Lead
Key skills: JSF, Spring, Java

Job description:
Candidate familiar with Java 1.7, Spring 3.2.x, Apache CXF-2.7x, XML, JAXB, JPA2, Unit testing frameworks, Junit 4.0, DBUnit, Mockito, Maven 3, Eclipse, Version Controller – SVN, GIT, SQL, DDL. DML, Oracle 11, Jetty 7.x, SOAP, Spring, Core Java, J2EE design patterns, experence in Batch processing.

Click here To Apply

For More Java Opening Click here 


Read more ...

Thursday 25 December 2014

Inheritance in Java


1. What is inheritance?

Ans-Deriving new class(child class) from existing class(base class or parent class) such that new class acquire all the features of parent class/base class is called Inheritance. Java uses “extend” keyword for acquiring the features of parent class to child class.

public class Parent
{
String fathername="Chandan";
int fatherage=50;
}
class Child extends Parent
{
String name="Raju";
void display()
{
System.out.println("My name is "+name+" My fathername is "+ fathername);
System.out.println("My father's age is "+fatherage);
}
}
class Show
{
public static void main(String args[])
{
Child c=new Child();
c.display();
}
}

2. What are the types of inheritance.?


Ans:There are 5 types of inheritance.

1. Single Inheritance.

2. Multilevel Inheritance

3. Hierarchical Inheritance

4.Hybrid Inheritance.

5. Multiple Inheritance.

3.What is single inheritance?

Ans: If One class is extended by only one class,then it is called single inheritance.
Example of single inheritance
class One
{
void methodOne()
{
System.out.println("This is Parent class method");
}
}

class Two extends One
{
void methodTwo()
{
System.out.print("This is Child class method ");
}
public static void main(String args[])
{
Two t=new Two();
t. methodOne();
t.methodTwo();
}
}
O/P:
This is Parent class method
This is Child class method.

4.What is multi level inheritance?

Ans:If a class(here Two) inherit from a base class(here class One),and another class(here class Three) is derived from this derived class(class Two) then it is called Multi level inheritance.
Example of Multi level inheritance.
class One
{
void methodOne()
{
System.out.println("This is method of class One");
}
}

class Two extends One
{
void methodTwo()
{
System.out.println("This is method of class Two ");
}
}
class Three extends Two
{
void methodThree()
{
System.out.println("This is method of class Three");
}

public static void main(String args[])
{
Three t=new Three();
t. methodOne();
t.methodTwo();
t.methodThree();
}
}

O/P:
This is method of class One
This is method of class Two
This is method of class Three.

5.what is Hierarchical Inheritance?

Ans:if One class is extended by many classes.then it is called Hierarchical Inheritance.

6.what is Hybrid Inheritance ?

Ans: Hybrid inheritance is a combination of Single and Multipleinheritance.

7. What is Multiple inheritance and does java support multiple inheritance?

Ans) If a child class acquire the property from multiple classes then it is known as multiple inheritance. Java does not allow to extend multiple classes(multiple inheritance) To overcome this problem java introduces  Interfaces.

8. Why java doesn't support multiple Inheritance ?

Ans-Multiple inheritance leads to ambiguity and confusion in java so java does not support the  multiple Inheritance.
class One
{
void methodOne
{
System.out.print("In class One");
}
}

class Two
{
void methodOne
{
System.out.print("In class B");
}
}

class C extends A,B(if multiple inheritance supported)
//Now which method will be consider in class C from the above Two class A and B,so it leads to ambiguity and confusion. That’s why java doesn't support multiple Inheritance

9.Can a class extend itself.?


Ans-No.

10. How to implement multiple inheritance in java?


Ans:We can implement multiple inheritance through “interfaces” in java,In Java a class can not extend more than one classes, but a class can implement more than one interfaces.
Example:
interface Stallion // Adult Male horse
{
Float HT=6.8f;
void height();
}

interface Dam //Adult Female horse
{
Float HT=5.2f;
void height();
}

class Colt implements Stallion,Dam  // Colt Young male horse
{
public void height()
{
float ht=(Colt.HT+Filly.HT)/2;
System.out.print("Height of Colt is :"+ht);
}
}
class MultipleInheritance
{
public static void main(String args[])
{
Colt ch=new Colt ();
ch.height();
}
}
O/P: Height of Colt is :6.0

To know more about interface Please click here







Read more ...

Monday 15 December 2014

Java opening at Software Data (India) Ltd.

Company Name:Software Data India

Company Details: Software Data India is a total IT Solutions and services provider. It was uniquely positioned to provide comprehensive end-to-end services in multiple technology areas. Offers services such as Custom solution Development, E-Learning, Test and Quality Assurance and Delivery models.

Software Data India is hiring experienced candidates to work as Java/ J2EE Developer in Delhi/ NCR. Graduate, Post Graduate, Doctorate candidates are eligible.
Job summary:

Experience: 2-5 years
Education: UG – Any Graduate – Any Specialization, Graduation Not Required, PG – Any Postgraduate – Any Specialization, Post Graduation Not Required, Doctorate – Any Doctorate – Any Specialization, Doctorate Not Required
Location: Delhi/ NCR
Industry: IT Software, Software Services
Role: Software Developer
Key skills: Spring, Hibernate, Core Java, Struts, J2EE, Web Services, SOA architecture
Job description:

Candidate familiar with SOA architecture, implementation of Web Service, knowledge in Java, J2EE, Spring, Struts, Hibernate.

Click here to apply

For more Java Jobs Click here





Read more ...

Java opening at Infinite Computer Solutions India Pvt Ltd

Comapany Name: Infinite Computer Solutions India Pvt Ltd

Job Description:
Should be strong in core Java, Design patterns. Should be strong multithreading. Must have good designing skills. Should be strong XML, XPATH, XSLT, JSON. Should have fair knowledge of webservices SOAP and REST. Should be strong in JQuery , Javascript. Should be strong with Database concepts. Should be Strong in Hibernate, Spring (security, mvc, batch). Should be Strong in Maven and must be familiar with continuous integration. Should be strong in DB concepts Oracle/MySQL. Should be strong in Servlets, JSP tiles.

Job Summary:

Experience: 3 - 5 Years
Job Type: Junior Level
Location: Gurgaon,Noida
Salary: INR 2,00,000 - 6,50,000 P.A
Education: Any UG Or Any PG
Functional Area: IT software - Application Programming / Maintenance
Industry Type: IT-Software/Software Services

Skills Required

Jsp, Hibernate, Maven, Core Java, Spring, Servlets, Rest, Tiles, Oracle, Soap, XML, XPATH, JSON, Jquery, javascript

Please send resume to below mentioned id

Contact PersonSurbhi
Email id:surbhi.bhardwaj@infinite.com
Contact No:0124330185

Read more ...

Sunday 14 December 2014

List of Top 20 Free Mobile Software Download Sites


Now a days everyone wants his Cell phone with updated versions of software for different purpose and functionality.Though he may having the laptop or desktop at home,because of  the portability features of mobile he just wants to have all the new and updated versions of software product in his cell phone where he can fulfil his primary mobile related task.This site contains the list of Top Free Mobile Software Download Sites in the World.Here you can download all the updated mobile software for your Mobile Phone. You can download lots of mobile themes, Games, Ring tones, Screen savers, Wallpapers, Songs, Video, & More for Motorola, Htc, Sony Ericsson, Samsung, LG and all other Cell phones. You will get Fast, Easy ,Free of cost, and Secure downloads of all Softwares with updated version. All products with explanations of its features also.

Advice before Download: 

While going for download mobile software,please make sure that the product offered by the genuine companies. Fake Software products may contain malicious viruses which may damage your mobile phones or valuable data of your phone. Before installing the product please read about the product the instructions,then do proper verify about ownership and trademark details.

List of Best and Free Cell Phone Software Download Sites:


Read more ...

Java opening at ALZA

Company Name:ALZA (alza.co.in)

Company Profile:
Offshore Development Center in India
At ATL (India) we realise that it is important that every project is managed holistically and with strong interdependence on technical, creative and marketing experts working on it. ATL also believes that having set process makes this task smooth and more conceivable.

Job Description :


Multiple openings for Java programmers and Android App development.
Stipend will be decided on candidate's performance.
Positive performance may lead to full time job opportunity.

Required Skills :
1) Basic Programming Skills
2) Good logical reasoning and problem solving ability.

Qualification : MCS, MCA, BE


Contact Details:

Email Id: careers@alza.co.in
Contact No: 08888850739

Click here to Apply

For More Java openings Click here


Read more ...

Java Opening at Biz4Solutions Pvt Ltd,Pune

Company Name: Biz4Solutions Pvt Ltd


Company Profile:Biz4Solutions is a company that works in a flexible environment for software development process, adjusting as per our clients' requirements. Quality work is a prerequisite for every task we undertake, as we consider that "every day counts". Our leadership team has worked with top tier IT service companies in various capacities architecting and developing large scale applications. Extremely hands on leadership team with expertise in all aspects of software design, development and project execution.

Our team of architects and designers personally work with clients to ensure projects are completed on time and within budget with a keen passion to ensure client satisfaction. Our project managers work with teams of highly skilled Mobile programmers, J2EE developers, CMS experts, graphics specialists and website developers who have passion for creativity. We help our customers to gain leaps and bounds in their business growth and value through our attitude and solutions.

Job Position : Software Developer


Job Category : IT | Software


Job Location : Pune, Maharashtra


Salary: INR 2,00,000 - 3,50,000 P.A


Joining : ASAP


Desired Education : BCA / B.Sc / B.Tech with above 70% in 10th, 12th and Graduation


Desired Experience : 0 to 1 Years


Key Skills : JAVA, J2EE, Spring

Job Description :


Responsible for Requirement Analysis, Design Support, Programming, Unit Testing, Documentation, and Code Reviews


Desired Skills :


Should be a technical graduate i.e. BCA / B.Sc / B.Tech with above 70% in 10th, 12th and Graduation.
Should be able to write code for a given program.
Must have good command on English language.
Excellent communication skills.
Can join ASAP.

Click here to Apply


Read more ...
Designed By Blogger Templates