Quiz questions collected by Roger (Generated by incFileListGen.m)

Student ID:

Name:


DP

  1. () Example of DP for trading: Given a price vector of [2 1 3 4 5 2], we want to use DP to find the max return, as described in the class, with the assumption that there is no transaction fee, and the initial cash is 10.
    1. What is [$c_1$ $c_2$ $c_3$ $c_4$ $c_5$ $c_6$], the max. cash at each stage?
    2. What is [$s_1$ $s_2$ $s_3$ $s_4$ $s_5$ $s_6$], the max. stockholdings at each stage?
    (Please give your answer in the above vector format, with a single space between elements.) [DP#dp4trading01.inc]

  2. () Formula of DP for trading: As described in the class, we can use DP to solve the trading problem when all the price information is known in advance. With the same assumptions as described in the class, please use DP formulation to maximize $n$ days' return, with the rate of transaction fee equal to $\rho$ and the initial cash equal to $c_1=100$.

    1. Define the optimum-value functions.
    2. Construct the recurrent formulas for the optimum functions, together with the initial conditions.
    3. Specify the answer to the problem of maximum cash return.
    [DP#dp4trading02.inc]

Financial quotient

  1. () 台股上市櫃公司總數: 整個台股上市櫃公司總共有幾 N 家,請問 N 的範圍?
    1. N < 500
    2. 500 < N < 1000
    3. 1000 < N < 2000
    4. 2000 < N < 3000
    5. 3000 < N
    [Financial quotient#fq01.inc]

  2. () 台股每家公司的每日漲跌幅的限制: 台股每家公司的每日漲跌幅的限制是正負百分之幾?(請寫數字即可,不加百分比)。 [Financial quotient#fq02.inc]

  3. () 基本面名詞: Give the full names (in English) of the following terms.
    1. EPS
    2. ROA
    3. ROE
    4. PER
    5. PBR
    [Financial quotient#fq03.inc]

  4. () 基本面名詞之二: Give the full names of the following terms.
    1. PER
    2. PBR
    [Financial quotient#fq04.inc]

  5. () 股票殖利率: 下列何者是對的?
    1. 股票殖利率是長期存股的一項重要考慮因素。
    2. 殖利率的計算,通常包含現金配息及股票配息。
    3. 股票在除息後若無填息,則殖利率還是無法代表真正的收益。
    4. 目前銀行的定存年利率大約是 1% 左右,而台股近年來的平均殖利率可以超過 3%。
    [Financial quotient#fq05.inc]

  6. () 分析股票的四大面向: 請問什麼是分析股票的四大面向? [Financial quotient#stockAnalysisMethodfq0.inc]

IRR

  1. () IRR comparison: 有兩個投資案如下:
    1. 十年後的總報酬是 100%
    2. 六年後的總報酬是 55%
    若以年複利來計算,請回答下列問題:
    1. 以年化報酬率來看,何者比較好?A 或 B?
    2. 若兩者年化報酬率的差距為 $n/1000$,請問 $n$ 等於多少?(請四捨五入至整數。)
    [IRR#compare.inc]

  2. () IRR comparison: 有三個投資案如下:
    1. 5 年後的總報酬是 50%
    2. 10 年後的總報酬是 100%
    3. 15 年後的總報酬是 150%
    4. 20 年後的總報酬是 200%
    請問哪一個投資案的績效比較好?為什麼? [IRR#compare02.inc]

Morgage

  1. () Morgage computation: 假設你買了一棟房子,總價是1000萬元,沒有寬限期,房貸利率約是2%,採用本利等額攤還。若房貸期限為20年,請問每個月應付的房貸金額約為多少萬元?(請以萬元為單位,並四捨五入至整數。) [Morgage#compute01.inc]

  2. () Morgage computation: 假設你買了一棟房子,總價是5400萬元,沒有寬限期,房貸利率約是2%,採用本利等額攤還。若你可以選擇房貸期限為20年和30年,請問在這兩種條件下,每個月應付的房貸金額會相差多少錢?(請以萬元為單位,並四捨五入至整數。)
    1. 6
    2. 7
    3. 8
    4. 9
    5. 10
    [Morgage#compute02.inc]

Moving average

  1. () MA computation: 某一檔股票在某 8 個營業日的股價為 [2 4 6 4 6 0 6 8],請計算其對應的 4MA。(為避免出現 nan,前三天請分別使用 1MA、2MA、3MA 來進行計算。) (答案請前後加入中括弧,每個數字使用半形空白分開,例如 [2 3 5 4 3 2 1 3]。) [Moving average#compute.inc]

  2. () MA computation basis: 有關與均線的計算,請問是用每天的什麼價格來進行運算?來進行技術分析,下列何者是正確的敘述:
    1. 開盤價
    2. 收盤價
    3. 均價
    4. 最高價
    5. 最低價
    6. 以上均可
    [Moving average#computeBasis.inc]

  3. () MA crossings: 有關與均線來進行技術分析,下列何者是正確的敘述:
    1. 當短期均線開始跨越並大於長期均線時,是所謂「黃金交叉」。
    2. 當短期均線開始跨越並小於長期均線時,是所謂「死亡交叉」。
    3. 「黃金交叉」就一定是「買」的訊號。
    4. 「死亡交叉」就一定是「賣」的訊號。
    [Moving average#crossing.inc]

  4. () MA definition: 在週線、月線、季線、年線的計算之中,請問用來計算平均的天數各是多少? (答案請前後加入中括弧,每個數字使用半形空白分開,例如 [10 20 30 50]。) [Moving average#define.inc]

Portfolio optimization

  1. () PO with 2 assets: No correlation: Given two risky assets as follows: $$ \left\{ \begin{array}{l} \text{Asset 1: } \mu_1=0.2, \sigma_1=0.1\\ \text{Asset 2: } \mu_2=0.3, \sigma_2=0.2\\ \end{array} \right. $$ And the correlation coefficient of these two assets is $\rho_{12}=\frac{\sigma_{12}}{\sigma_1\sigma_2}=0$. We want to perform portfolio optimization with investment weigthing of $w_1$ and $w_2$ for assets 1 and 2, respectively.
    1. What are the overall $\mu$ (return) and $\sigma$ (volatility) when $w_1=0.4$ and $w_2=0.6$? (Please put your answer in the format $[\mu, \sigma]$.)
    2. What are $[a, b, c]$ when $\sigma^2=a\mu^2+b\mu+c$? (Please put your answer in the format $[a, b, c]$.)
    3. What are the overall $\mu$, overall $\sigma$, and $w_1$ for achieving the minimum-variance portfolio? (Please put your answer in the format $[\mu, \sigma, w_1]$.)
    (Please round your answer to the fourth decimal place.) [Portfolio optimization#2asset02.inc]

  2. () PO with 2 assets: Efficient frontier of line: In PO with 2 assets, when will the efficient frontier reduce to a straight line? [Portfolio optimization#2assetEf01.inc]

  3. () PO with 2 assets: Efficient frontier of line: In PO with 2 assets, what value of $\rho_{12}$ will reduce the efficient frontier to a straight line? (If there are multiple answers, please sort them in ascending order and put them into a vector format [$v_1$ $v_2$ $\dots$].) [Portfolio optimization#2assetEf011.inc]

  4. () PO with 2 assets: Efficient frontier of parabola: In PO with 2 assets, when will the efficient frontier reduce to a parabola? [Portfolio optimization#2assetEf02.inc]

  5. () PO with 2 assets: Zero variance: In PO with 2 assets, when will the overall risk go to zero? What are the weights when this happens? [Portfolio optimization#2assetEf03.inc]

  6. () PO with 2 assets: Formula for minimum variance: In PO with 2 assets, what are the weights for minimum-variance portfolio? Can you derive them using Largange multiplier? [Portfolio optimization#2assetMinVar01.inc]

  7. () PO with 2 assets: Minimum variance with various correlation coefficients: Given two risky assets as follows: $$ \left\{ \begin{array}{l} \text{Asset 1: } \mu_1=0.2, \sigma_1=0.3\\ \text{Asset 2: } \mu_2=0.3, \sigma_2=0.4\\ \end{array} \right. $$ Under the following conditions, what are the corresponding overall risk (standard deviation) when we achieve minimum-variance portfolio? (Please round your answer to the second decimal place and express it as "d.dd".)
    1. $\rho_{12}=1$
    2. $\rho_{12}=0$
    3. $\rho_{12}=-1$
    [Portfolio optimization#2assetMinVar02.inc]

  8. () PO with 2 assets: Minimum variance with various correlation coefficients: Given two risky assets as follows: $$ \left\{ \begin{array}{l} \text{Asset 1: } \mu_1=0.2, \sigma_1=0.1\\ \text{Asset 2: } \mu_2=0.3, \sigma_2=0.2\\ \end{array} \right. $$ Under the following conditions, what are the corresponding weight for asset 1 when we achieve minimum-variance portfolio? (Please round your answer to the second decimal place and express it as "d.dd".)
    1. $\rho_{12}=1$
    2. $\rho_{12}=0$
    3. $\rho_{12}=-1$
    [Portfolio optimization#2assetMinVar03.inc]

  9. () PO with 2 assets: Minimum variance with various correlation coefficients: Given two risky assets as follows: $$ \left\{ \begin{array}{l} \text{Asset 1: } \mu_1=0.2, \sigma_1=0.1\\ \text{Asset 2: } \mu_2=0.3, \sigma_2=0.2\\ \end{array} \right. $$ Under the following conditions, what are the corresponding overall $\sigma$ and $\mu$ when we achieve minimum-variance portfolio? (Please put your answer in the format $[\mu, \sigma]$ and round them to the fourth decimal place.)
    1. $\rho_{12}=1$
    2. $\rho_{12}=0$
    3. $\rho_{12}=-1$
    [Portfolio optimization#2assetMinVar04.inc]

  10. () PO with 2 assets: Computation for minimum variance: Given two risky assets as follows: $$ \left\{ \begin{array}{l} \text{Asset 1: } \mu_1=0.2, \sigma_1=0.1\\ \text{Asset 2: } \mu_2=0.3, \sigma_2=0.2\\ \end{array} \right. $$ And the correlation coefficient of these two assets is $\rho_{12}=\frac{\sigma_{12}}{\sigma_1\sigma_2}=0.2$. What are the weights at minimum-variance portfolio? What are the corresponding $\mu$ and $\sigma$? [Portfolio optimization#2assetMinVar05.inc]

  11. () PO with 2 assets: Slopes at various conditions: Given two risky assets as follows: $$ \left\{ \begin{array}{l} \text{Asset 1: } \mu_1=0.2, \sigma_1=0.15\\ \text{Asset 2: } \mu_2=0.3, \sigma_2=0.25\\ \end{array} \right. $$ Under the following conditions, what are the slopes of the corresponding efficient frontiers? (Please round your answer to the second decimal place and express it as "d.dd".)
    1. $\rho_{12}=1$
    2. $\rho_{12}=-1$
    [Portfolio optimization#2assetSlope01.inc]

  12. () Objective functions in portfolio optimization: In general, for $n$ assets, we can combine them to the overall return $\mu$ and risk $\sigma$: $$ \left\{ \begin{array}{rcl} \mu &=& \boldsymbol{\mu}^T \mathbf{w}\\ \sigma^2 &=& \mathbf{w}^T \Sigma \mathbf{w} \end{array} \right. $$ where $\mathbf{w}=[w_1, \dots, w_n]^T$, $\boldsymbol{\mu}=[\mu_1, \dots, \mu_n]^T$, and $\Sigma$ is the covariance matrix of these $n$ assets. What are the objective functions (with suitable constraints) that are commonly used in portfolio optimization?
    1. $\min_{\mathbf{w}} \mathbf{w}^T \Sigma \mathbf{w}$
    2. $\max_{\mathbf{w}} \boldsymbol{\mu}^T \mathbf{w}$
    3. $\min_{\mathbf{w}} \mu^2+\sigma^2$
    4. $\max_{\mathbf{w}} \frac{\mu-\mu_0}{\sigma}$
    5. $\max_{\mathbf{w}} \mu-\beta \sigma$, where $\beta>0$
    [Portfolio optimization#ObjFcn01.inc]

RSI

  1. () RSI computation: 有一支股票過去 9 天的股價為 [3 1 4 3 4 5 3 6 13],請根據這 9 天的資料來計算 RSI。 (答案介於0和100之間,請四捨五入至整數,且無須加百分比符號,例如 68。) [RSI#compute.inc]

Sharpe ratio

  1. () Sharpe ratio computation: 有一支股票過去 5 天的股價為 [5 6 7 6 8]。若無風險的年報酬率為 1%,請根據這些資料來計算(以年為主的)Sharpe ratio。 (假設標準差的計算公式為 $\sigma=\sqrt{\frac{\Sigma_{i=1}^n (x_i-\mu)^2}{n-1}}$,並請將答案四捨五入至小數點以下三位。) [Sharpe ratio#compute.inc]

Stock

  1. () Stock divident: 某一支股票的股價為 103 元,今年配發 5 元現金股利和 4 元股票股利,請問除權息後股價為多少元?(請四捨五入至整數。) [Stock#divident.inc]

  2. () Stock divident: 某一支股票的股價為 100 元,今年配發 4 元現金股利和 2 元股票股利,請問除權息後股價為多少元?(請四捨五入至整數。) [Stock#divident02.inc]

  3. () 除權除息後的股票價格: 某家公司現在股價為 81 元,若今年現金股利 4 元,股票股利 1 元,請問在除權除息後,股價應該是幾元? [Stock#divident03.inc]

  4. () 公司基本面評價指標: 某家公司A的今年財務情況如下:
    • 共發行10萬股,今年股價80元
    • 公司資產共1000萬元,但包含銀行貸款200萬元,所以公司淨值(股東權益)為800萬元
    • 今年稅後淨利為100萬元,發放現金股利4元
    請計算下列數值:
    1. 資本額或股本(答案是整數,以萬元為單位,例如「90萬」)
    2. 市值(答案是整數,以萬元為單位,例如「200萬」)
    3. EPS (earnings per share)(以元為單位,四捨五入至小數點後第一位,例如「11.2」)
    4. 資產報酬率 (ROA, return on assets)(以百分比為單位,四捨五入至小數點後第一位,例如「11.5%」)
    5. 股東權益報酬率 (ROE, return on equity)(以百分比為單位,四捨五入至小數點後第一位,例如「13.5%」)
    6. 本益比 (PER, price-earnings ratio)(四捨五入至小數點後第一位,例如「3.5」)
    7. 股價淨值比 (PBR, price-book ratio)(四捨五入至小數點後第一位,例如「2.5」)
    8. 現金殖利率 (Yield)(以百分比為單位,四捨五入至小數點後第一位,例如「8.5%」)
    [Stock#fundamentalIndex.inc]

  5. () Stock's IRR: 若要計算股票的年化報酬率,有兩種方式:
    1. 用最後的資本利得+總股息配發,與最初的總投資額去算
    2. 用還原股價計算報酬率
    請問以下敘述何者正確?
    1. A 的算法較準確
    2. B 的算法較準確
    3. A 和 B 的算法都可以得到正確的結果
    4. 兩者皆不夠準確
    [Stock#irr.inc]

  6. () Stock's ARR & CDY: 有關於股票的年化報酬率(annualized rate of return)和現金殖利率(cash divident yield),請問下列敘述何者正確?
    1. 現金殖利率不考慮資本的獲利或虧損
    2. 殖利率的前提假設是:你的資本投進去就沒有要拿回來了,因此你只考慮未來每年可以拿回多少
    3. 若要精準計算,年化報酬率是一個比較精確的投資評估標準
    4. 現金殖利率並不考慮股票股利
    [Stock#irrVsCdy.inc]

Technical analysis

  1. () Types of technical analysis: 請問在技術面分析方面,最常用到的兩類方法是什麼? (請將答案以全形頓號分開,例如「方法一、方法二」,但不加引號。) [Technical analysis#type.inc]

ZZZ (No topic)

  1. () Problem of geometry: [areaProblem.inc]

  2. () In-house check: Answer to this question will be given in the class. [inHouseCheck.inc]
()