现在注册

登录

忘记密码

忘记密码? 请输入您的电子邮件地址. 您将收到一个链接,将创建通过电子邮件新密码.

添加后

你必须登录后添加 .

添加问题

您必须登录才能提问.

登录

现在注册

欢迎Scholarsark.com! 您的注册将授予您访问使用该平台的更多功能. 你可以问问题, 做出贡献或提供答案, 查看其他用户以及更多的个人资料. 现在注册!

LinkedIn 技能评估答案和问题 — NoSQL

NoSQL databases have transformed the landscape of data management, 为现代应用程序提供无与伦比的灵活性和可扩展性. 在这份综合指南中, 我们很高兴推出一系列精选的 技能评估问题答案 对于 NoSQL.

无论您是开发人员, a data architect, 或有抱负的专业人士, 该资源专为提高您的熟练程度而定制 NoSQL and equip you with the skills needed to harness the full potential of non-relational databases. Join us as we delve into the world of NoSQL database models, distributed data stores, horizontal scaling, and other critical aspects of working with this innovative technology.

第一季度. Which types of indexes are available in CosmosDB?

  • range and spatial
  • secondary and primary key
  • secondary and spatial
  • range and primary key

Q2. You want to connect a DynamoDB stream to AWS Lambda function. Which one of these object do you create?

  • DynamoDB table
  • DynamoDB trigger
  • DynamoDB item
  • DynamoDB index

Q3. To index a field that holds an array value in MongoDB, which index type do you create?

  • partial
  • sparse
  • compound
  • multikey

第四季度. You want to test HBASE on your laptop using the fewest number of steps. 你做什么工作?

  • Set up Hadoop in pseudo-distributed mode.
  • Set up HBASE in local mode.
  • Set up HBASE in pseudo-distributed mode.
  • Set up Hadoop in local mode.

Q5. You need to create a document database that supports database triggers. Which NoSQL database should you use?

  • 动态数据库
  • BigTable
  • Redis
  • MongoDB

Q6. What is recommended size for Redis keys?

  • 介质
  • 短的
  • single bit

Q7. What does Redis use to sort the elements of a sorted set?

  • Scores
  • Ids
  • 价值观
  • 钥匙

Q8. You need to change the shard key of an existing MongoDB collection. 你做什么工作?

  • Dump the collection data, drop the collection, create a new collection and shard key, import the data.
  • Add second shard key and drop the first shard key.
  • Dump the collection data, drop the collection, presplit the data, create a new collection and shard key, import the data.
  • Drop and recreate the shard key.

Q9. Polyglot storage means using multiple types of what in the same application?

  • Security systems
  • Database systems
  • Storage systems
  • Query systems

辅酶Q10. You need to implement the simplest possible scalable, in-memory cache for your AWS application. Which service do you select?

  • Elasticache using Memcached.
  • 动态数据库.
  • DynamoDB Accelerator (达克斯).
  • Elasticache using Redis.

Q11. You are doing data modelling for Google BigTable. Which statement expresses if and when you should split entities across multiple rows?

  • Keep all information for an entity in a single row. Store related entities in adjacent rows.
  • Keep all information for an entity in a single row.
  • Split entities across multiple rows if the entity data is over thousands of MBs, or if it does not need atomic updates and reads.
  • Split entities across multiple rows if the entity data is over hundreds of MBs, or if it does not need atomic updates and reads.

Q12. Which two characteristics define Amazon Quantum Ledger Database?

  • Key-value data model; transactionally consistent with ACID semantics.
  • Document data model; transactionally consistent with ACID semantics.
  • Key-value data model; transactions with tunable consistency.
  • Document data model; transactions with tunable consistency.

Q13. You need to design the primary key for DynamoDB based on three attributes. 你做什么工作?

  • Designate all three fields as the primary key.
  • Concatenate all three fields into one new field, then designate that new field as the primary key.
  • Designate two fields of the three fields as the primary key.
  • Concatenate two fields into one new field, then designate that new field and the remaining field as the primary key.

Q14. Which of these data types should you avoid in designing a Google Bigtable row key?

  • multi-valued identifiers
  • string identifiers
  • timestamps
  • frequently updated identifiers

Q15. Your startup is building a prototype that has an evolving schema. Your data will be eventually consistent. Your application is hosted in AWS. Which database do you choose?

  • Neptune
  • DocumentDB
  • 动态数据库
  • 亚马逊-极光

Q16. You need to create a scalable database that allows you to share documents across authorized mobile clients in real time. What Google NoSQL database should you use?

  • Memorystore
  • Datastore
  • 火力基地
  • Bigtable

Q17. You need to design security for DynamoDB to allow users read-only access to certain items and attributes in a table. 你做什么工作?

  • Use IAM roles.
  • Use IAM policy conditions.
  • Use a VPC endpoint.
  • Use IAM policies.

Q18. Which statement is preferred Cypher code for Neo4j?

  • 匹配 (:Person)–>(:卡片)–>(:公司) RETURN count(vehicle)
  • Match (:Person)–>(:Car):(vehicle:Car)–>(:公司) RETURN count(vehicle)
  • 匹配 (:Person)–>(vehicle:Car)–>(:公司) RETURN count(vehicle)
  • 匹配 (:Person)–>(:卡片), (vehicle:Car)–>(:公司) RETURN count(vehicle)

Q19. You need multi-item ACID transactions with snapshot isolation within a partition for your cloud-based application. Which NoSQL databse do you choose?

  • Bigtable
  • GraphDB
  • 动态数据库
  • 宇宙数据库

Q20. You need to control your application’s batch updates destination for your Bigtable multinode cluster. Which action do you take?

  • Create a custom app profile to route batch updates.
  • Create a custom app profile to route the batch update from that client.
  • Update the default app profile to route the natch update from that client.
  • Use the default app profile to route batch updates.

Q21. Your query to verify that your Redis key is configured to support expiring user information on a defined interval returns -2, What does this value indicate?

  • The queried key value expired in the last two seconds.
  • The queried key value exists, but has no associated expire value.
  • The queried key value does not exist.
  • There are two expired keys with this value.

Q22. You are designing a MongoDB schema to support queries that will include lookups. 你该怎么办?

  • Create an index on the key value used as the primary key.
  • Create an index on the key value used as the foreign key.
  • Create a multicolumn index on the key value used as the foreign key and the most unique column in the document.
  • Create a multicolumn index on the key value used as the primary and also the foreign key.

Q23. What is the aggregation operator for a join concept in MongoDB?

  • $组
  • $比赛
  • $lookup
  • $项目

Q24. For your mobile application, you need to select a Google cloud database that can support compound, filtered document queries. Which do you choose?

  • Cloud SQL
  • Cloud Spanner
  • Cloud Firestore
  • Cloud Firebase

Q25. To bulk load data into Amazon Neptune, what do you do?

  • Upload data to S3 VPC endpoint, Use the Neptune loader to load from s3 into your Neptune instance
  • Ad data to a Kinesis stream, and use the Neptune loader to load from S# into your Neptune instance.
  • Add data to a Kinesis stream, and create a Kinesis stream VPC endpoint. Use the Neptune loader to load from S3 into your Neptune instance.
  • Upload data to S Use the Neptune loader to load from S3 into your Neptune instance.

Q26. You need to create a pub/sub server. Which database do you use?

  • Neo4j
  • Cassandra
  • Redis
  • MyS#### QL

Q27. SQL databases and NoSQL are which types of scalable?

  • horizontally, infinitely
  • vertically, horizontally
  • vertically, infinitely
  • horizontally, vertically

Q28. You need to create a scalable database that allows you to query data nodes and edges efficiently. What do you use?

  • a relational database
  • a columnstore database
  • a document database
  • a graph database

Q29. You are developing a model for a graph database. Your data will be moved from a relational database into Neo4j. Which of these transformations apply?

  • Rows become labels: bales become nodes.
  • Tables become labels: rows become nodes.
  • Tables become collections: rows become items.
  • Rows become collections: tables become items.

Q30. You need to execute a command for MongoDB that does NOT load values from the .mongorc.js 文件. 你做什么工作 ?

  • Delete the .monorc.js file and restart mongo shell.
  • Use the mongo shell to create a command withnorc option
  • Rem all lines in the .mongorc.js file ad restart mongo shell.
  • Use the mongo shell to create a command withnodedefault option.

Q31. You need to store an unordered collection of name-value pairs with differing data types in DynamoDB. Which data type should you choose?

  • 地图
  • 列表
  • stack

Q32. Which statement retrieves an item from the MusicCollection table in DynamoDB?

  • aws dynamodb querytable-name MusicCollectionkey file://key.json
  • aws dynamodb get-itemtable-name MusicCollectionkey file://key.json
  • aws dynamodb selecttable-name MusicCollectionkey file://key.json
  • aws dynamodb put-itemtable-name MusicCollectionkey file://key.json

Q33. Database availability is measured by which metric?

  • the amount of service calls
  • the number of minutes
  • the amount of service costs
  • the number of nines

Q34. You need to encrypt data at rest in DynamoDB. Which action do you take?

  • You assign a default AWS encryption key to your table to encrypt data.
  • You create an AWS encryption key and assign it to your table to encrypt data.
  • 没有. Data is encrypted by default.
  • You create an AWS encryption key and assign it to your database to encrypt data.

Q35. You need to generate a unique, sequential identifier for each value stored in a Redis cluster. 你做什么工作?

  • Implement a SortedSet object to generate a value.
  • Use the GUID keyword to generate a value.
  • Implement a List object to generate a value.
  • Use the INCR keyword to generate a value

Q36. You want to return a list of all elements in two Redis sets. Which keyword do you use?

  • smembers
  • returnall
  • sunion
  • sismember

Q37. Which method shows you whether MongoDB uses any indexes when running a query, and how the indexes are used?

  • detailQueryExecution()
  • showPlan()
  • explain()
  • describe()

Q38. Which statement accurately describes global secondary indexes in DynamoDB?

  • The global secondary indexes in DynamoDB are consistent, and are not guaranteed to return correct results.
  • The global secondary indexes in DynamoDB are transactionally consistent, and are guaranteed to return correct results.
  • The global secondary indexes in DynamoDB are partially consistent, and are not guaranteed to return correct results.
  • The global secondary indexes in DynamoDB are eventually consistent, and are not guaranteed to return correct results.

reference link:

Q39. Which command do you use to add a value to a Redis stream named mystream?

  • ADD mystream * sensor-id 1234 温度 19.8 1518951480106-1
  • UPDATE mystream * sensor-id 1234 温度 19.8 1518951480106-3
  • XADD mystream * sensor-id 1234 温度 9.8 1518951480106-0
  • INSERT mystream * sensor-d 1234 温度 19.8 15181480106-2

Q40. Which code example completes this statement and creates an index for a MongoDB object named restaurants, sorted ascending by the field name?

var indexCollection = function(db) {return co(function*() {...});};
  • const results = yield db.table('restaurants').createIndex({"name": 1}, null); return results;
  • const results = yield db.collection('restaurants').createIndex({"name": 0}, null); return results;
  • const results = yield db.collection('restaurants').createIndex({"name": 1}, null); return results;
  • const results = yield db.table('restaurants').createIndex({"name": 0}, null); return results;

Q41. Which Cypher code executes the multiquery block?

  • 一个
MATCH (c:Company {name: 'Neo4j'}) RETURN c, MATCH (p:Person) WHERE p.name = 'Jennifer' RETURN p,
MATCH (t:Technology)-[:LIKES]-(a:Person {name: 'Jennifer'}) RETURN t.type;
MATCH (c:Company {name: 'Neo4j'}) RETURN c, MATCH (p:Person) WHERE p.name = 'Jennifer' RETURN p,
MATCH (t:Technology)-[:LIKES]-(a:Person {name: 'Jennifer'}) RETURN t.type
  • C
MATCH (c:Company {name: 'Neo4j'}) RETURN c AND MATCH (p:Person) WHERE p.name = 'Jennifer' RETURN p,
AND MATCH (t:Technology)-[:LIKES]-(a:Person {name: 'Jennifer'}) RETURN t.type;
  • d
MATCH (c:Company {name: 'Neo4j'}) RETURN c;MATCH (p:Person) WHERE p.name = 'Jennifer' RETURN p;
MATCH (t:Technology)-[:LIKES]-(a:Person {name: 'Jennifer'}) RETURN t.type;

[Explaination:]The correct Cypher code to execute a multiquery block would use commas to separate each query in a single statement. 在这种情况下, option B has all the queries separated by commas, making it the correct choice. Option A has the correct queries, but they are separated byRETURNwhich is not correct syntax for multiquery. Option C has an additional “和” before the second query which is also not correct syntax. Option D has each query separated by semicolons, which would execute them as separate queries, not as a multiquery block.

Q42. You need to create a scalable database that supports immutable writes. What do you use?

  • A ledger database
  • A graph database
  • A key-value database
  • A columnstore database

Q43. You need to create a data store for the catalog for your new ecommerce application. Your company is a startup, so the catalog schema may evolve. Which do you choose?

  • Neo4j
  • Redis
  • MySQL
  • MongoDB

Q44. You need to select a NoSQL database for heavy aggregate query workloads. Which type do you choose?

  • graph
  • key-value
  • 文档
  • columnstore

Q45. You need to select a columnstore database that enforce built-in data types. You want to add indexes to improve performance for known workloads. Which do you choose?

  • Cassandra
  • Bigtable
  • Redis
  • HBase

Q46. In DynamoDB, the partition key and sort key are also known as which type of attributes?

  • 范围, hash
  • primary, 范围
  • hash, 范围
  • 范围, secondary

Q47. What is a popular, open-source key-value store database?

  • MongoDB
  • Redis
  • MySQL
  • Cassandra

Q48. You need to create a scalable database to store and query JSON data. What do you use?

  • a relational database
  • a document database
  • a graph database
  • a ledger database

Q49. Which command gets all documents in a MongoDB datastore where the status equals A or the quantity is less than 30?

  • db.inventory.find( { status: “一个”, qty: { $lt: 30 } } )
  • db.inventory.find( { $要么: [ { status: “一个” }, { qty: { $lt: 30 } } ] } )
  • db.inventory.find( { status: “一个”, qty: { $lt: 30 } } )
  • db.inventory.find( { $要么: [ { status: “一个” }, { qty: { $lt: 30 } } ] } )

store and query JSON

辅酶50. Benefit of using NoSQL database?

  • Strict data modeling
  • Limited scalability
  • Easy schema evolution
  • Limited data storage capacity

[Explaination:]One of the bendfits of using NoSQL databases is easy schema evolution. NoSQL databases are designed to handle flexible data models, which can be easily modified and updated as the data evolves. This makes it easier to handle changing.

Q51. NoSQL databases are most often referred to as?

  • Relational
  • Distributed
  • Object-oriented
  • 网络

[Explaination:]Since this non-relational database design does not require a schema, it offers rapid scalability to manage large and typically unstructured data sets. NoSQL is also type of distributed database, which means that information is copied and stored on various servers, which can be remote or local.

作者

  • 海伦·贝西

    你好, I'm Helena, 一位热衷于在教育领域发布有洞察力内容的博客作者. 我相信教育是个人和社会发展的关键, 我想与所有年龄和背景的学习者分享我的知识和经验. 在我的博客上, 您会找到有关学习策略等主题的文章, 在线教育, 职业指导, 和更多. 我也欢迎读者的反馈和建议, 所以请随时发表评论或联系我. 我希望您喜欢阅读我的博客并发现它有用且鼓舞人心.

    查看所有帖子

关于 海伦·贝西

你好, I'm Helena, 一位热衷于在教育领域发布有洞察力内容的博客作者. 我相信教育是个人和社会发展的关键, 我想与所有年龄和背景的学习者分享我的知识和经验. 在我的博客上, 您会找到有关学习策略等主题的文章, 在线教育, 职业指导, 和更多. 我也欢迎读者的反馈和建议, 所以请随时发表评论或联系我. 我希望您喜欢阅读我的博客并发现它有用且鼓舞人心.

发表评论