Whenever I face a group of fresh graduates for the first session of Software Testing, I come cross this question very often while imparting trainings that, “Why a developer should undergo the training for software testing?” This is an obvious thought especially for a person who is new in the industry and has a mindset set to be in Development. The fear of moving towards the other side of table scares them. On investigating about the source of this fear, we figure out that the institutes, colleges and universities are still teaching with the age-old curriculum and the mindset. They ... Read More
A resume can make or break your job prospects with a company. While a professionally made resume does help you present your skills the desired way to the hiring company, there are some common mistakes on the resume that the hiring managers identify and they can prove disastrous for your job prospects.Typo ErrorsSilly mistakes in typing, grammar, spellings, or errors in formatting can be suicidal for your career before it even starts. So, make sure that you proofread the resume before handing it over to the hiring managers, as they will spot these mistakes first.Lack of ClarityThe resume is crisp, ... Read More
In this article, we are going to look at some cursor settings and their behaviors. Currently, there are different kind of cursors as provided by any system that includes a pointer, hand, insert, wait, pointer-wait, and many others.With the help of this article, we would be able to configure the wait pointer when required. This pointer will prevent the user from clicking a button unnecessarily and stops any further execution of similar events until the previous event is completed.We can directly use the CSS property to display the cursor as waiting but since we need the dynamic impact on showing ... Read More
In this article, we will explore the essentials of a regular expression (RegEx) and how to compare other strings with this regex in JavaScript. We will learn how to identify a similar string with that of a regex and then subsequently return them. We can use the string.search() method to match the regular expression in a given string.Syntaxlet index = string.search(expression)Parametersstring − This is the string that will be searched in comparison with the expression.expression − This is the regular expression that will be used for checking with the original string.Example 1In the below example, we are going to compare ... Read More
It is quite common these days, to have the work outsourced to a third party vendor. Ask me why? Yes, one of the simple reason is that you won’t find the right talent all the time when you look at your internal staff – in the case of services. However, if your organization intends to buy products, then there is always the concept of make vs buy study which needs to be performed to get the cost effective benefit to the firm.Procuring the products or services is an art by itself. It takes a lot of analysis, research to finalize ... Read More
In this article, we are going to hide the password with ****. The password can be shown by toggling its visibility by using a button. We will be creating a JavaScript function that will display the hidden password when the toggle button is clicked.ApproachOn clicking the toggle button the JavaScript function to display the password will be rendered.This will change the CSS property applied on the HTML input tag that will display the password.We can toggle again to hide the password again.ExampleIn the below example, we are toggling the visibility of the password using the checkboxcheckbox. On clicking the checkbox ... Read More
The first and foremost step to initiate a project is to prepare the project charter. It is one of the most important documents of the project, and it is being used throughout the life of the project. Once it is prepared and approved by the project initiator or the project sponsor, the project actually kicks off. It is the moment when the project manager is formally authorized to start the project by using the organisational resources.A project charter is prepared by considering the SOW – the project statement of work, which is created by the customer or the sponsor, describing ... Read More
Technology is creating a significant impact on our lives. It is opening up opportunities for finding solutions for some of the world’s biggest challenges. Be it the new artificial intelligence technologies, immune engineering which can save the lives of cancer patients, gene editing creating sustainable methods in plants that can tolerate drought and grow resistance to disease, smart- phone applications which aid in navigation, the Tesla Autopilot, or a simple medical app which can store, analyze information and support in real-time, these emerging technologies and facilities such as WiFi are making the world more pervasive with computers and sensors. Companies ... Read More
An HD Ready TV consist of a TV that can display 720p images (1280 x 720 pixels). On the other hand, FullHD TVs are those capable of displaying 1080p (1920x1080 pixels) videos and you enjoy all lines of each frame of your video drawn on the screen. HD TV is enough if you are going to use it for the purpose of only watching HD cable TV; however, if you are a movie buff and love to enjoy movies in Blu-ray print or a gamer whose world revolves around PS3 and Xbox 360, then FulllHD TV should adorn your home.Why ... Read More
An Event is basically defined as an action or occurrence of an action that is recognized by the software. An Event can be triggered by any of the following: a user, a system, or a remote callback. Some of the popular events include pressing a button, hovering, clicking on hyperlinks, etc.In this article, we will be exploring some commonly used JavaScript events and learning how to handle these events and execute the required tasks. To handle events in HTML, we would need to add the function in the HTML tag that will be required to be executed in JavaScript when ... Read More