« 返回题库列表CCNP 300-735认证历年真题与练习测试,Cisco Security 300-735 SAUTO | 思博网络
通过 思博网络 提供的历年真题和练习测试,您可以有效地准备参加 CCNP 300-735认证考试,该考试涉及思科安全自动化领域的内容。 这项为期90分钟的考试是获得CCNP Security和DevNet Professional认证所必需的。该考试旨在评估考生在实施自动化安全解决方案方面的能力。 所涵盖的主题包括编程概念、RESTful API、数据模型、各种协议,以及诸如防火墙、网络安全、DNS安全、云安全、电子邮件安全以及ISE集成等相关的安全领域。 课程《实施Cisco安全自动化解决方案》是备考考试的重要资源,它提供了许多有用的见解和策略,帮助您在考试中取得优异的成绩。 请使用我们的模拟测试、考试题库以及考试模拟系统,以加深您对CCNP 300-735考试的了解,从而确保您在考试中取得好成绩。
问题 #1
What are the several parameter setting methods for Spark applications? (multiple choices)
A. In the application code, set through the SparkConf object
B. Configure in the application configuration file spark-defaults.conf
C. When submitting the application, set it through --conf
D. In the application code, set by the setProperty method of SparkContext
问题 #2
existSolrWhen indexing, which of the following code snippets can significantly improve indexing performance? (multiple choice)
A. AmouthIbClient.setRequestWriter(new BinaryRequestWriterO);
B. Bmouthif(updateRequest.getDocumentsMapO.size)>=10000){cloudSolrClient.request(updateRequest,collName);updateRequest.clear);
C. Cmouthif(updateRequest.getDocuments).size(O>=1000){
D. DcloudSolrClient.request(updateRequest,collName);updateRequest.clearO;S8tW9H2xgntdc=new SolrInputDocument);doc.addField('id',i.tostring( )doc.addField('name', 'Zhang San4i);doc.addField('features','test'+i):doc.addreldc'price, (float)*1.oi);cloudSolrClient.add(doc);cloudSolrClient.commitO:
问题 #3
Which of the following scenarios is notflinkWhat does the component excel at()? (multiple choice)
A. Processing
B. Batch Iterative
C. Computing Stream
D. Data Storage
问题 #4
On the client of FusionInsight HD, execute the kinit {account} command to get what item of KDC?
A. ST
B. jaas.conf
C. TGT
D. Krb5.conf
问题 #5
In Spark, assuming that lines is a DStream object, which of the following statements can periodically count the number of words on this stream?
A. Iines.flatMap(_.split ” “” )).map(word => (word, 1)).reduce(_ +_).print()
B. Iines.flatMap(_.split ” “” )).map(word => (word,word.Iength())).reduceByKey (_ +_).print()
C. Iines.fIatMap(_.spIit ” “” )).map(word => (word, 1)).reduceByKey(_ +_).print()correct
D. Iines.flatMap(_.split ” “” )).flatMap(word => (word, 1)).groupByKey(_ +_).print()
问题 #6
In a FusionInsight HD cluster, Flume does not support writing collected data to which service in the cluster?
A. HDFS
B. HBase
C. Kafka
D. Rediscorrect
问题 #7
existSpark, which of the following statements about broadcast variables is correct?
A. broadcast variable viaSparkContext.broadcast() method to generate
B. Broadcast variables are read-only
C. broadcast variable in everyTasksave a copy
D. broadcast variable in eachExecutorsave a copy
问题 #8
aboutStreamingthe topology (Topology), which of the following descriptions is wrong?
A. AOneTopologyis made up of a group ofSpoutcomponents andBoltcomponents passStream GroupingsA connected directed acyclic graph(DAG)
B. BTopologywill run until it is explicitlykill
C. CBusiness logic is encapsulatedTopologymiddle
D. DOneTopologyOnly one can be specified to startWorkerprocess
问题 #9
In the FusionInsight HD product, what is the role name of the Kafka service?
A. Producer
B. Brokercorrect
C. Consumer
D. ZooKeeper
问题 #10
FusionInsight HDin, useStreamingThe command? way to submitexample.jarmiddleom huawei example WrodCounttask, task name iswcTeat, is the following execution command correct?
A. Astorm jar example jar wcTest om huawei example WordCount
B. Bstorm jar example jar wcTest WrodCount
C. Cstorm jar example jar om huawei example WordCount wcTest
D. Dstorm jar example jar WorkCount wcTest
问题 #11
In MapReduce application development, which of the following JAVA classes is responsible for managing and running a computing task?
A. lobcorrect
B. Context
C. FileSystem
D. Configuration
问题 #12
As the core object of Spark, which of the following characteristics does RDD have? (multiple choice)
A. Read onlycorrect
B. Partitioncorrect
C. Fault tolerancecorrect
D. Efficientcorrect
问题 #13
existHBaseWhich of the following interfaces or classes does not need to be involved in the implementation of business logic for writing data?
A. Put
B. HTable
C. HBaseAdmin
D. PutList
问题 #14
In FusionInsight HD, what are the roles that belong to the Streaming service? (multiple choice)
A. Nimbuscorrect
B. Supervisorcorrect
C. Broker
D. quorumpeer
问题 #15
A certain project needs to save the online data in a certain area and search the full text whether there is any sensitive information in these online records to prevent crimes in the area. In this scenario, which of the following is the best solution?
A. Store data on HBase, and satisfy fuzzy matching queries through HBase's filtering features.
B. Create an index on Solr, save the data, and return all the data when searching the full text.
C. When storing data, create an index on Solr and store the complete data in HBasx; when querying, obtain key information of records through Solr full-text search, and obtain complete records on HBase through key information.
问题 #16
In FusionInsight HD, which of the following source types does Flume support? (multiple choice)
A. Avrocorrect
B. HBase
C. Kafkacorrect
D. HTTPcorrect
问题 #17
In Spark, which of the following is the operator that takes the intersection of the DataFrame?
A. filter (condifionExpr: String): DataFrame
B. join (right: DataFrame, join Exprs: Column): DataFrame
C. intersect (other: Data Fra me): Data Fra mecorrect
D. dropDuplicates():DataFrame
问题 #18
To create a table through HBase's createTable method, what parameters must be passed in?
A. Table name
B. Table names and columns
C. Table name and column familycorrect
D. Can be empty
问题 #19
When indexing in Solr, which of the following code snippets can significantly improve indexing performance? (multiple choice)
A. lbClient.setRequestWriter (new BinaryRequestWriter());correct
B. if (updateRequest.getDocumentsMap().size() >= 10000) {cloudSolrClient.request (updateRequest, collName);updateRequest.clear();}correct
C. if (updateRequest.getDocuments().size() >= 1000) {cloudSolrClient.request (updateRequest, collName);updateRequest.clear();}
D. SolrlnputDocument doc = new SolrlnputDocument();doc.addField ("id", i.toString());doc.addField ("name", "Zhang San" + i);doc.addField ("features", "test" + );doc.addField ("price", (float) i * 1.01);
问题 #20
FusionInsight HDmiddle,OozieBefore submitting the job, you need to upload the configuration files andjarpackage toHDFS
问题 #21
Set the data block storage size to 128M. When the HDFS client writes a file, when writing a 100M file, how much storage space is actually occupied?
A. 128M
B. 100Mcorrect
C. 64M
D. 50M
问题 #22
In FusionInsight HD, if there are multiple sources in a Flume configuration file, the source names cannot be repeated.
问题 #23
Because Spark is a memory-based computing engine, the amount of data that a Spars application can process cannot exceed the total memory allocated to the Spark application.
问题 #24
HDFSclient withNcopy toHDFSWhen writing a file, if one of the replicas fails to write, all replicas will return to writing Entry failed.
问题 #25
In FusionInsight HD's Hive, the user-defined UDF can have the same name as the Hive built-in UDF. In this case, the user-defined UDF will be used.
问题 #26
In the Fusioninsight HD product, what is wrong about the Kafka secure and non-secure port description? (Note: The old API refers to the old Producer API and the old Consumer API. Among them, the old Consumer API: refers to the interface defined in kafka.consumer.ConsumerConnector; the old Producer API: refers to the interface defined in kafka.producer.Producer.)
A. Kafka cluster security access port defaults to 21007, non-secure access port defaults to 21005.
B. The premise for the old API to access a topic through port 21005 is that the server parameter allow.everyone.if.no.acl.found is set to true, and the topic does not have ACL attributes set
C. The old API only supports access to port 21005; the new API is compatible with access to non-secure port 21005 and secure port 21007.
D. For topics with ACL set, you can use the old API to connect to port 21005 for access.correct
问题 #27
A certain project needs to save the online data in a certain area and search the full text whether there is any sensitive information in these online records to prevent crimes in the area. In this scenario, which of the following is the best solution?
A. Create an index on Solr, save the data, and return all the data when searching the full text.
B. Store data on HBase, and satisfy fuzzy matching queries through HBase's filtering features.
C. When storing data, create an index on Solr and store the complete data in HBasx; when querying, obtain key information of records through Solr full-text search, and obtain complete records on HBase through key information.correct
问题 #28
When the HDFS client writes files to HDFS with N copies, if one of the copies fails to write, all copies will return the write failure.
问题 #29
For the HBase component of the FusionInsight HD platform, what attributes of the secondary index need to be defined when adding a secondary index? (multiple choice)
A. Index namecorrect
B. Index columncorrect
C. Index column typecorrect
D. The name of the column family to which the index column belongscorrect
问题 #30
In FusionInsight HD, use the Streaming command line to submit the om.huawei.examole.WordCount task in example.jar. The task name is wcTest. Which of the following commands is correct?
A. storm jar example .jar wcTest om.huawei.example.WordCount
B. storm jar example .jar wcTest WordCount
C. storm jar example .jar om.huawei.example.WordCount wcTestcorrect
D. storm jar example.jar WordCount wcTest