200-101問題一発合格させる問題集はMarketing Science Professional認定で! [Q28-Q48]

Share

200-101問題一発合格させる問題集はMarketing Science Professional認定で!

200-101練習テストPDF試験材料


Facebook 200-101認定試験は、マーケティング科学の分野でスキルと知識を実証したい専門家向けに設計されています。この試験はFacebookによって作成され、データ駆動型の洞察を適用してビジネスの成長を促進し、プラットフォーム上の広告キャンペーンを最適化する個人の習熟度をテストします。この認定は、Facebookの広告ツールを使用し、プラットフォームのアルゴリズムを理解する際の個人の専門知識を検証します。


Facebook認定マーケティングサイエンスプロフェッショナル認定プログラムは、マーケティング担当者がFacebookの広告プラットフォームのスキルと知識を開発する絶好の機会です。このプログラムは、マーケティング担当者がターゲットオーディエンスにリーチし、結果を推進するより効果的な広告を作成できるように設計されています。 Facebook 200-101試験は、認定プロセスの最初のステップであり、候補者はそれを合格するために徹底的に準備する必要があります。適切な準備をすれば、候補者はFacebookの広告プラットフォームで専門知識を実証し、次のレベルにキャリアを積むことができます。

 

質問 # 28
The output of the show frame-relay pvc command shows "PVC STATUS = INACTIVE". What does this mean?

  • A. The PVC is configured correctly on the local switch, but there is a problem on the remote end of the PVC.
  • B. The PVC is not configured on the local switch.
  • C. The PVC is configured correctly, is operating normally, and is no longer actively seeking the address of the remote router.
  • D. The PVC is configured correctly and is operating normally, but no data packets have been detected for more than five minutes.
  • E. The PVC is configured correctly, is operating normally, and is waiting for interesting traffic to trigger a call to the remote router.

正解:A

解説:
The PVC STATUS displays the status of the PVC. The DCE device creates and sends the report to the DTE devices. There are 4 statuses: ACTIVE: the PVC is operational and can transmit dataINACTIVE: the connection from the local router to the switch is working, but the connection to the remote router is not availableDELETED: the PVC is not present and no LMI information is being received from the Frame Relay switch STATIC: the Local Management Interface (LMI) mechanism on the interface is disabled (by using the "no keepalive" command). This status is rarely seen.


質問 # 29
Refer to the exhibit.

Which two statements are true about interVLAN routing in the topology that is shown in the exhibit? (Choose two.)

  • A. The FastEthernet 0/0 interface on Router1 must be configured with subinterfaces.
  • B. Router1 needs more LAN interfaces to accommodate the VLANs that are shown in the exhibit.
  • C. Host E and host F use the same IP gateway address.
  • D. The FastEthernet 0/0 interface on Router1 and the FastEthernet 0/1 interface on Switch2 trunk ports must be configured using the same encapsulation type.
  • E. Router1 and Switch2 should be connected via a crossover cable.
  • F. Router1 will not play a role in communications between host A and host D.

正解:A、D

解説:
http://www.cisco.com/en/US/tech/tk389/tk815/technologies_configuration_example09186a008009 49fd.shtml


質問 # 30
CORRECT TEXT
Lab - Access List Simulation
A network associate is adding security to the configuration of the Corp1 router. The user on host C should be able to use a web browser to access financial information from the Finance Web Server. No other hosts from the LAN nor the Core should be able to use a web browser to access this server. Since there are multiple resources for the corporation at this location including other resources on the Finance Web Server, all other traffic should be allowed.
The task is to create and apply a numbered access-list with no more than three statements that will allow ONLY host C web access to the Finance Web Server. No other hosts will have web access to the Finance Web Server. All other traffic is permitted.
Access to the router CLI can be gained by clicking on the appropriate host.
All passwords have been temporarily set to "cisco".
The Core connection uses an IP address of 198.18.196.65
The computers in the Hosts LAN have been assigned addresses of 192.168.33.1 - 92.168.33.254
Host A 192.168.33.1
Host B 192.168.33.2
Host C 192.168.33.3
Host D 192.168.33.4
The servers in the Server LAN have been assigned addresses of 172.22.242.17 - 172.22.242.30
The Finance Web Server is assigned an IP address of 172.22.242.23.
The Public Web Server is assigned an IP address of 172.22.242.17

正解:

解説:
Corp 1#configure terminal
Our access-list needs to allow host C - 192.168.33.3 to the Finance Web Server 172.22.242.23 via web (port 80) Corp1(config)#access-list 100 permit tcp host 192.168.33.3 host 172.22.242.23 eq 80 Deny other hosts access to the Finance Web Server via web Corp1(config)#access-list 100 deny tcp any host 172.22.242.23 eq 80 All other traffic is permitted Corp1(config)#access-list 100 permit ip any any Apply this access-list to Fa0/1 interface (outbound direction) Corp1(config)#interface fa0/1 Corp1(config-if)#ip access-group 100 out Explanation : Select the console on Corp1 router Configuring ACL Corp1>enable Corp1#configure terminal Comment: To permit only Host C (192. 168. 33. 3){source addr} to access finance server address
(172.
22.242. 23){destination addr} on port number 80 (web) Corp1(config)# access-list 100 permit tcp host 192.168.33.3 host 172.22.242.23 eq 80 Comment: To deny any source to access finance server address (172. 22. 242. 23) {destination addr} on port number 80 (web) Corp1(config)# access-list 100 deny tcp any host 172.22.242.23 eq 80 Comment: To permit ip protocol from any source to access any destination because of the implicit deny any any statement at the end of ACL. Corp1(config)# access-list 100 permit ip any any Applying the ACL on the Interface Comment: Check show ip interface brief command to identify the interface type and number by checking the IP address configured. Corp1(config)#interface fa 0/1 If the ip address configured already is incorrect as well as the subnet mask. this should be corrected in order ACL to work type this commands at interface mode : no ip address 192. x. x. x 255. x. x. x (removes incorrect configured ip address and subnet mask) Configure Correct IP Address and subnet mask : ip address 172. 22. 242. 30 255. 255. 255. 240 ( range of address specified going to server is given as 172.
22. 242. 17 172. 22. 242. 30 ) Comment: Place the ACL to check for packets going outside the interface towards the finance web server. Corp1(config-if)#ip access-group 100 out Corp1(config-if)#end
Important: To save your running config to startup before exit.
Corp1#copy running-config startup-config
Verifying the Configuration :
Step1: Show ip interface brief command identifies the interface on which to apply access list .
Step2: Click on each host A, B, C & D . Host opens a web browser page , Select address box of
the web browser and type the
ip address of finance web server(172. 22. 242. 23) to test whether it permits /deny access to the
finance web Server.


質問 # 31
Which term describes a spanning-tree network that has all switch ports in either the blocking or fowarding state?

  • A. redundant
  • B. converged
  • C. spanned
  • D. provisioned

正解:B


質問 # 32
Which commands are required to properly configure a router to run OSPF and to add network 192.168.16.0/24 to OSPF area 0? (Choose two.)

  • A. Router(config)# router ospf 0
  • B. Router(config)# router ospf area 0
  • C. Router(config)# router ospf 1
  • D. Router(config-router)# network 192.168.16.0 0.0.0.255 area 0
  • E. Router(config-router)# network 192.168.16.0 0.0.0.255 0
  • F. Router(config-router)# network 192.168.16.0 255.255.255.0 area 0

正解:C、D

解説:
In the router ospf
Command, theranges from 1 to 65535 so o is an invalid number - B is correct but A is not correct.
To configure OSPF, we need a wildcard in the "network" statement, not a subnet mask. We also
need to assgin an area to this process - E is correct.


質問 # 33
Refer to the exhibit.

Assuming that the entire network topology is shown, what is the operational status of the interfaces of R2 as indicated by the command output shown?

  • A. Two interfaces have problems.
  • B. The interfaces are functioning correctly.
  • C. One interface has a problem.
  • D. The operational status of the interfaces cannot be determined from the output shown.

正解:B


質問 # 34
A brand plans to run a one-month multi-cell Conversion Lift test on Facebook. The cells are designed to help the brand understand experimentally whether its current creative strategy works for different business goals. The different targets are as follows:
* Prospective audience
* Retargeting audience
What should the analyst recommend pursuing after the test?

  • A. Continue with the creative strategy for all cells with positive conversion lift
  • B. Continue with the creative strategy for all cells with positive statistically significant conversion lift
  • C. Continue with the creative strategy for the cell with the highest positive statistically significant conversion lift
  • D. Continue with the creative strategy for the cell with the highest positive conversion lift

正解:B


質問 # 35
A brand needs to measure how frequency affects conversions and ROI. Currently the brand runs a campaign on 2x frequency for seven days. How should the brand set up a test to understand how frequency affects incremental conversions?

  • A. A Conversion Lift with 4x frequency for seven days
  • B. A Conversion Lift test with a 2x frequency for seven days
  • C. A multi-cell Conversion Lift test: Cell 1 with a 2x frequency for seven days, Cell 2 with 4x frequency for seven days
  • D. A multi-cell A/B test: Cell 1 with a 2x frequency for seven days, Cell 2 with 4x frequency for seven days

正解:D


質問 # 36
A large news company wants to develop a test that will show up in their marketing-mix model. The goal is to identify the effect of a new media channel during a one-week test conducted across many digital channels as well as TV. They are a national newspaper, so a significant number of conversions come organically on a weekly basis.
The company typically spends $275,000 per week on media, and plans to spend an additional $5,000 on this test, for a total weekly spend of $280,000. The company typically spreads the $275,000 across three digital channels and a mid-sized TV buy.
Which action should be taken to ensure the feasibility of the test showing up in the model?

  • A. Increase the duration of the test-period
  • B. Remove TV spending from the campaign
  • C. Increase the number of channels being used
  • D. Increase the overall advertising spend across the target channel

正解:D


質問 # 37
DRAG DROP

正解:

解説:

Explanation:
poison reverse: A router learns from its neighbor that a route is down and the router sends an update back to the neighbor with an infinite metric to that routeLSA: The packets flooded when a topology change occurs, causing network routers to update their topological databases and recalculate routes split horizon: This prevents sending information about a routeback out the same interface that originally learned about the routeholddown timer: For a given period, this causes the router to ignore any updates with poorer metrics to a lost network


質問 # 38
Refer to the exhibit.

Which two statements are true about interVLAN routing in the topology that is shown in the exhibit? (Choose two.)

  • A. The FastEthernet 0/0 interface on Router1 must be configured with subinterfaces.
  • B. Router1 needs more LAN interfaces to accommodate the VLANs that are shown in the exhibit.
  • C. Host E and host F use the same IP gateway address.
  • D. The FastEthernet 0/0 interface on Router1 and the FastEthernet 0/1 interface on Switch2 trunk ports must be configured using the same encapsulation type.
  • E. Router1 and Switch2 should be connected via a crossover cable.
  • F. Router1 will not play a role in communications between host A and host D.

正解:A、D


質問 # 39
What does a router do if it has no EIGRP feasible successor route to a destination network and the successor route to that destination network is in active status?

  • A. It sends a copy of its neighbor table to all adjacent routers.
  • B. It sends a multicast query packet to all adjacent neighbors requesting available routing paths to the destination network.
  • C. It broadcasts Hello packets to all routers in the network to re-establish neighbor adjacencies.
  • D. It routes all traffic that is addressed to the destination network to the interface indicated in the routing table.

正解:B


質問 # 40
Refer to the exhibit.

Assume that all of the router interfaces are operational and configured correctly. How will router R2 be affected by the configuration of R1 that is shown in the exhibit?

  • A. R2 will not have a route for the directly connected serial network, but all other directly connected networks will be present, as well as the two Ethernet networks connected to R1.
  • B. Router R2 will obtain a full routing table, including a default route, from R1.
  • C. R2 will obtain OSPF updates from R1, but will not obtain a default route from R1.
  • D. Router R2 will not form a neighbor relationship with R1.

正解:D

解説:
Open Shortest Path First http://en.wikipedia.org/wiki/Open_Shortest_Path_First
The configuration of R1 shows "router ospf 1" however, the diagram also shows that both routers should be in the backbone OSPF Area of "0". When routers are in different OSPF areas they will not form a neighbor relationship. Neighbor relationships As a link state routing protocol, OSPF establishes and maintains neighbor relationships in order to exchange routing updates with other routers. The neighbor relationship table is called an adjacency database in OSPF. Provided that OSPF is configured correctly, OSPF forms neighbor relationships only with the routers directly connected to it. In order to form a neighbor relationship between two routers, the interfaces used to form the relationship must be in the same area. Generally an interface is only configured in a single area, however you can configure an interface to belong to multiple areas. In the second area, such an interface must be configured as a secondary interface. (A neighbor state simulation shows how neighbor state changes from Down to Full Adjacency progressively with exchanging Hello, DD, Request, Update, and Ack packets).


質問 # 41
What can be done to secure the virtual terminal interfaces on a router? (Choose two.)

  • A. Create an access list and apply it to the virtual terminal interfaces with the access-group command.
  • B. Administratively shut down the interface.
  • C. Physically secure the interface.
  • D. Configure a virtual terminal password and login process.
  • E. Enter an access list and apply it to the virtual terminal interfaces using the access-class command.

正解:D、E

解説:
It is a waste to administratively shut down the interface. Moreover, someone can still
access the virtual terminal interfaces via other interfaces -> A is not correct.
We can not physically secure a virtual interface because it is "virtual" -> B is not correct.
To apply an access list to a virtual terminal interface we must use the "access-class" command.
The "access-group" command is only used to apply an access list to a physical interface -> C is
not correct; E is correct.
The most simple way to secure the virtual terminal interface is to configure a username &
password to prevent unauthorized login -> D is correct.


質問 # 42
Which protocol provides a method of sharing VLAN configuration information between two Cisco switches?

  • A. 802.1Q
  • B. VTP
  • C. RSTP
  • D. STP

正解:B

解説:
Understanding VLAN Trunk Protocol (VTP) http://www.cisco.com/en/US/tech/tk389/tk689/technologies_tech_note09186a0080094c52.shtml
Introduction VLAN Trunk Protocol (VTP) reduces administration in a switched network. When you configure a new VLAN on one VTP server, the VLAN is distributed through all switches in the domain. This reduces the need to configure the same VLAN everywhere. VTP is a Cisco-proprietary protocol that is available on most of the Cisco Catalyst series products.


質問 # 43
What occurs on a Frame Relay network when the CIR is exceeded?

  • A. All TCP traffic is marked discard eligible and a BECN is sent.
  • B. All TCP traffic is marked discard eligible.
  • C. All UDP traffic is marked discard eligible and a BECN is sent.
  • D. All traffic exceeding the CIR is marked discard eligible.

正解:D

解説:
Committed information rate (CIR): The minimum guaranteed data transfer rate agreed to by the Frame Relay switch. Frames that are sent in excess of the CIR are marked as discard eligible (DE) which means they can be dropped if the congestion occurs within the Frame Relay network. Note: In the Frame Relay frame format, there is a bit called Discard eligible (DE) bit that is used to identify frames that are first to be dropped when the CIR is exceeded.


質問 # 44
Refer to the exhibit.

RTA is configured with a basic configuration. The link between the two routers is operational and no routing protocols are configured on either router. The line shown in the exhibit is then added to router RTA. Should interface Fa0/0 on router RTB shut down, what effect will the shutdown have on router RTA?

  • A. Router RTA will send an ICMP packet to attempt to verify the route.
  • B. A route to 172.16.14.0/24 will remain in the RTA routing table.
  • C. A packet to host 172.16.14.225 will be dropped by router RTA.
  • D. Because router RTB will send a poison reverse packet to router RTA, RTA will remove the route.

正解:B

解説:
http://www.cisco.com/en/US/tech/tk365/technologies_tech_note09186a00800ef7b2.shtml


質問 # 45
Which statements are true about EIGRP successor routes? (Choose two.)

  • A. Successor routes are stored in the neighbor table following the discovery process.
  • B. A successor route is used by EIGRP to forward traffic to a destination.
  • C. Successor routes are saved in the topology table to be used if the primary route fails.
  • D. A successor route may be backed up by a feasible successor route.
  • E. Successor routes are flagged as 'active' in the routing table.

正解:B、D

解説:
Introduction to EIGRP http://www.cisco.com/en/US/tech/tk365/technologies_tech_note09186a0080093f07.shtml
Feasible Successors A destination entry is moved from the topology table to the routing table when there is a feasible successor. All minimum cost paths to the destination form a set. From this set, the neighbors that have an advertised metric less than the current routing table metric are considered feasible successors. Feasible successors are viewed by a router as neighbors that are downstream with respect to the destination.
These neighbors and the associated metrics are placed in the forwarding table.
When a neighbor changes the metric it has been advertising or a topology change occurs in the
network, the set of feasible successors may have to be re-evaluated. However, this is not
categorized as a route recomputation.


質問 # 46
A soda brand is presented the following results based on a marketing mix model to explain year-over-year sales change.

How should the competitive media value be interpreted?

  • A. Competitive media generated a 2.0% sales decrease
  • B. Competitive media yearly activity increased by 2.0%
  • C. Competitive media yearly activity declined by 2.0%
  • D. Competitive media generated a 2.0% sales increase

正解:B


質問 # 47
The command show frame-relay map gives the following output:
Serial 0 (up): ip 192.168.151.4 dlci 122, dynamic, broadcast, status defined, active
Which statements represent what is shown?(Choose three.)

  • A. DLCI 122 represents the local number used to connect to the remote address
  • B. 192.168.151.4 represents the IP address of the remote router
  • C. active indicates that the ARP process is working
  • D. 192.168.151.4 represents the IP address of the local serial interface
  • E. broadcast indicates that a dynamic routing protocol such as RIP v1 can send packets across this PVC
  • F. DLCI 122 represents the interface of the remote serial interface

正解:A、B、E

解説:
http://www.cisco.com/en/US/docs/ios/12_2/wan/command/reference/wrffr4.html#wp1029343


質問 # 48
......


試験は、Facebookマーケティングに関連する幅広いトピックをカバーしており、オーディエンスインサイト、広告ターゲティング、キャンペーン最適化、測定などが含まれます。試験の問題は、候補者がFacebookのマーケティングツールの知識をテストし、それらを実世界のマーケティングシナリオに適用する能力を評価するように設計されています。この試験はオンラインで受験可能であり、仕事や場所を離れることなく認定を取得したいマーケターにとって便利です。

 

200-101[2025年04月] 最新リリース] 試験問題あなたを必ず合格させます:https://www.jpntest.com/shiken/200-101-mondaishu

弊社を連絡する

我々は12時間以内ですべてのお問い合わせを答えます。

オンラインサポート時間:( UTC+9 ) 9:00-24:00
月曜日から土曜日まで

サポート:現在連絡