- 整理日期:2025/05/03
本文彙整了「淨零碳規劃管理師-初級能力鑑定」113 年度的考古題,內容僅供參考,考試命題不一定會相同,請考生留意。
- 使用方法:Ctrl + F 直接輸入題目關鍵字搜尋即可
| @ECHO OFF | |
| CLS | |
| ECHO ###################################### | |
| ECHO # Fast delete folder and sub-folders # | |
| ECHO ###################################### | |
| ECHO. | |
| ECHO. | |
| set /P c=Delete %CD% [Y/N]? | |
| if /I "%c%" EQU "Y" goto :DELETE | |
| if /I "%c%" EQU "J" goto :DELETE |
| {"version":1,"resource":"file:///d%3A/Angular/test/ag-grid-td-bg-color-test/src/app/my-foorter/my-foorter.component.html","entries":[{"id":"is41.html","timestamp":1690780123264}]} |
| // IRR swift version | |
| // openopen114@gmail.com | |
| // reference http://www.codeproject.com/Tips/461049/Internal-Rate-of-Return-IRR-Calculation | |
| // 2016/06/23 | |
| import UIKit | |
| func computeIRR(cashFlows:[Int],numOfFlows:Int) -> Double{ | |
| //const |
| {"lastUpload":"2019-07-15T12:07:42.427Z","extensionVersion":"v3.4.0"} |
| { | |
| "keys": ["tab"], | |
| "command": "expand_abbreviation_by_tab", | |
| // put comma-separated syntax selectors for which | |
| // you want to expandEmmet abbreviations into "operand" key | |
| // instead of SCOPE_SELECTOR. | |
| // Examples: source.js, text.html - source | |
| "context": [ | |
| { |
| /*-----( Import needed libraries )-----*/ | |
| #include <SoftwareSerial.h> | |
| /*-----( Declare Constants and Pin Numbers )-----*/ | |
| #define SSerialRX 10 //Serial Receive pin RO (receive out) | |
| #define SSerialTX 11 //Serial Transmit pin DI (data in) | |
| #define SSerialTxControl 3 //RS485 Direction control (DE&RE jump together to pin3) | |
| #define RS485Transmit HIGH // status : send data via 485 |
| //HTML | |
| <input type="text" [(ngModel)]="_num"/> | |
| <ul> | |
| <li *ngFor="let item of numList | numFilter:_num"> | |
| {{item.po}} | |
| </li> | |
| </ul> | |
| <p>_num:{{_num}}</p> |
| //new project | |
| ng new gallery | |
| cd gallery | |
| ng g service imgData // generate service | |
| ng g c gallery // generate gallery component | |
| //copy images folder to src/assets | |