top of page
All Blogs
Search


Docker for Curious Minds - Your first step, Part 1
What is Docker? ----- Docker is an open-source tool that allows you to pack the code, dependencies, and environment of your application...
subashini
Jul 174 min read


Excel Reader and Data Provider (How to read all data from excel sheet and How to implement data provider in testNG using Excel)
Hello everyone, I would like to share my knowledge on how to perform data driven testing using excel reader, access data from data...
Bhoomi Chakrani
Jun 183 min read


OOPs concepts in JAVA
OOPs stands for Object Oriented Programming . Java is a popular programming language designed to be platform independent , meaning its...
Sheetal Pangare
May 14 min read
Exploring Java 8 Streams and Parallel Streams
Java 8 introduced the Stream API , revolutionizing how we process data in Java. Streams allow developers to perform functional-style...
Ramya Prakash
Feb 213 min read


TestNG Project Setup in Visual Studio Code Part-1
TestNG (Test Next Generation) is a testing framework inspired by JUnit and NUnit with its own functionalities and categories of tests...
pavithrasenthurai
Dec 15, 20245 min read


Time Complexity in java coding - Big O
Big O is a way of measuring how efficient your code is. There are two ways we measure the complexity of a code: Time and Space. Time...
pooja dandir
Dec 14, 20246 min read


Java Basics(Introduction ,Variable ,Data types)
Java· Basics and introduction to java and few basic concepts(Variable and datatype)
pavithrasubburaj
Dec 11, 20246 min read


CONCURRENT HASHMAP FOR MULTI-THREADED ENVIRONEMENT
Why do we need concurrent hashmap when hashmap and hashtable are there already? All the three collection classes have a significant...
Gayathri
Sep 6, 20244 min read


Understanding Reference Types in Java: String, Wrapper Classes, and Date/Time
What is Reference Types? Any class that you create is called Reference Types, it is the memory locations where objects or arrays are...
Saranya Shanmugam
Sep 5, 20248 min read


EXPLORING HASHMAP METHODS
In my previous blog introduced the hashmap and explained how it works internally with the get() and put() methods. This blog will...
Gayathri
Sep 5, 20247 min read
Access Modifiers in Java
Introduction: Java access modifiers are fundamental to object oriented programing, it provides various levels of encapsulation by...
haritha1206nambu
Sep 4, 20244 min read


HASHMAP IN JAVA & HOW IT WORKS INTERNALLY
Hashmap is one of the popular classes in Java, and it is a hashtable-based implementation of the Map interface. Â What does it mean that...
Gayathri
Sep 2, 20247 min read


A Beginner's Guide to Using Tesseract for Accurate OCR Results
Use Case - Read company name as displayed in the login logo screen from LMS UI application. In UI functional testing we try to cover all...
Balbir Kaur
May 17, 20244 min read


How to Debug a Java Program: A Beginner's Guide
Debugging in everyday life People debug and troubleshoot all the time. For example, when their babies cry, they check whether baby is...
pooja dandir
May 17, 20246 min read


Paging Through the Web: Basic and Advanced Selenium Techniques in Java for Handling Pagination in Various Scenarios-Part 2
Hope you have found the part 1Â of this blog informative. This blog is the continuation of my previous blog, where we talked about what is...
Priyanka Nigam
Feb 13, 20244 min read


Paging Through the Web: Basic and Advanced Selenium Techniques in Java for Handling Pagination in Various Scenarios-Part 1
We have often come across scenarios where it took longer times to load a certain page displaying huge datasets, when the need is to view...
Priyanka Nigam
Feb 11, 20244 min read


Python Magic: Lambda, Map, Filter, Reduce, Decoded in Minutes!
Introduction: Lambda, Map, Filter, and Reduce functions in Python streamline code, enhancing readability and efficiency. Explore their...
Sudisha
Jan 13, 20244 min read


How to read Properties File in Java
This is my first blog and is all about How to read configuration data from properties file in Java. This can be in BDD cucumber framework...
gayathhriv
Sep 26, 20235 min read
String comparison in Java
Introduction: Strings, which are widely used in Java programming, are a sequence of characters.They are versatile and important, often...
Kaviya Ramalingam
Sep 19, 20233 min read


Git Branching Strategies
Git is the most popular version control tool that gives software developers power to track, manage, organize and share their code. Git is...
Twinkle Jain
Jul 20, 20234 min read
bottom of page