Skip to main content

Posts

Investing in Share Market

What is Investing in the share market?           Share market is a platform in which common people can able to buy any listed company shares or be a part of that company. When the company grows either they will give their shareholders dividend or based on their performance share price will rise. If you buy a stock at 100 RS and in 1-year share price move up to 115 RS and they gave a dividend of RS 2. Means your money is grown 15% as share price growth and 2% as dividend total of 17%. This is higher than the inflation rate of the money . What is the risk in the share market?           Share market is not only for common men. There are many top players like Foreign investors, Domestic Investors, some big market players, and finally Retail investors. When a pandemic like a corona or any other bad news hits, these big investors take their money back from the market and will put those big number of shares in the market and make it ...

Steps to Invest in Share Market

These steps are my experience from India. Requirements to Invest in Share Market PAN Card - Used to create a Demat and trading account. Demat account - used to store electronic shares  Trading account - Used to buy and sell shares Demat account and Trading account opening steps are explained in this article and PAN card needs to be available for the investors. If you don't have PAN, apply for that and proceed below process. Check PAN card application details here Step 1 - Selecting Stock Broker          In India, most people are using these 3 brokers to do investment and trading(Zerodha, Upstox, 5 Paisa). All discount brokers will activate the account within 2 days(This includes verification time). You can have more than 1 Demat account but first, you need to select which broker will be suites you. Consider below points Demat account opening charge is free for all 3 brokers Trading account opening fee is 200 Rs in Zerodha and it is free in 5 Paisa and Up...

What is Share Market

What is a share?          A share is nothing but a company's ownership. In every business, they need some money for their business expansion. So they will give some percentage of share to the public and get the money for their expansion. These shares are distributed to the public through Initial Public Offering(IPO). We will discuss this later.  What is Stock Exchange?          This is where the buying and selling of shares will occur. Once the shares are distributed to the people some people will try to sell that share to another person, some will try to buy those shares from the shareholders. So this stock exchange acts as a medium to do this action. In India, there are 2 exchanges(Bombay Stock Exchange(BSE) and National Stock Exchange(NSE)) Why share price changes?          There are a lot of people who will do buy and sell in the share market. The share price will get fluctuates based on these buy and se...

Why the price is increasing for all goods? What are Supply and demand?

 To understand this concept imagine a scenario for Farmer John.           John is cultivating 100 bags of rice every 3 months means he can supply 100 bags of rice every 3 months. His customers need 90 bags in the first cultivation means demand is equal to supply. So John will sell rice bags for 100 RS per bag(Assume)           On the second cultivation, John can able to deliver only 100 bags but one new customer is demanding 50 bags. So he needs to supply 140 bags. Here the demand is high and supply is very low. So John thinks about how to tackle this situation and he needs to satisfy his customer.           He plans to supply 50% of their customer needs for 100 RS per bag as like previous cultivation. Now he supplied 70 bags to the customers. Still, 20 bags are in his warehouse. He planned to give those 20 bags to the customer who gave the highest price. The last customer bought those 20 bags...

Basics of Money

  What is Money?           Money is a thing which is used to get our required goods and services.  In simple words, a piece of paper used as a medium of exchange.  It is important in everyone's life and its value will be decided by the Government or some top government banks. It plays a key role in every type of situation society will judge the status with money.           I am not saying live only for earning money don't take it in another manner. I am saying to fulfill our dreams and needs we need money.           In the olden days, only goods act as a medium for goods transfer. If one person is cultivating rice, he will exchange his rice for another person with wheat of some other material. There arises a problem some foods will grow in a specific period and some materials required more time to manufacture.           To overcome this issue gold is use...

Java Program to Reverse a String

There are 2 ways to reverse a string  String reversal without using function String reversal with function String reversal without using function package stringReversal; import java.util.Scanner; public class StringReversal { int stringLength; static String stringToReverse; String reversedString=""; public String stringReverse(String name) { stringLength = name.length(); for(int i=stringLength-1; i>=0;i--) { reversedString+=name.charAt(i); } return reversedString; } public static void main(String[] args) { StringReversal stringReversal = new StringReversal(); Scanner scanner = new Scanner(System.in); System.out.print("Enter the string to reverse :"); stringToReverse = scanner.nextLine(); System.out.println("Reversed String is :" +stringReversal.stringReverse(stringToReverse)); } } Output Enter the string to reverse :Make the string reversed Reversed String is :desrever gnirts eht ekaM String ...

Java Program to Add Two Numbers

Let us see different modes of adding 2 numbers. Below are the contents of this post write a java program to add two numbers with predefined values write a java program to add two numbers with user-entered values write a java program to add 2 numbers using function For in-depth knowledge about the below programs check below topics Java Identifiers Java Modifiers Data Types Write a java program to add two numbers with predefined values package addNumbers; public class SumOfTwoNumbersWithPredefinedValues { public static void main(String[] args) { int sumNumber1=25; int sumNumber2=13; System.out.println("Sum of two numbers is :" +(sumNumber1+sumNumber2)); } } Output Sum of two numbers is :38 Write a java program to add two numbers with user-entered values package addNumbers; import java.util.Scanner; public class SumOfTwoNumbersWithUserDefinedValues { public static void main(String[] args) { int sumNumber1; int sumNumber2; Scanner scann...

How to get performance monitor data in different formats

      After creating the data collector set in the performance monitor we need to get the report to analyze it further. There are 4 types of formats available in performance monitor to record the data. Types are as below Comma Separated Tab Separated SQL Binary How to change data format for the data collector set By default, all new data collector set will record data of type binary. Means graph. There are 2 ways to get the data in other formats.  Can convert the recorded data to another format Can make perfmon to record data with a defined format How to convert data of one format to another in perfmon Create a data collector set. Already covered in this article Start the data collector set After doing some action stop the data collector set Logfile location will be set while creating the data collector set. Navigate to that folder You will find the perfmon data file. Double click on that file The graph will open. Right-click on the graph and select save data as Stor...

How to save data collector set in perfmon. How to import data collector template to another computer

 In the previous article, we have seen what is performance testing and performance testing using a performance monitor . We have already seen how to create a user-defined data collector in this article. Here let us see how to export data collector template from one computer and import them to another computer. The template is nothing but the XML file that contains data about the data collector that is created in one computer.  How to export data collector template Step 1: Go to CTRL+R -> Perfmon Step 2: Right-click on the collector you want to save. Then click Save Template Step 3: Select location  How to import saved template to another computer Step 1:  Go to  CTRL+R -> Perfmon Step 2:  Right-click on the User Defined -> New -> Data Collector Set Step 3: Select Create from a template(Recommended) Step 4: Click Next Step 5: Select Basic and click Next Step 6: Click next and set location  Step 7: Click Finish Possible Issues While Importi...

What is Performance Testing, Is it possible to do performance testing for desktop application

What is Performance Testing     It is one of the testing processes that is used to determine whether the server in which the application got hosted is healthy in terms of handling the expected load and expected speed. When we talk about the web application when the user clicks on anything in the application a call will be made to the server and the server will send the requested details to the user. So it is required to check the server speed and its capability of handling load in various intervals. Why Performance testing is important     Server health is very important in all types of applications because the final output of every business is to satisfy the customer. Even the front end of the application looks impressive users will expect speed of delivering their requested data. Many retail companies like Amazon will offer a sale for a period of time and on that time server needs to handle a large amount of load. So there is a need to analyze the speed, scalabilit...

How to link a bank account to Google pay and How to transfer money using Google pay

 Google pay is used to transfer money from one another. This was created by Google and this makes a good and easy interface to transfer money to others. You can transfer money to other Google pay users or can directly send money to the bank account of others. Prerequisite You need a bank account linked with a phone number How to download Google pay     It is available in the play store and AppStore you can download it from there. How to link a bank account to Google pay Once the app gets installed open the Google pay app It will ask the mobile number that is linked to your bank account. Enter that mobile number Once the UPI ID gets generated, it will ask you to set a UPI pin. Enter your convenient pin number Once you enter the pin number your bank account now connected with google pay To recheck the bank account again click on the top right corner, In the profile page bank account will get listed This process is the same for all other platforms like PhonePe and all How to...

How to start a blog and How to promote your blog

What is blogging     This platform is used to post all kinds of information on the internet. The information can be of any kind of interest.  Your interest can be helpful for other readers on the Internet. Nearly 50% of the world population is using the Internet and different people are searching for different articles and your article may helpful for any other readers.  How blogging help you financially     When someone putting effort into anything they will expect some financial return from it. Blogging offers you some income with it.     There are multiple ways to earn using blogging below are some ways Displaying advertisements - There are many advertising networks that work as a mediator between advertisers and publishers. Once your site got approved you can display their advertisements and earn using that Affiliate links -  Most top companies offer affiliate links. The affiliate link is nothing but you are promoting their...

Keyword Driven Framework Introduction - Part 1

Before starting this topic check the below articles once Automation using Selenium Java First script using Java Types of Automation Framework     Keyword Driven Framework is one of the automation framework types. In this type keywords specific to the function are saved in a separate file and test data is isolated. Tester's work is to map the keyword functions as per the required scripts. Other names for this framework are Table driven or Action Based testing. The necessity for this Framework     TDD is a good framework when compared to other previous frameworks. But that requires a tester with more programming knowledge. I am not saying Keyword Driven framework doesn't need programming knowledge. But it provides manual scripters to map the automation scripts to their test cases. For example, Navigating to the site is the essential thing. To perform this action automation tester will write a background script. To use this script manual tester will enter some keyword...

Time Travel

What is Time?     Time is a thing by which all the calculations were done in this world. This time is calculated using earth rotation. It is an irreversible thing we can't able to get the lost 1 second. Based on this time, everyone's life is described as past, present, and future. With the presence of the sun, day and night get calculated. This is on Earth with gravity. Time will differ with respect to gravity. The higher the gravity slower the time. What is Time Travel?      It is one of the interesting myths (may or may not be a myth) around the world. In our life, we all think in some situations. We will think about our lives and think about what will happen if this situation has not happened in our past. Time travel is nothing but moving across time. In every second we are traveling to the future. So, all are time travelers. Lol. Time-traveling to the past had many myths and theories. Let us discuss some strange topics in time travel What happens to a per...

Selenium Framework[Test Data Driven Framework] - Framework Designing

Before starting your framework designing, Check below two topics Selenium Basics Read and Write in Excel using Apache POI Test Data Driven Framework     This type explains it's the definition in its name. The key idea in this framework is, test data in this framework will be managed by an external file. So, it will be helpful in changing the test data and can able to run the same test with multiple test data. This will help in reducing the number of scripts. By using Apache POI, we can able to read and write in the spreadsheet. Apache POI is used widely so I mentioned that other than this there are some more tools that provide methods to read and write in an excel spreadsheet.     For writing one or two test scripts, a basic package is necessary but when we try to build more test cases, it should be an easily understandable format. Different packages should be used to differentiate it's used in the framework. Package 1 - Excel file and methods to read and write excel...

Selenium Framework[Test Data Driven Framework] - Key methods in reading and writing Excel using POI

      Test data is very important in software automation. Because automation testers will be updating test data frequently. So, it must be handy for them. This type of framework provides the ability to store the test data in a separate file. Because of this testers can able to run scripts with multiple sets of test data. To access the external file java had some type of file reading libraries and we will use Apache POI in this tutorial. Before starting with framework designing check some basics about selenium Steps to download and configure Apache POI Navigate to this page  https://poi.apache.org/ Click download in the latest version of the JAR Download zip file in Binary Distribution Extract that in any location of your local In eclipse open new Java project Right-click on the project and navigate to the path Build Path -> Configure build path In the Libraries tab, click Add External Libraries Select all available jar files from the POI zip file Click Apply and c...

Types of Software Automation Frameworks

What is Software Automation Framework     While testing software there are many techniques to do the testing by manual. But when a project having multiple releases it's hard and time-consuming to perform all techniques manually. So to overcome this issue most of the repeated tasks are automated using a project feasible framework. Check this article to know more about Software Automation Why automation framework is required     Let us take an application name as A. This application had 5 releases. For the first release testers will do all required testing manually for that application. Then for the release 2 basic functionalities of the application will be the same and some new features may introduce. Rather than redoing the testing manually, all scenarios are automated and testers will just run the scripts.     In release 3, Some new feature is introduced and some basic functionality gets some changes. As the basic functionality got some changes some locato...