最新CompTIA Strata 考題涵蓋85道真題,全称:CompTIA Strata Green IT Exam。2010年7月26日进行了更新。为了帮助更多的客户通过CompTIA FC0-GR1考试,TestPassPort考題網作了最新的更新!以下為考生準備了從CompTIA官方網摘取的CompTIA Strata Green IT Exam考題信息:

1

考試科目:FC0-GR1
考試題目:30題真題
考試時間:1小時
通過分數:70%
要求經驗:CompTIA A+, CompTIA Server+認證以及18個月的工作經驗
考試語種:英語

為了幫助更多的考生通過考試,TestPassPort證照題庫網將陸續為考生介紹最新題庫信息,七月二十六日將更新微軟和CompTIA 部分考古題,具體科目為70-573CSharp,70-576CSharp,FC0-GR1三科試題。以下是題庫的更新信息:

微軟類考古題信息
MCTS 70-573 C#:
Exam Code:70-573 C#
考試名稱:TS:Microsoft SharePoint 2010, Application Development
真題數目:150Q&As

MCTS 70-576 C#:
Exam Code:70-576 C#
考試名稱:PRO: Designing and Developing Microsoft SharePoint 2010 Applications
真題數目:150Q&As

CompTIA最新考題信息
考試編號:FC0-GR1
考題名稱:CompTIA Strata Green IT Exam
真題數目:85Q&As

為了感謝考生對我們TestPassPort考題網的支持與信任,在購買任何一科考題,您都可以免費分享考題的PDF DEMO。

70-573C#,    70-576CSharpFC0-GR1

理解Privilege級別的含義
 
  默認情況下Cisco IOS命令行模式下支持兩種級別的接入命令user EXEC(級別1)模式和privileged EXEC(級別15)
 
  在這0到15這16個級別中,每個級別下所能操作的命令是不壹樣的,數字約高,級別越高,所能操作的命令也越多
 
  可以自己定義級別,及這些級別下所能操作的命令
 
  Privilege命令的操作
 
  配置步驟
 
  1. configure terminal
 
  在全局配置模式下配置,默認情況是privileged 15
 
  2. privilege mode [all] level level command
 
  Mode定義在此級別下允許操作的模式
 
  Level表示當前所要定義的級別
 
  [all]代表command命令下的子命令都可以使用,而不用壹個壹個指定
 
  Command表示妳在所定義模式下允許操作的命令
 
  3. enable password level level [encryption-type] password-string
 
  配置密碼的時候應用此級別,代表使用此密碼登陸自動進入所設定的級別中
 
  4. do copy running-config startup-config
 
  將配置保存
 
  5. 測試命令
 
  Disable 6
 
  表示將當前高級別(默認為15)降低到級別6,用於測試命令是否生效
 
  Enable 15
 
  表示將當前低級別6恢復到高級別15
 
  show privilege
 
  察看當前的privilege級別
 
  Privilege應用舉例
 
  Router(config)# privilege exec level 6 configure terminal
 
  定義級別6能夠在exec模式下使用命令configure terminal
 
  Router(config)# privilege configure all level 6 rtr
 
  定義級別6能夠在configure模式下使用命令rtr命令以及rtr下的所有子命令
 
  路由器本地驗證數據庫結合privilege創建
 
  username cisco privilege 5 password cisco
 
  表示用戶名為cisco的用戶使用password cisco登陸後,操作級別被限定在5
 
  線路模式下的設置
 
  Line vty 0 4
 
  Password cisco 設置線路密碼,所有人用此密碼登陸
 
  Privilege level 14 所有用此密碼登陸的用戶的級別被限定在14
 
  Login
 
  Line vty 0 4
 
  No login 登陸時不需要密碼驗證,直接登陸
 
  Line vty 0 4
 
  Login local 使用路由器本地驗證數據庫驗證用戶
 
  結合實際的綜合應用
 
  有位網絡管理人員希望用戶以
 
  用戶名為 enhan
 
  密碼為 enhan
 
  通過telnet的方式遠程登陸到本地路由器,但是只賦予他某些特殊權限,如可以配置壹些路由協議,但是不能進入到接口等其他模式
 
  配置如下:
 
  username enhan privilege 3 password 0 enhan
 
  privilege configure all level 3 router
 
  privilege exec level 3 configure terminal
 
  line vty 0
 
  password cisco
 
  login local
 

壹、SGA

  1、Shared pool tunning

  Shared pool的優化應該放在優先考慮,因為壹個cache miss在shared pool中發生比在data buffer中發生導致的成本更高,由於dictionary數據壹般比library cache中的數據在內存中保存的時間長,所以關鍵是library cache的優化。

  Gets:(parse)在namespace中查找對象的次數;

  Pins:(execution)在namespace中讀取或執行對象的次數;

  Reloads:(reparse)在執行階段library cache misses的次數,導致sql需要重新解析。

  1) 檢查v$librarycache中sql area的gethitratio是否超過90%,如果未超過90%,應該檢查應用代碼,提高應用代碼的效率。

  Select gethitratio from v$librarycache where namespace=’sql area’;

  2) v$librarycache中reloads/pins的比率應該小於1%,如果大於1%,應該增加參數shared_pool_size的值。

  Select sum(pins) “executions”,sum(reloads) “cache misses”,sum(reloads)/sum(pins) from v$librarycache;

  reloads/pins>1%有兩種可能,壹種是library cache空間不足,壹種是sql中引用的對象不合法。

  3)shared pool reserved size壹般是shared pool size的10%,不能超過50%。V$shared_pool_reserved中的request misses=0或沒有持續增長,或者free_memory大於shared pool reserved size的50%,表明shared pool reserved size過大,可以壓縮。

  4)將大的匿名pl/sql代碼塊轉換成小的匿名pl/sql代碼塊調用存儲過程。

  5)從9i開始,可以將execution plan與sql語句壹起保存在library cache中,方便進行性能診斷。從v$sql_plan中可以看到execution plans。

  6)保留大的對象在shared pool中。大的對象是造成內存碎片的主要原因,為了騰出空間許多小對象需要移出內存,從而影響了用戶的性能。因此需要將壹些常用的大的對象保留在shared pool中,下列對象需要保留在shared pool中:

  a. 經常使用的存儲過程;

  b. 經常操作的表上的已編譯的觸發器

  c. Sequence,因為Sequence移出shared pool後可能產生號碼丟失。

  查找沒有保存在library cache中的大對象:

  Select * from v$db_object_cache where sharable_mem>10000 and

  type in (’PACKAGE’,'PROCEDURE’,'FUNCTION’,'PACKAGE BODY’) and kept=’NO’;

  將這些對象保存在library cache中:

  Execute dbms_shared_pool.keep(‘package_name’);

  對應腳本:dbmspool.sql

  7)查找是否存在過大的匿名pl/sql代碼塊。兩種解決方案:

  A.轉換成小的匿名塊調用存儲過程

  B.將其保留在shared pool中

  查找是否存在過大的匿名pl/sql塊:

  Select sql_text from v$sqlarea where command_type=47 and length(sql_text)>500;

  8)Dictionary cache的優化

  避免出現Dictionary cache的misses,或者misses的數量保持穩定,只能通過調整shared_pool_size來間接調整dictionary cache的大小。

  Percent misses應該很低:大部分應該低於2%,合計應該低於15%

  Select sum(getmisses)/sum(gets) from v$rowcache;

  若超過15%,增加shared_pool_size的值。

  2、Buffer Cache

  1)granule大小的設置,db_cache_size以字節為單位定義了default buffer pool的大小。

  如果SGA<128M,granule=4M,否則granule=16M,即需要調整sga的時候以granule為單位增加大小,並且sga的大小應該是granule的整數倍。

  2) 根據v$db_cache_advice調整buffer cache的大小

  SELECT size_for_estimate,buffers_for_estimate,estd_physical_read_factor,estd_physical_reads

  FROM v$db_cache_advice WHERE NAME=’DEFAULT’ AND advice_status=’ON’

  AND block_size=(SELECT Value FROM v$parameter WHERE NAME=’db_block_size’);

  estd_physical_read_factor<=1

  3) 統計buffer cache的cache hit ratio>90%,如果低於90%,可以用下列方案解決:

  ◆增加buffer cache的值;

  ◆使用多個buffer pool;

  ◆Cache table;

  ◆為 sorting and parallel reads 建獨立的buffer cache;

  SELECT NAME,value FROM v$sysstat WHERE NAME IN (’session logical reads’,

  ’physical reads’,'physical reads direct’,'physical reads direct(lob)’);

  Cache hit ratio=1-(physical reads-physical reads direct-physical reads direct (lob))/session logical reads;Select 1-(phy.value-dir.value-lob.value)/log.value from v$sysstat log, v$sysstat phy, v$sysstat dir, v$sysstat LOB where log.name=’session logical reads’ and phy.name=’physical reads’ and dir.name=’physical reads direct’ and lob.name=’physical reads direct (lob)’;

  影響cache hit ratio的因素:全表掃描;應用設計;大表的隨機訪問;cache hits的不均衡分布

  4)表空間使用自動空間管理,消除了自由空間列表的需求,可以減少數據庫的競爭

  3、其他SGA對象

  1)redo log buffer

  對應的參數是log_buffer,缺省值與 OS相關,壹般是500K。檢查v$session_wait中是否存在log buffer wait,v$sysstat中是否存在redo buffer allocation retries

  A、檢查是否存在log buffer wait:

  Select * from v$session_wait where event=’log buffer wait’ ;

  如果出現等待,壹是可以增加log buffer的大小,也可以通過將log 文件移到訪問速度更快的磁盤來解決。

  B、

  Select name,value from v$sysstat where name in

  (‘redo buffer allocation retries’,’redo entries’)

  Redo buffer allocation retries接近0,小於redo entries 的1%,如果壹直在增長,表明進程已經不得不等待redo buffer的空間。如果Redo buffer allocation retries過大,增加log_buffer的值。

  C、檢查日誌文件上是否存在磁盤IO競爭現象

  Select event,total_waits,time_waited,average_wait from v$system_event

  where event like ‘log file switch completion%’;

  如果存在競爭,可以考慮將log文件轉移到獨立的、更快的存儲設備上或增大log文件。

  D、檢查點的設置是否合理

  檢查alert.log文件中,是否存在‘checkpoint not complete’;

  Select event,total_waits,time_waited,average_wait from v$system_event

  where event like ‘log file switch (check%’;

  如果存在等待,調整log_checkpoint_interval、log_checkpoint_timeout的設置。

  E、檢查log archiver的工作

  Select event,total_waits,time_waited,average_wait from v$system_event

  where event like ‘log file switch (arch%’;

  如果存在等待,檢查保存歸檔日誌的存儲設備是否已滿,增加日誌文件組,調整log_archiver_max_processes。

  F、DB_block_checksum=true,因此增加了性能負擔。(為了保證數據的壹致性,oracle的寫數據的時候加壹個checksum在block上,在讀數據的時候對checksum進行驗證)

  2)java pool

  對於大的應用,java_pool_size應>=50M,對於壹般的java存儲過程,缺省的20M已經夠用了。

  3)檢查是否需要調整DBWn

  Select total_waits from v$system_event where event=’free buffer waits’

課程名稱:
70-642-Windows Server 2008 Network Infrastructure, Configuring

考試目標:
妳了解微軟最新的操作系統Windows Server 2008嗎?面對龐大的企業網絡,如何劃分子網、如何進行IP地址分配?DHCP動態分配IP地址幫助我們提高工作效率,妳知道如何提高DHCP的可用性嗎?DNS是如何實現名稱到IP地址的解析?擔心中病毒的計算機接入企業網絡時,如何避免網絡安全隱患?如何配置重要服務器的安全策略?通過培訓妳將豁然開朗,原來工作可以如此輕松!

適用對象:
Windows網絡系統管理員,系統工程師

1.Your company has a main office and two branch offices. Domain controllers in the main office host an
Active Directory-integrated zone.
The DNS servers in the branch offices host a secondary zone for the domain and use the main office DNS
servers as their DNS Master servers for the zone.
The company adds a new branch office. You add a member server named Branch3 and install the DNS
Server server role on the server. You configure a secondary zone for the domain. The zone transfer fails.
You need to configure DNS to provide zone data to the DNS server in the new branch office.
What should you do?
A.Run dnscmd by using the ZoneResetMasters option.
B.Run dnscmd by using the ZoneResetSecondaries option.
C.Add the new DNS server to the Zone Transfers tab on one of the DNS servers in the main office.
D.Add the new DNS server to the DNSUpdateProxy Global security group in Active Directory Users and
Computers.
Answer: C
2 Your company has a single Active Directory domain. All servers run Windows Server 2008. You install
an additional DNS server that runs Windows Server 2008. You need to delete the pointer record for the IP
address 10.3.2.127. What should you do?
A.Use DNS manager to delete the 127.in-addr.arpa zone.
B.Run the dnscmd /RecordDelete 10.3.2.127 command at the command prompt.
C.Run the dnscmd /ZoneDelete 127.in-addr.arpa command at the command prompt.
D.Run the dnscmd /RecordDelete 10.in-addr.arpa. 127.2.3 PTR command at the command prompt.
Answer: D
3.Your company has a server named Server1 that runs a Server Core installation of Windows Server
2008, and the DNS Server server role. Server1 has one network interface named Local Area Connection.
The static IP address of the network interface is configured as 10.0.0.1. You need to create a DNS zone
named local.contoso.com on Server1. Which command should you use?
A.ipconfig /registerdnslocal.contoso.com
B.dnscmd Server1 /ZoneAdd local.contoso.com /DSPrimary
C.dnscmd Server1 /ZoneAdd local.contoso.com /Primary /file local.contoso.com.dns
D.netsh interface ipv4 set dnsserver name=local.contoso.com static 10.0.0.1 primary
Answer: C
4. Your company has an Active Directory domain named ad.contoso.com. All client computers run
Windows Vista.
The company has recently acquired a company that has an Active Directory domain named
ad.fabrikam.com. A two-way forest trust is established between the ad.fabrikam.com domain and the
ad.contoso.com domain.
You need to edit the ad.contoso.com domain Group Policy object (GPO) to enable users in the
ad.contoso.com domain to access resources in the ad.fabrikam.com domain.
What should you do?
A.Configure the DNS Suffix Search List option to ad.contoso.com, ad.fabrikam.com.
B.Configure the Allow DNS Suffix Appending to Unqualified Multi-Label Name Queries option to True.
C.Configure the Primary DNS Suffix option to ad.contoso.com, ad.fabrikam.com. Configure the Primary
DNS Suffix Devolution option to True.
D.Configure the Primary DNS Suffix option to ad.contoso.com, ad.fabrikam.com. Configure the Primary
DNS Suffix Devolution option to False.
Answer: A

本認證可為使用Java技術從事應用程式開發或軟體專案管理工作提供理想的入門管道。本認證將驗證 OO 概念的基本知識、Java 程式設計以及 Java 平台與技術的一般知識。要獲得此認證,受測者必須成功完成一個測驗。請透過以下連結瞭解詳細資訊、測驗目的並進行購買:
310-019:Sun Certified Associate.Java Platform.Se. Exam Version 1.0
認證描述:
Sun助理認證的標準版Java平臺,310-019考試,1.0版考試認證提供使用Java技術到應用程序開發或軟件項目管理的職業入門。這個全球性的證書驗證了面向對象的基本知識,面向對象的UML概念,Java編程語言和Java平臺和技術的壹般知識。這門考試的考生包括:入門級的Java程序員,學習想成為Java程序員的學生,項目或項目經理與Java軟件開發行業的技術工作者。
在網站上購買的考試只能在美國使用。如果您居住在美國以外地區請選擇壹個國家,詢問在您的國家提供的產品。只可在壹個授權Prometric考試中心參加考試,壹旦購買考試券後,妳使用考試券的有效期為壹年時間。請註意考試券不再以任何理由退還。
詳細信息:
考點地區:授權Prometric考試中心
首要條件:無
其他考試/為這項認證所需的任務:無
考試類型:多選題和拖放
問題數量:51
評分標準:68%(51個問題中超過35個正確)
考試時間:115分鐘

CompTIA A+ 認證是對當前計算機技術支持專業人員應掌握的最新技能進行的考核。它是壹種廠商中立的國際認證,得到了主要軟硬件廠商、分銷商和經銷商的廣泛認可。CompTIA A+ 認證是對技術人員完成壹些工作的能力進行確認,例如:安裝、配置、故障診斷、定期維護和基礎組網等。該考試還涉及了網絡安全、人員及設備安全和環境問題,以及用於客戶服務時溝通技能等領域。

CompTIA A+ 認證確保了特定的人群應具有適當的技能。在掌握許多壹般基本技能的同時,還要具有支持商業需求所需要的額外技能。通過為特定工作情景提供認證選項,CompTIA A+ 認證為個人提供了在某壹領域開拓其事業的能力,同時為雇主提供了選擇最為適合其需求的考試組合的靈活性。

? CompTIA A+ 認證是通向專業化或高級認證的階石,例如:CompTIA Network + 和 微軟 MCSA。
? 參加全新的思科 IT Essentials I Version 4.0 考試之前需要參加 CompTIA A+ Essentials

Zviki Cohen基於自己探索和理解他人所編寫代碼的體驗,發布了跟蹤Java執行過程的5種方法。他發現簡單的閱讀源代碼(有些情況下是反編譯代碼),可能是十分乏味和有錯誤傾向的過程。
  作為替代,他推薦了5種不同運行時跟蹤方法以在Java代碼運行時觀察它,消除了學習他人代碼的許多不利條件。以下濃縮了他的5個建議:

  1、基本方法:斷點和單步執行

  “以最簡單的方法開始:設置斷點並開始跟蹤妳的程序執行。它在這些時候是最好的:妳需要壹個快速且簡單的解決方案,妳擁有所有代碼並且知道想在哪裏停止執行。妳需要在給定斷點設置精細的信息(參數、局部變量等等)。”

  2、初級方法:調試消息

  “我們通過設置調試消息來繼續對程序跟蹤。最簡單的方法是使用System.out.println語句把消息打印到控制臺。 它在這些時候是最好的:妳擁有代碼且很清楚妳正在尋找什麽。對事件處理器來說這是非常好的解決方案。當貫穿某壹復雜流程的執行過程時,它的高性能對理解觸發了哪個事件是非常實用的。”

  3、熱門方法:動態代理(Dynamic Proxy)

  “這是在簡單調試消息之上所做的改進。動態代理是壹個特定的Java特性,它允許開發者引入proxy類,加進某壹給定類之前,並通過某壹給定接口截獲所有調用。它在這些時候是最好的:它對事件處理器來說是非常好的解決方案。妳可以在很短時間內用壹個普通代理設置壹個虛擬事件處理器,來查看事件發生順序。當需要理解事件處理器時這是最簡單和快捷的方法。”

  4、暴力方法:運行時剖析器(Run-time Profiler)

  “剖析器是通過特定的JVM hooks在系統中跟蹤所有調用的強大工具。但是用它來跟蹤執行過程是大才小用。它在這些時候是最好的:妳想擁有壹個特定操作的完整畫卷(如,非常短的執行流程)。”

  5、新時代:Aspects

  “面向方面編程(Aspect Oriented Programming——AOP)是壹個非凡的想法。無需深入Aspect概念,這裏只考慮其能力:它是截獲妳的代碼執行既快速又容易的方法。妳可以圍繞方法、構造器、屬性訪問等等有選擇地設置hook,而不需要修改原始代碼。在這些hook中,妳可以打印調試消息。它在這些時候是最好的:妳想跟蹤可重新構建的代碼執行。”


MCTS認證是微軟全新認證體系中最基礎的證書,其證書的等級相當於以前的MCP認證,但MCTS認證更有針對性的在每個證書多了其技術方向的說明,翻譯過來就是微軟認證技術專家的意思,MCTS認證據IT認證考

試資源網介紹MCTS認證側重於某項的微軟產品或技術的資格的鑒定,考試科目最少只要1科就可以獲1項

MCTS認證。

報考MCTS的基礎條件
資格:無
學歷:報考MCTS不限制考生的文憑,任何人都可以報考
能力:基本的計算機應用能力,微軟公司建議考生最好相應的軟件使用和技術應用的經驗

考取MCTS可以獲得什麽
方向:從系統管理,網絡管理,應用開發到數據庫都有
職位:技術員,工程師助理
能力:具體的單項技術或者產品的基本應用技能

642-845(Optimizing Converged Cisco Networks),屬於CCNP的一種考試,內容包括:描述基本的 VoIP 網絡的實施學習關於擁塞網絡的優化思想;學習實施集成的 QoS 服務特性;學習實施 QoS 的自動配置;學習優化 WLAN 的管理和安全。目前考取最新CCNP有兩種方案:方案1:640-901 + 642-812 + 642-825 + 642-845;方案2:642-892 + 642-825 + 642-845。CCNP 持有者有安裝和配置 100 到 500 個或者更多節點的網絡和排查故障的能力;能夠管理核心網絡的運作,以及綜合應用網絡邊緣的集成語音,無線以及安全方面的內容。

1. Which two QoS statements are true about the use of the SDM QoS wizard? (Choose two.)
A. Business-critical traffic includes VoIP and voice signaling packets.
B. SDM can be used to configure a basic QoS policy for incoming traffic on WAN interfaces and IPsec
tunnels.
C. SDM can provide QoS for real-time traffic and business-critical traffic.
D. SDM creates a custom-queuing (CQ) or a priority-queuing (PQ) policy.
E. SDM creates a low latency queuing (LLQ) service policy with its associated classes.
F. When allocating bandwidth, values can be entered in either bandwidth percentage or kilobytes per
second (kBps).
Answer: CE
2. Which two Cisco AutoQoS interface statements are true? (Choose two.)
A. AutoQoS is supported on Frame Relay multipoint subinterfaces.
B. AutoQoS is supported on low-speed ATM PVCs in point-to-point subinterfaces.
C. AutoQoS is supported on serial PPP and HDLC interfaces.
D. AutoQoS is supported only on Frame Relay main interfaces and not on any subinterface configuration.
Answer: BC
3. Which two wireless security statements are true? (Choose two.)
A. A TACACS+ server is required to implement 802.1x.
B. MIC protects against man-in-the-middle and replay attacks.
C. The 802.1x standard provides encryption services for wireless clients.
D. The AES (symmetric block cipher) is specified in the IEEE 802.11i specification.
E. The IEEE 802.11i specification uses RC4 as its encryption mechanism.
F. WPA requires TKIP and AES as encryption methods.
Answer: BD

TestPassport證照信息 © Copyright 2009, All Rights Reserved.