Deno's Language Support
Which programming language does Deno support out of the box for scripting, besides JavaScript?
- TypeScript
- CoffeeScript
- RubyScript
- C++Script
- PythonScript
Package Management Approach
How does Deno handle dependency management differently compared to Node.js?
- Direct URL imports
- Using a package.json file
- Through a deno_modules folder
- By downloading deb files
- Via Gemfile
Security Defaults
What is the default security setting of Deno regarding filesystem and network access?
- Denied by default
- Permitted by default
- Requires password by default
- Always encrypted
- Auto-approved
Standard Library Usage
Which statement correctly describes how Deno’s standard library can be accessed?
- By importing modules from URLs
- By installing via a .librc file
- Through an included node_modules folder
- Via Registry Center
- By using npm install commands
Execution Command
Which command runs a JavaScript or TypeScript file using Deno?
- deno run
- node execute
- den run
- npm start
- dnor
Compatibility with Existing Code
What challenge might developers face when migrating Node.js code directly to Deno?
- Some Node.js APIs are not available in Deno
- Deno only supports Python files
- Deno requires GUI code only
- Files must be renamed to .jsx
- Deno does not support any modules
Global Package Installation
How do users install global command-line tools with Deno?
- Using deno install
- Through global.json
- By typing deno global add
- npm install -g
- deno set up
Module Resolution
Unlike Node.js, what must Deno imports always include when importing from a URL?
- The full file extension
- Only the directory name
- A .package specifier
- A hash code
- A yaml file reference
Built-in Tooling
Which of these developer tools is built into Deno without needing any extra installation?
- Formatter
- Package registry
- Webpack
- TypeORM
- Yarn
Node.js Package Compatibility
Which statement is true about Deno’s compatibility with Node.js packages by default?
- Deno does not natively run Node.js packages
- Deno automatically converts all packages
- Deno requires package.json to work
- All npm packages work without changes
- Deno has built-in nvm