軟考備考每日試題(230624)
每期慧翔天地小編都會附上5~10道軟考綜合測試題,以幫助大家達到練習的效果,本期軟考試題答案會附加在下一期的結尾。大家如果想了解2023年軟考考試報考流程、報考時間、報考要求、軟考報考費用、軟考成績查詢、軟考報考資格測評等等均可訪問站內進行了解。
軟考中高項備考刷題交流QQ群:221801769(點擊一鍵加群)
71、The()can realize seamless integration of various manufacturing devices equipped with sensing,identification.,processing,communication actuation and networking capabilities.
A.Internet of things
B.cloud computing
C.big data
D.artificial intelligence
72、High-profile examples of()include autonomous vehicles(such as drones and self-driving cars),Creating art(such as poetry)and online assistants(such as Siri).
A.Internet of things
B.cloud computing
C.big data
D.artificial intelligence
73、74、The(73)process differs from the(74)process in that the farmer is primarily concerned with acceptance of the deliverables,while the latter is primarily concerned with correctness of the deliverables.
(73)
A.Perform Quality Assurance
B.Validate Scope
C.Control Quality
D.Define Scope
(74)
A.Perform Quality Assurance
B.Validate Scope
C.Control Quality
D.Define Scope
75、()is a technique for estimating the duration or cost of an activity or a project using historical data from a similar activity or project.
A.Analogous estimating
B.Parametric estimating
C.Three-Point estimating
D.Bottom estimating
(230623)答案
66、【試題解析】
不包括確認的變更,B選項是控制質量的輸出。
【參考答案】B
67、【試題解析】
注意這題不是最短路徑的問題,而是最小生成樹的問題。
最短路徑只需要在整個網絡圖中找一條最短路徑,不需要到達每個節(jié)點。而最小生成樹是需要用最小的代價到達每個節(jié)點。注意它們之間的區(qū)別。
明白了是什么問題,可以用貪心算法,先把最小的連接起來。
連接完之后各路徑相加:30+80+60+50+30+70+60=380。此時發(fā)現選項中并無380。因為節(jié)點5到6之間要往返,所以再調整下這個圖,把4和6連接起來,計算出的路費是30+80+60+70+30+70+60=400。
【參考答案】C
68、【試題解析】
簡單計算題,注意需要減去成本50萬。
100*50%+200*20%+250*15%-500*5%-50=52.5萬元。
【參考答案】D
69、【試題解析】
線性規(guī)劃的問題,三元一次方程。
設需要甲原料X噸,乙原料Y噸,丙原料Z噸,得方程如下:
①400X+600Y+400Z≥4400
②800X+200Y+400Z≥4800
③X+Y+Z=10
最小成本才有最大利潤,所以求MIN(7X+6Y+5Z)。
將③變換成:Z=10-X-Y,然后代入前面①②,得到:
400X+600Y+400(10-X-Y)≥4400,推出Y≥2。
800X+200Y+400(10-X-Y)≥4800,推出2X-Y≥4。
解得X=3,Y=2;然后在代入③得Z=5。
MIN(7X+6Y+5Z)=58。
所以可以獲得的利潤為100-58=42。
【參考答案】C
70、【試題解析】
動態(tài)規(guī)劃法是決策分析中的一種常用方法,是解決多階段決策過程問題的一種最優(yōu)化方法。
所謂多階段決策過程,就是將問題分成若干個相互聯系的階段,每個階段都做出決策,從而使整個過程達到最優(yōu)化。許多實際問題利用動態(tài)規(guī)劃法處理,通常比線性規(guī)劃法更為有效,特別是對于那些離散型問題。
動態(tài)規(guī)劃的實質是分治思想和解決冗余,與分治法和貪心法類似,而不是回溯法。
【參考答案】B