You’ll learn the Level of OOPs Concepts you should gain that separate you from the crowd and make your interview impressive, Is this level expected from a fresher, and How you can achieve it. Even better – it takes little to no time to achieve it. When I taught this level of skills to freshers, […]
Arraylist Of Objects In Java
Arraylist of objects in Java with simple code example: Learn how to store user defined objects into an ArrayList. Here is the declaration of the ArrayList will be used to store objects of the Book class. ArrayList<Book> list = new ArrayList<Book>(); In the angle bracket, notice the class name Book. It’s similar to the array […]
Sum of elements in an array in Java
Sum of elements in an array in Java with Logic and code example. Consider an integer array as an example, int[] x = { 6, 7, 2 }; //Sum of all elements of the array is 15. LOGIC: Simply retrieve each elements of the integer array by traversing the array using a for loop till […]
Freshers FAQ And Study Resources for IT Jobs Preparation
Fresher’s FAQs during Job hunt: Many fresh candidates get questions and doubts during IT job hunt. You’ll find the questions and answers for clarifications here. Fresher’s FAQs during IT job hunt Object Oriented Programming Object-Oriented Programming book: OOP Concepts Booster This book will give you deep knowledge about OOPs concepts in shortest time possible. SQL […]
SQL Database Topics for Freshers IT Job Preparation
Here is the SQL database fine blended topics list for freshers that must be prepared for your first IT Job interviews preparation. This list is taken from the book “IT Jobs Made Easy For Freshers” by Rakesh Singh. SQL TOPICS: Database: create, drop Table: Create, drop, insert, update, select, delete, alias, re-name and truncate. Constraints: […]
Freshers FAQ during IT jobs hunt
Fresher’s FAQs: Many fresh candidates get questions and doubts during IT job hunt. Here you’ll find the questions and answers for clarifications: Q) Can a fresher negotiate salary? Answer: At the fresher level most, companies follow their standard and does not go for negotiation. But, Yes, a fresher can negotiate salary with some supportive reasons. […]
IT Jobs Made Easy for Freshers – Get Hired Easily with Experimented tips and Strategies
Want to beat your Competitors and get your IT JOB Offer EASILY On-Campus or Off-Campus? Learn what recruiters look for, build your resume that engage them , learn written and technical subjects strategies for faster interview preparation, Activities to do in interviews, after interviews and much more. 50+ experimented tips and guidelines that make you […]
Fine Grained List of Coding Questions
This is the fine-grained list of coding problems to jump start with the coding questions and get confidence in writing algorithms and learning data structures and algorithms. As per experience, the right way to learn data structures and algorithms is through solving a coding problem. Start solving the coding problems and learn the data structure […]
How to achieve abstraction in C# -oops
Learn how to provide necessary information to the users and hide the unnecessary details using C# programs. The concept of “providing necessary details to the clients/users and hiding the unnecessary details” is called Abstraction. As an example consider a login page where username and password is enough for the users. so, only username and password […]
What is Encapsulation in C# – Best Answer
Answer includes concept of encapsulation in C# oops with various C# encapsulation examples with programs. Answer:Encapsulation in C# is one of the oops principles that is used for hiding complexities in programs. NOTE: Many candidates answer to this interview question “What is encapsulation in C#” like wrapping the class member fields into a method as […]