-
Notifications
You must be signed in to change notification settings - Fork 0
/
stock_market_terminology.ejs
1125 lines (1004 loc) · 40.7 KB
/
stock_market_terminology.ejs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<!-- viewport - the area of a web page that's visible to the user -->
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- adding external bootstrap5 CSS and External CSS3 links -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="./css/stock_market_terminology.css">
<title>ExpandUrWealth_Home_Page</title>
</head>
<body>
<!-- navbar -->
<nav class="navbar navbar-expand-lg navbar-dark bg-dark">
<div class="container-fluid">
<a class="navbar-brand" href="#"><i>ExpandUr</i>Wealth <i>School</i></a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav me-auto mb-2 mb-lg-0">
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button" data-bs-toggle="dropdown" aria-expanded="false">
Courses
</a>
<ul class="dropdown-menu" aria-labelledby="navbarDropdown">
<li><a class="dropdown-item" href="/fundamental_analysis">Fundamental and Industry Analysis</a></li>
<li><a class="dropdown-item" href="#">Technical Analysis</a></li>
<li><a class="dropdown-item" href="#">Macro & Micro Economics</a></li>
<li><a class="dropdown-item" href="#">Financial & Investing Psychology</a></li>
<li><a class="dropdown-item" href="#">Personal Finance</a></li>
<li><a class="dropdown-item" href="/stock_market_terminology">Stock Market Terminology</a></li>
<li><a class="dropdown-item" href="/mutual_fund_terminology">Mutual Fund Terminology</a></li>
</ul>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Instructors</a>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button" data-bs-toggle="dropdown" aria-expanded="false">
Support
</a>
<ul class="dropdown-menu" aria-labelledby="navbarDropdown">
<li><a class="dropdown-item" href="#">Support Team</a></li>
<li><a class="dropdown-item" href="#">Common Customer Queries</a></li>
</ul>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button" data-bs-toggle="dropdown" aria-expanded="false">
My Account
</a>
<ul class="dropdown-menu" aria-labelledby="navbarDropdown">
<li><a class="dropdown-item" href="#"><h5><%= name %></h5> Account Details ></li>
<a class="dropdown-item" href="#">Settings</a>
<div class="dropdown-divider"></div>
<li>
<form action="/logout?_method=DELETE" method="POST">
<button type="submit" class="dropdown-item">Logout</button>
</form>
</li>
</ul>
</li>
<li class="nav-item">
<a class="nav-link" href="#">My Courses</a>
</li>
</ul>
<form class="d-flex">
<input class="form-control me-2" type="search" placeholder="Search courses..." aria-label="Search">
<button class="btn btn-success" type="submit">Explore</button>
</form>
</div>
</div>
</nav>
<!-- Stock Market Terminology Explanation -->
<!-- Understand Fundamentals Terminology-->
<h3 class="title" id="learn-fundamentals">Learn Fundamentals</h3>
<div class="faq">
<div class="question">
<h5>Shares, Stock, and Stock Market</h5>
<svg width="15" height="10" viewBox="0 0 42 25">
<path d="M3 3L21 21L39 3" stroke="black" stroke-width="7" stroke-linecap="round"/>
</svg>
</div>
<div class="answer">
<br>
<p>Share represents a unit of ownership in a company.</p>
Stock represents collection of shares
<p>The stock market is a marketplace where stocks are bought and sold.</p>
When a company wants to raise money, they can issue stocks to investors in exchange for capital.
Investors buy stocks with the hope that the company's value will increase, allowing them to sell their
shares at a profit.
Stock prices can be influenced by many factors, including company performance, industry trends, economic
conditions, and investor sentiment.
</div>
</div>
<div class="faq">
<div class="question">
<h5>What is Market Capitalization?</h5>
<svg width="15" height="10" viewBox="0 0 42 25">
<path d="M3 3L21 21L39 3" stroke="black" stroke-width="7" stroke-linecap="round"/>
</svg>
</div>
<div class="answer">
<br>
<p>Market capitalization (often abbreviated as "market cap") is a measure of the total value of a
publicly traded company's shares currently held by investors. </p>
Market Cap = Current Market Price of 1 share of a stock x total number of shares currently held
by investors
</div>
</div>
<div class="faq">
<div class="question">
<h5>What is P/E Ratio & Industry P/E Ratio?</h5>
<svg width="15" height="10" viewBox="0 0 42 25">
<path d="M3 3L21 21L39 3" stroke="black" stroke-width="7" stroke-linecap="round"/>
</svg>
</div>
<div class="answer">
<br>
<p>
The P/E ratio, or Price-to-Earnings ratio, is a financial metric that compares a company's stock
price to its earnings per share (EPS).
</p>
P/E Ratio = Current Market Price per Share / Earnings per Share (EPS)
<p>Industry P/E ratio refers to the average P/E ratio of all the companies in a particular industry.</p>
</div>
</div>
<div class="faq">
<div class="question">
<h5>What is Dividend Yield?</h5>
<svg width="15" height="10" viewBox="0 0 42 25">
<path d="M3 3L21 21L39 3" stroke="black" stroke-width="7" stroke-linecap="round"/>
</svg>
</div>
<div class="answer">
<br>
<p>
Dividend yield is a financial ratio that measures the amount of dividends paid by a company relative
to its stock price.
</p>
Dividend Yield = Annual Dividends per Share / Current Market Price per Share
</div>
</div>
<div class="faq">
<div class="question">
<h5>What is ROCE?</h5>
<svg width="15" height="10" viewBox="0 0 42 25">
<path d="M3 3L21 21L39 3" stroke="black" stroke-width="7" stroke-linecap="round"/>
</svg>
</div>
<div class="answer">
<br>
<p>
ROCE stands for Return on Capital Employed and is a financial ratio that measures a company's
profitability and efficiency in using its capital to generate earnings.
</p>
ROCE = Earnings Before Interest and Taxes (EBIT) / Total Capital Employed
<p>
Total Capital Employed = all the capital invested in the company, including both equity and debt.
</p>
</div>
</div>
<div class="faq">
<div class="question">
<h5>What is ROE?</h5>
<svg width="15" height="10" viewBox="0 0 42 25">
<path d="M3 3L21 21L39 3" stroke="black" stroke-width="7" stroke-linecap="round"/>
</svg>
</div>
<div class="answer">
<br>
<p>
ROE stands for Return on Equity and is a financial ratio that measures the profitability of a
company's equity investment.
</p>
ROE = Net Income / Shareholder's Equity
</div>
</div>
<div class="faq">
<div class="question">
<h5>What is Book Value?</h5>
<svg width="15" height="10" viewBox="0 0 42 25">
<path d="M3 3L21 21L39 3" stroke="black" stroke-width="7" stroke-linecap="round"/>
</svg>
</div>
<div class="answer">
<br>
<p>
Book value is a financial metric that represents the total value of a company's assets that shareholders
would receive if the company were to be liquidated and all its liabilities were paid off.
</p>
Book Value = (Total Assets - Total Liabilities) / Number of Outstanding Shares
</div>
</div>
<div class="faq">
<div class="question">
<h5>What is P/B Ratio?</h5>
<svg width="15" height="10" viewBox="0 0 42 25">
<path d="M3 3L21 21L39 3" stroke="black" stroke-width="7" stroke-linecap="round"/>
</svg>
</div>
<div class="answer">
<br>
<p>
P/B ratio, or Price-to-Book ratio, is a financial ratio that compares a company's market value to its
book value.
</p>
P/B Ratio = Current Market Price per Share / Book Value per Share
</div>
</div>
<div class="faq">
<div class="question">
<h5>What is Face Value?</h5>
<svg width="15" height="10" viewBox="0 0 42 25">
<path d="M3 3L21 21L39 3" stroke="black" stroke-width="7" stroke-linecap="round"/>
</svg>
</div>
<div class="answer">
<br>
<p>Face value is the nominal or predetermined value of a financial instrument, such as a stock or a bond, that
is determined by its issuer or promoter or founder. It represents the initial value of the instrument when it is
first issued and does not change over time, even if the market price of the instrument fluctuates.</p>
</div>
</div>
<div class="faq">
<div class="question">
<h5>What is D/E Ratio?</h5>
<svg width="15" height="10" viewBox="0 0 42 25">
<path d="M3 3L21 21L39 3" stroke="black" stroke-width="7" stroke-linecap="round"/>
</svg>
</div>
<div class="answer">
<br>
<p>
D/E ratio, or Debt-to-Equity ratio, is a financial ratio that measures a company's leverage, or the
amount of debt a company has relative to its equity.
</p>
D/E Ratio = Total Liabilities / Total Shareholder's Equity
</div>
</div>
<div class="faq">
<div class="question">
<h5>What is EPS?</h5>
<svg width="15" height="10" viewBox="0 0 42 25">
<path d="M3 3L21 21L39 3" stroke="black" stroke-width="7" stroke-linecap="round"/>
</svg>
</div>
<div class="answer">
<br>
<p>
EPS, or earnings per share, is a financial metric that measures a company's profitability
</p>
EPS = Net Income / Number of shares currently held by investors
</div>
</div>
<div class="faq">
<div class="question">
<h5>What is Pledged Percentage?</h5>
<svg width="15" height="10" viewBox="0 0 42 25">
<path d="M3 3L21 21L39 3" stroke="black" stroke-width="7" stroke-linecap="round"/>
</svg>
</div>
<div class="answer">
<br>
<p>
Pledged percentage is a financial metric that measures the proportion of shares pledged by promoters or
major shareholders of a company as collateral against loans or other obligations.
</p>
Pledged Percentage = (Total pledged shares / Total shares currently held by shareholders) x 100
</div>
</div>
<div class="faq">
<div class="question">
<h5>What is Revenue Growth?</h5>
<svg width="15" height="10" viewBox="0 0 42 25">
<path d="M3 3L21 21L39 3" stroke="black" stroke-width="7" stroke-linecap="round"/>
</svg>
</div>
<div class="answer">
<br>
<p>
Revenue growth is a financial metric that measures the percentage increase in a company's total revenue
over a period of time.
</p>
</div>
</div>
<div class="faq">
<div class="question">
<h5>What is Profit Growth?</h5>
<svg width="15" height="10" viewBox="0 0 42 25">
<path d="M3 3L21 21L39 3" stroke="black" stroke-width="7" stroke-linecap="round"/>
</svg>
</div>
<div class="answer">
<br>
<p>
Profit growth is a financial metric that measures the percentage increase in a company's net profit
(or earnings) over a period of time.
</p>
</div>
</div>
<div class="faq">
<div class="question">
<h5>What is ROI?</h5>
<svg width="15" height="10" viewBox="0 0 42 25">
<path d="M3 3L21 21L39 3" stroke="black" stroke-width="7" stroke-linecap="round"/>
</svg>
</div>
<div class="answer">
<br>
<p>
ROI stands for Return on Investment and is a financial metric that measures the profitability of an
investment in relation to its cost.
</p>
ROI = (Gain from Investment - Cost of Investment) / Cost of Investment x 100
</div>
</div>
<br>
<!-- Understand Quarterly Results and Profit & Loss Financial Statements Terminology-->
<h3 class="title" id="learn-statements">
Learn Quarterly Results and Profit & Loss Financial Statements Terminology
</h3>
<div class="faq">
<div class="question">
<h5>What is the meaning of the Quarterly Results Financial Statement?</h5>
<svg width="15" height="10" viewBox="0 0 42 25">
<path d="M3 3L21 21L39 3" stroke="black" stroke-width="7" stroke-linecap="round"/>
</svg>
</div>
<div class="answer">
<br>
<p>
The quarterly results financial statement is a set of financial data that a company releases every three
months, typically after the end of a quarter.
</p>
This statement show important financial metrics, such as revenue, expenses, profits, profit margins, other
income, interest, depreciation, etc, , which are used to assess the financial health and growth potential of
the company.
</div>
</div>
<div class="faq">
<div class="question">
<h5>What is the meaning of the Profit & Loss Statement?</h5>
<svg width="15" height="10" viewBox="0 0 42 25">
<path d="M3 3L21 21L39 3" stroke="black" stroke-width="7" stroke-linecap="round"/>
</svg>
</div>
<div class="answer">
<br>
<p>
A profit and loss (P&L) statement is a financial report that summarizes a company's revenues, expenses, profits,
and other metrics over a specified period, typically a year.
</p>
This statement provides an overview of the company's financial performance and shows whether the company made a
profit or incurred a loss during the period. It is an essential tool for assessing a company's profitability and
financial health.
</div>
</div>
<div class="faq">
<div class="question">
<h5>What is Fiscal Quarter & Fiscal Year?</h5>
<svg width="15" height="10" viewBox="0 0 42 25">
<path d="M3 3L21 21L39 3" stroke="black" stroke-width="7" stroke-linecap="round"/>
</svg>
</div>
<div class="answer">
<br>
<p>
The Fiscal Year in India begins on April 1 and ends on March 31 of the following year, and it is divided into
four quarters (Fiscal Quarters): April to June (Q1), July to September (Q2), October to December (Q3),
January to March (Q4)
</p>
</div>
</div>
<div class="faq">
<div class="question">
<h5>What is Revenue?</h5>
<svg width="15" height="10" viewBox="0 0 42 25">
<path d="M3 3L21 21L39 3" stroke="black" stroke-width="7" stroke-linecap="round"/>
</svg>
</div>
<div class="answer">
<br>
<p>
Revenue is the total income generated by a company from its primary business operations, such as sales of
products or services.
</p>
Revenue = Price of Products or Services x Quantity Sold
</div>
</div>
<div class="faq">
<div class="question">
<h5>What are Expenses?</h5>
<svg width="15" height="10" viewBox="0 0 42 25">
<path d="M3 3L21 21L39 3" stroke="black" stroke-width="7" stroke-linecap="round"/>
</svg>
</div>
<div class="answer">
<br>
<p>
Expenses are the costs incurred by a company in order to generate revenue from its primary business operations.
</p>
Expenses = Cost of Products or Services Sold + Operating Expenses
</div>
</div>
<div class="faq">
<div class="question">
<h5>What is Operating Profit?</h5>
<svg width="15" height="10" viewBox="0 0 42 25">
<path d="M3 3L21 21L39 3" stroke="black" stroke-width="7" stroke-linecap="round"/>
</svg>
</div>
<div class="answer">
<br>
<p>
Operating profit, also known as earnings before interest and taxes (EBIT), is the profit generated by a company
from its primary business operations after deducting its operating expenses.
</p>
Operating Profit = Revenue - Cost of Products or Services Sold - Operating Expenses
</div>
</div>
<div class="faq">
<div class="question">
<h5>What is OPM?</h5>
<svg width="15" height="10" viewBox="0 0 42 25">
<path d="M3 3L21 21L39 3" stroke="black" stroke-width="7" stroke-linecap="round"/>
</svg>
</div>
<div class="answer">
<br>
<p>
Operating profit margin (OPM) is a profitability ratio that measures the percentage of revenue that remains as
operating profit after deducting operating expenses.
</p>
Operating Profit Margin = (Operating Profit / Revenue) x 100
</div>
</div>
<div class="faq">
<div class="question">
<h5>What is Other Income?</h5>
<svg width="15" height="10" viewBox="0 0 42 25">
<path d="M3 3L21 21L39 3" stroke="black" stroke-width="7" stroke-linecap="round"/>
</svg>
</div>
<div class="answer">
<br>
<p>
Other income refers to the income that a company earns from sources other than its primary business operations.
This can include interest income, rental income, gains from the sale of assets, and other miscellaneous income.
</p>
Other Income = Total Income - Revenue
</div>
</div>
<div class="faq">
<div class="question">
<h5>What is Interest?</h5>
<svg width="15" height="10" viewBox="0 0 42 25">
<path d="M3 3L21 21L39 3" stroke="black" stroke-width="7" stroke-linecap="round"/>
</svg>
</div>
<div class="answer">
<br>
<p>
Interest in a company's financial statements refers to the amount of interest expense incurred by the company
during a specific period. Interest expense is the cost of borrowing money, such as interest paid on loans or
bonds.
</p>
</div>
</div>
<div class="faq">
<div class="question">
<h5>What is Depreciation?</h5>
<svg width="15" height="10" viewBox="0 0 42 25">
<path d="M3 3L21 21L39 3" stroke="black" stroke-width="7" stroke-linecap="round"/>
</svg>
</div>
<div class="answer">
<br>
<p>
Depreciation is a method used in accounting to spread out the cost of a fixed asset over its useful life. It is
an important aspect of financial statements because it reflects the decline in value of the asset over time,
which can have an impact on a company's profitability and asset values. In simpler terms, depreciation is a way
to account for the wear and tear of an asset and the decrease in its value as it is used over time.
</p>
</div>
</div>
<div class="faq">
<div class="question">
<h5>What is PBT?</h5>
<svg width="15" height="10" viewBox="0 0 42 25">
<path d="M3 3L21 21L39 3" stroke="black" stroke-width="7" stroke-linecap="round"/>
</svg>
</div>
<div class="answer">
<br>
<p>
PBT stands for Profit Before Tax, and it is a financial metric that measures a company's earnings before taxes
are deducted.
</p>
PBT = (Operating Profit + Other Income) - (Interest + Depreciation + Other Expenses)
</div>
</div>
<div class="faq">
<div class="question">
<h5>What is Tax?</h5>
<svg width="15" height="10" viewBox="0 0 42 25">
<path d="M3 3L21 21L39 3" stroke="black" stroke-width="7" stroke-linecap="round"/>
</svg>
</div>
<div class="answer">
<br>
<p>
Taxes represent the amount of money a company owes to the government as a result of its taxable income. It is an
expense that is deducted from the company's profits.
</p>
</div>
</div>
<div class="faq">
<div class="question">
<h5>What is Net Profit (PAT)?</h5>
<svg width="15" height="10" viewBox="0 0 42 25">
<path d="M3 3L21 21L39 3" stroke="black" stroke-width="7" stroke-linecap="round"/>
</svg>
</div>
<div class="answer">
<br>
<p>
Net Profit, also known as Profit After Tax (PAT), is the amount of money a company earns after all expenses,
including taxes, have been deducted from its revenue.
</p>
Net Profit (PAT) = Total Revenue - Total Expenses - Taxes
</div>
</div>
<div class="faq">
<div class="question">
<h5>What is Dividend Payout?</h5>
<svg width="15" height="10" viewBox="0 0 42 25">
<path d="M3 3L21 21L39 3" stroke="black" stroke-width="7" stroke-linecap="round"/>
</svg>
</div>
<div class="answer">
<br>
<p>
Dividend Payout is the portion of a company's earnings that is distributed to its shareholders in the form of
dividends.
</p>
Dividend Payout Ratio = Dividends Paid / Net Income
<p>
Dividend Payout % = Dividend Payout Ratio * 100
</p>
</div>
</div>
<div class="faq">
<div class="question">
<h5>What is Compounded Revenue Growth?</h5>
<svg width="15" height="10" viewBox="0 0 42 25">
<path d="M3 3L21 21L39 3" stroke="black" stroke-width="7" stroke-linecap="round"/>
</svg>
</div>
<div class="answer">
<br>
<p>
Compounded Revenue Growth is the rate at which a company's revenue increases over a specific period of time,
taking into account the effect of compounding.
</p>
Compounded Revenue Growth = ((Revenue at end of period / Revenue at beginning of period)^(1/Number of years)) - 1
</div>
</div>
<div class="faq">
<div class="question">
<h5>What is Compounded Net Profit Growth?</h5>
<svg width="15" height="10" viewBox="0 0 42 25">
<path d="M3 3L21 21L39 3" stroke="black" stroke-width="7" stroke-linecap="round"/>
</svg>
</div>
<div class="answer">
<br>
<p>
Compounded Net Profit Growth is the rate at which a company's net profit increases over a specific period of
time, taking into account the effect of compounding.
</p>
Compounded Net Profit Growth = ((Net Profit at end of period / Net Profit at beginning of period)^(1/Number of years)) - 1
</div>
</div>
<div class="faq">
<div class="question">
<h5>What is Compounding?</h5>
<svg width="15" height="10" viewBox="0 0 42 25">
<path d="M3 3L21 21L39 3" stroke="black" stroke-width="7" stroke-linecap="round"/>
</svg>
</div>
<div class="answer">
<br>
<p>
compounding means “ returns an investor earns on his original investment + all the returns earned on the returns
an investor received previously ”
It is easier to think of compounding as:
</p>
Compounding = returns on (original investment amount + previous returns)
</div>
</div>
<!-- Understand Balance Sheet-->
<h3 class="title" id="learn-balance-sheet">
Learn Balance Sheet
</h3>
<div class="faq">
<div class="question">
<h5>What is Balance Sheet?</h5>
<svg width="15" height="10" viewBox="0 0 42 25">
<path d="M3 3L21 21L39 3" stroke="black" stroke-width="7" stroke-linecap="round"/>
</svg>
</div>
<div class="answer">
<br>
<p>
A balance sheet is a financial statement that provides a snapshot of a company's financial position at a given
point in time. It shows the company's assets, liabilities, and equity, providing a picture of what the company
owns, owes, and the amount invested by shareholders. The balance sheet equation states that a company's assets
must always equal the sum of its liabilities and equity.
</p>
The balance sheet is based on the fundamental accounting equation:
<b>Assets = Equity + Liabilities</b>
<p>The balance sheet is an important tool for evaluating a company's financial health</p>
</div>
</div>
<div class="faq">
<div class="question">
<h5>What is an Equity?</h5>
<svg width="15" height="10" viewBox="0 0 42 25">
<path d="M3 3L21 21L39 3" stroke="black" stroke-width="7" stroke-linecap="round"/>
</svg>
</div>
<div class="answer">
<br>
<p>
The amount that belongs to the shareholders.
</p>
Equity = Total Assets - Total Liabilities
</div>
</div>
<div class="faq">
<div class="question">
<h5>What is an Asset?</h5>
<svg width="15" height="10" viewBox="0 0 42 25">
<path d="M3 3L21 21L39 3" stroke="black" stroke-width="7" stroke-linecap="round"/>
</svg>
</div>
<div class="answer">
<br>
<p>
An asset is something a company owns. An asset is something that contains economic value and / or future benefit.
</p>
Assets = Total Equity + Total Liabilities
</div>
</div>
<div class="faq">
<div class="question">
<h5>What is a Liability?</h5>
<svg width="15" height="10" viewBox="0 0 42 25">
<path d="M3 3L21 21L39 3" stroke="black" stroke-width="7" stroke-linecap="round"/>
</svg>
</div>
<div class="answer">
<br>
<p>
A liability is something a company owes, usually a sum of money.
</p>
Liabilities = Total Assets - Total Equity
</div>
</div>
<div class="faq">
<div class="question">
<h5>What is Share Capital?</h5>
<svg width="15" height="10" viewBox="0 0 42 25">
<path d="M3 3L21 21L39 3" stroke="black" stroke-width="7" stroke-linecap="round"/>
</svg>
</div>
<div class="answer">
<br>
<p>
Share capital refers to the funds raised by a company through the issuance of shares to the public or private
investors. It is the total amount of money invested by shareholders in exchange for ownership of the company's
stock.
</p>
</div>
</div>
<div class="faq">
<div class="question">
<h5>What are Reserves + Surplus?</h5>
<svg width="15" height="10" viewBox="0 0 42 25">
<path d="M3 3L21 21L39 3" stroke="black" stroke-width="7" stroke-linecap="round"/>
</svg>
</div>
<div class="answer">
<br>
<p>
Reserves + Surplus refers to the portion of a company's profit that is retained and reinvested in the business
rather than being distributed as dividends to shareholders.
</p>
</div>
</div>
<div class="faq">
<div class="question">
<h5>What is Total Equity?</h5>
<svg width="15" height="10" viewBox="0 0 42 25">
<path d="M3 3L21 21L39 3" stroke="black" stroke-width="7" stroke-linecap="round"/>
</svg>
</div>
<div class="answer">
<br>
<p>
Total equity represents the net worth of a company and is also known as shareholder's equity.
</p>
Total Equity = Share Capital + (Reserves + Surplus) + Other Equity
<p>Where,</p>
Share Capital = Total number of shares issued x face value (i.e. the minimum price at which a company's shares can be issued.)
<p>Reserves + Surplus = Retained or reinvested Earnings + Other Reserves</p>
Other Equity = Any other items classified or categorized as equity on the balance sheet.
</div>
</div>
<div class="faq">
<div class="question">
<h5>What are Current Liabilities?</h5>
<svg width="15" height="10" viewBox="0 0 42 25">
<path d="M3 3L21 21L39 3" stroke="black" stroke-width="7" stroke-linecap="round"/>
</svg>
</div>
<div class="answer">
<br>
<p>
Current liabilities refer to the debts of a company that are expected to be paid within 1 year. They represent
the short-term financial debts of a company, which are due for payment in the immediate future.
</p>
</div>
</div>
<div class="faq">
<div class="question">
<h5>What are Long Term Liabilities?</h5>
<svg width="15" height="10" viewBox="0 0 42 25">
<path d="M3 3L21 21L39 3" stroke="black" stroke-width="7" stroke-linecap="round"/>
</svg>
</div>
<div class="answer">
<br>
<p>
Long-term liabilities refer to the debts of a company that are not due for payment within 1 year or the current
operating cycle. Examples of long-term liabilities include bonds payable, long-term loans, and deferred tax
liabilities.
</p>
</div>
</div>
<div class="faq">
<div class="question">
<h5>What are Other Liabilities?</h5>
<svg width="15" height="10" viewBox="0 0 42 25">
<path d="M3 3L21 21L39 3" stroke="black" stroke-width="7" stroke-linecap="round"/>
</svg>
</div>
<div class="answer">
<br>
<p>
Other liabilities refer to any debts that a company owes but are not categorized as current or long-term
liabilities. These can include items such as deferred or postponed or delayed revenue, customer deposits, or
other accumulated expenses.
</p>
</div>
</div>
<div class="faq">
<div class="question">
<h5>What are Borrowings?</h5>
<svg width="15" height="10" viewBox="0 0 42 25">
<path d="M3 3L21 21L39 3" stroke="black" stroke-width="7" stroke-linecap="round"/>
</svg>
</div>
<div class="answer">
<br>
<p>
Borrowings refer to the money that a company borrows from external sources, such as banks or other financial
institutions, to finance its operations. The borrowing can be short-term or long-term, depending on the purpose
and duration of the loan.
</p>
</div>
</div>
<div class="faq">
<div class="question">
<h5>What are Total Liabilities?</h5>
<svg width="15" height="10" viewBox="0 0 42 25">
<path d="M3 3L21 21L39 3" stroke="black" stroke-width="7" stroke-linecap="round"/>
</svg>
</div>
<div class="answer">
<br>
<p>
Total Liabilities represents the total amount of debts that a company owes to its creditors and other parties.
</p>
Total Liabilities = Current Liabilities + Long Term Liabilities + Other Liabilities + Borrowings
</div>
</div>
<div class="faq">
<div class="question">
<h5>What are Fixed Assets?</h5>
<svg width="15" height="10" viewBox="0 0 42 25">
<path d="M3 3L21 21L39 3" stroke="black" stroke-width="7" stroke-linecap="round"/>
</svg>
</div>
<div class="answer">
<br>
<p>
Fixed assets refer to the long-term tangible or physical assets that a company owns and uses to generate revenue,
such as land, buildings, machinery, equipment, etc.
</p>
</div>
</div>
<div class="faq">
<div class="question">
<h5>What are Current Assets?</h5>
<svg width="15" height="10" viewBox="0 0 42 25">
<path d="M3 3L21 21L39 3" stroke="black" stroke-width="7" stroke-linecap="round"/>
</svg>
</div>
<div class="answer">
<br>
<p>
Current assets refer to the assets that a company expects to convert into cash or use within a year. They
typically include cash, accounts receivable, inventory, short-term investments, etc.
</p>
</div>
</div>
<div class="faq">
<div class="question">
<h5>What are Other Assets?</h5>
<svg width="15" height="10" viewBox="0 0 42 25">
<path d="M3 3L21 21L39 3" stroke="black" stroke-width="7" stroke-linecap="round"/>
</svg>
</div>
<div class="answer">
<br>
<p>
Other Assets is a category of assets that do not fit into either the fixed or current asset categories. These may
include long-term investments, deferred tax assets, intangible assets, or any other miscellaneous assets.
</p>
</div>
</div>
<div class="faq">
<div class="question">
<h5>What are Investments?</h5>
<svg width="15" height="10" viewBox="0 0 42 25">
<path d="M3 3L21 21L39 3" stroke="black" stroke-width="7" stroke-linecap="round"/>
</svg>
</div>
<div class="answer">
<br>
<p>
In the balance sheet, investments refer to the securities or financial assets held by a company for investment
purposes. These may include stocks, bonds, mutual funds, or other financial instruments.
</p>
</div>
</div>
<div class="faq">
<div class="question">
<h5>What are Total Assets?</h5>
<svg width="15" height="10" viewBox="0 0 42 25">
<path d="M3 3L21 21L39 3" stroke="black" stroke-width="7" stroke-linecap="round"/>
</svg>
</div>
<div class="answer">
<br>
<p>
Total assets is the sum of all the assets owned by a company. In the context of a company's balance sheet,
it includes all the tangible or physical and intangible assets such as property, plant and equipment,
investments, accounts receivables, cash, cash equivalents, etc.
</p>
Total assets = Fixed assets + Current assets + Other assets + Investments
</div>
</div>
<!-- Understand Cash Flows -->
<h3 class="title" id="learn-cash-flows">
Learn Cash Flows
</h3>
<div class="faq">
<div class="question">
<h5>What is Operating Cash Flow?</h5>
<svg width="15" height="10" viewBox="0 0 42 25">
<path d="M3 3L21 21L39 3" stroke="black" stroke-width="7" stroke-linecap="round"/>
</svg>
</div>
<div class="answer">
<br>
<p>
Operating cash flow is a measure of the amount of cash generated by a company's operations. It represents the
cash that a company generates or consumes from its core business activities in a given period of time.
</p>
</div>
</div>
<div class="faq">