Article Categories
- All Categories
-
Data Structure
-
Networking
-
RDBMS
-
Operating System
-
Java
-
MS Excel
-
iOS
-
HTML
-
CSS
-
Android
-
Python
-
C Programming
-
C++
-
C#
-
MongoDB
-
MySQL
-
Javascript
-
PHP
-
Economics & Finance
Articles on Trending Technologies
Technical articles with clear explanations and examples
State the difference between NSE and BSE.
The major differences between National Stock Exchange (NSE) and Bombay Stock Exchange (BSE) are as follows −NSENational Stock Exchange was founded in 1992.Its vision is “Continue to be a leader, establish a global presence, facilitate the financial well-being of people”.It is largest stock exchange in India.It is 11th largest stock exchange in the world.It facilities trading equity, equity derivatives, debt and currency derivatives segmentsbenchmark index is nifty.It is also called as The Largest Stock Exchange.The number of companies in this index are 50.More than 5000 companies are listed in NSE.It has high trading volume.BSEBombay Stock Exchange was founded in 1875.Its ...
Read MoreState the difference between NBFC and Bank.
The major differences between NBFC and Bank are as follows −NBFCProvides banking services without holding banking license.Incorporated under companies Act 1956.Demand deposits are not accepted.100% foreign investments are accepted.Maintenance of reserve ratio are not compulsory.No deposit insurance facility is available.They don’t create credit creation.No transaction services are provided.BankIt is an authorised financial intermediary to provide banking services.Incorporated under banking regulation Act 1949.Demand deposits are accepted.Allows up to 74% for foreign investments in private sector.Maintenance of reserve ratio is compulsory.Deposit insurance facility is available.Banks create credit creation.Transaction services are provided.
Read MoreFind index i such that prefix of S1 and suffix of S2 till i form a palindrome when concatenated in C++
ConceptWith respect of given two strings S1 and S2 of equal lengths, our task is to determine an index i such that S1[0…i] and S2[i+1…n-1] give a palindrome when concatenated together. Ithas been seen that if it is not possible to determine such an index then print -1.InputS1 = “pqrsu”, S2 = “wxyqp”Output1S1[0..1] = “pq”, S2[2..n-1] = “ypq”S1 + S2 = “pqyqp” indicates is a palindrome.InputS1 = “pqrst”, S2 = “qprqz”Output-1MethodAt first, we iterate from 0 to n (length of the string) and copy ith character from S1 to another string (assume it is S).After that we take another temporary ...
Read MoreHow to use –Timeout parameter in Restart-Computer cmdlet in PowerShell?
As the name describes, with –Timeout parameter, you can restrict time for validations (PowerShell, WinRM, and WMI connectivity check after reboot) for –Wait and –For parameters and if the checks don’t complete during that time then it returns an error. This timeout value is in seconds. You can specify this parameter with either –Wait or –For parameter but with –For parameter you need to include –Wait parameter as well.When -Timeout is specified with –Wait parameter, the overall checks (3 validations: PowerShell, WMI, and WINRM connectivity) then overall check time is restricted in seconds and when it is used with –For ...
Read MoreHow to use -For parameter in Restart-Computer cmdlet in PowerShell?
In the –Wait parameter 3 main checks are validated − PowerShell, WMI, and WINRM connectivity. So whenever you specify the –Wait parameter, you have to wait until all three checks pass, however, if any of the checks fail then script freezes and can not further execute. If you know which specific check you want to perform then you can specify that value with the –For parameter as shown below.Here, for the example, we will run a single WMI check for the remote server.Restart-Computer Test1-Win2k12 -Wait -For Wmi -Force-For parameter must be used with –Wait parameter. Here, again if something goes ...
Read MoreHow to restart a remote system using PowerShell?
To restart the remote computer, you need to use the Restart-Computer command provided by the computer name. For example, Restart-Computer -ComputerName Test1-Win2k12The above command will restart computer Test1-Win2k12 automatically and if you have multiple remote computers to restart then you can provide multiple computers separated with comma (, ).For example, Restart-Computer -ComputerName Test1-Win2k12, Test2-Win2k12Restart signal will be sent to both the computers at a time in the above example.You can also use the Pipeline to restart remote computers. For example, "Test1-Win2k12", "Test2-Win2k12" | Restart-Computer -VerboseOR(Get-Content C:\Servers.txt) | Restart-Computer -Verbose Few servers have dependencies on the other servers so main servers ...
Read MoreDifference between book value and market value.
The major differences between book value and market value are as follows −Book valueReal value of an asset.Reflects firm’s equity.Not related to financial market.Depreciation is taken into account.Book value = (assets – liabilities)/ number of outstanding shares.Book value = cost of asset – (depreciation + amortization).Frequency of fluctuations happens at periodic intervals.Accounted in balance sheet based on historical cost, amortized value or fair value.Market valueMaximum value of an asset/security which can be bought/sold in the market.Reflects current market price.Market value is dependent on financial market.In most cases, depreciation is not accountable.Market value = market price per share * number of ...
Read MoreCompare equity and commodity.
The major differences between equity and commodity are as follows −EquityCommodityInvestment/capital invested in a firm/entity to acquire ownership.Known as shareholder.Have ownership of that particular firm.Less volatile.Long term investments.Less risk compared to commodity trading.They get dividends.Better liquidity.Very few regulations, free market.Don’t need margin.Risk is not diversified.Do not have lot size.Traded on stock exchanges.long duration.Infosys, reliance etc.Refers to undifferentiated product on which traders can invest.Known as an option holder.No privileges are available.Highly volatile.Highly risky.Not eligible for dividends.Low liquidity compared to equity.Supervised by SEBI, derivative market.High margins required.Risk is diversified.Traded in lot size.Short term trades.Traded on commodity exchanges.They have time frame because they ...
Read MoreDifferentiate between investing and trading.
The major differences between investing and trading are as follows −InvestingCreates wealth over a long period of time.Buying and holding.Market fluctuations has no effect.Add on benefits − bonus, dividends etc.Fundamental indicators are EPS, price to earnings, current ratio etc.Long term period.Creates wealth by compound interest and dividends.Low risk.Industry, economics, financials, competitors etc. will be affected.Very few brokerage charges.Makes sound investments.TradingGenerates profit frequently.Buying and selling of stocks.Daily market fluctuations will effect.No add on benefits.Technical indicators: moving averages, stochastic oscillators etc.Short term period.High risk.Psychology of market, money management, risk rewards etc. will be affected.Have brokerage charges.Requires active environment.
Read MoreCompare stock market and commodity market.
The major differences between stock market and commodity market are as follows −Stock marketHave same security in same grades.All securities have same face value and characteristics.Doesn’t deteriorate over a period of time.Derive its value from an underlying asset.Supply is fixed.Commodity marketHave several grades/varieties of products/commodity.Grade may vary from other lots in same grade.Greater implications for buyers and sellers.Has basic role in future market.Supply is not fixed.
Read More