Monthly Archives: November 2020

Penetration Testing Overview

Penetration testing is used to detect vulnerabilities present in the system in order to protect the sensitive data from the attackers who try to exploit the vulnerabilities present in the system. It basically determines the weak areas for any intruder to attack. This is required majorly when updating the system or adding new network infrastructure. Continue Reading »

JMeter-Performance Testing

Apache JMeter is a tool that can be used for load testing to analyse and measure the performance of web applications, mobile applications, HTTP requests, web services, database etc. JMeter simulates the number of users to send requests to the target server and records the stats in various available formats to analyse the performance. Simply Continue Reading »

Swift Memory Safety

  Memory Safety in Swift  Swift monitors risky behaviour that may occur in the code. For example, Swift ensures that variables are introduced before they’re utilized, likewise, memory isn’t accessed once its deallocated, and array indices are checked for out-of-bounds errors. Swift additionally guarantees that multiple access to a similar region of memory doesn’t conflict, Continue Reading »

Smoke VS Sanity

Smoke Testing: Whenever a new feature comes into the picture, we perform Smoke Testing to make sure all basic and critical feature is not affected by present code changes and application is working fine. Smoke testing is also known as Build verification Testing and Confidence testing, where we provide acceptance of build with no blocker Continue Reading »

Carousel in React Native

Image Carousel also popularly known as Slider components are one of the most appealing parts of the mobile applications and is used extensively. We can get it through various libraries that provide the slider functionality but today we will be focusing on the custom slider.  We can achieve it using ScrollView but Here we will learn how Continue Reading »

Performance testing challenges and How to overcome them

What is performance testing? In software development lifecycle (SDLC), software testing plays an important role along with software development. We have various types of testing in which Performance testing is one of the most important types of testing which ensures that our software performs stably under varying load conditions. Performance testing belongs to the non-functional Continue Reading »