Posts

Showing posts with the label interview

Eclipse Shortcuts Key - Tutorial

Using shortcuts make a developer more productive. Eclipse provides keyboard shortcuts for the most common actions. Using shortcuts is usually preferable as you can perform actions much faster. Eclipse supports of course the typical shortcuts, e.g. Ctrl+S for saving, Ctrl+C for copying the selected text or file and Ctrl+V for pasting the element currently in the clipboard. Click here to view tutorial

Best Website List For Java Programming Exercises, Practice, Solution

1) All Topics including lots of programming exercise with it's code solution https://www.w3resource.com/java-exercises/ 2) Programming exercise with solution and discussion with developer https://www.hackerrank.com/domains/java/java-introduction 3) Interview Programs (beginner to advanced) in java http://www.javamadesoeasy.com/p/interview-programs-beginner-to-advanced.html 4) Best interview programming list with its solution http://javaconceptoftheday.com/java-interview-programs-with-solutions/

10 Frequently asked SQL Query Interview Questions

In this article, I am giving some examples of SQL queries which is frequently asked when you go for a programming interview, having one or two year experience on this field. Whether you go for Java developer position, QA, BA, supports professional, project manager or any other technical position, may interviewer expect you to answer basic questions from Database and SQL. It's also obvious that if you are working from one or two years on any project there is good chance that you come across to handle database, writing SQL queries to insert, update, delete and select records. One simple but effective way to check candidate's SQL skill is by asking these types of simple query. They are are neither very complex nor very big, but yet they cover all key concept a programmer should know about SQL.  >>  Click Here to view SQL query example

Top 20 Common HR Interview Questions And Answers

1. Tell me about yourself. This is probably the most asked question in a interview. It breaks the ice and gets you to talk about something you should be fairly comfortable with. Have something prepared that doesn't sound rehearsed. It's not about you telling your life story and quite frankly, the interviewer just isn't interested. Unless asked to do so, stick to your education, career and current situation. Work through it chronologically from the furthest back to the present. 2. Why are you looking for another job (or why did you leave your previous job)? On the surface, this appears to be a simple question, yet it is easy to slip. I would suggest not mentioning money at this stage as you may come across as totally mercenary. If you are currently employed, you can say it's about developing your career and yourself as an individual. If you are in the unfortunate position of having been downsized, stay positive and keep it brief. If you were fired, you should...

Important website list for Interview preparation.

The following website provide thousand's of MCQ as well as descriptive type question for all  the student who are currently doing interview preparation. So visit the below website and go  forward in your preparation. 1)  www.sanfoundry.com 2)  www.cquestion.com 3)  www.indiabix.com 4)  www.careerride.com 5)  www.interview-made-easy.com 6)  www.techfaq360.com 7)  www.examveda.com

Frequently asked program definition in interview.

Hello friends following is the definition of important program which are frequently asked in most interview. 1)  Write a program to swap two numbers without using a third variable. 2) Write a program to swap two numbers using bit-wise operators. 3)  Write a program to check whether the given number is a prime. 4)  Write a program to check whether the given number is a palindrome c number. 5) Write a program to check whether the given string is a palindrome. 6) Write a program to generate the Fibonacci series.   7) Write a program to print"Hello World"without using semicolon anywhere in the code. 8) Write a program to print a semicolon without using a semicolon anywhere in the code. 9) Write a program to compare two strings without using strcmp() function. 10) Write a program to concatenat two strings without using strcat() function. 11) Write a program to reverse a string. 12) Write a program to find the GCD of two numbers. 13) Write...

Important OOPS Interview Question

Q-1 What is meant by Object Oriented Programming?         OOP is a method of programming in which programs are organized as cooperative        collections of  objects. Each object is an instance of a class and each class belong to        a hierarchy. Q-2 What is an Instance?        An instance has state, behavior and identity. The structure and behavior of similar        classes are defined in their common class. An instance is also called as an object.  Q-3 What is a Class?       Class is a template for a set of objects that share a common structure and a common behavior.  Q-4 What are the core OOP’s concepts?      Abstraction, Encapsulation, Inheritance and Polymorphism are the core OOP’s concepts. Q-5 What is a base class?      Base class is the most generalized class...