CCNA Cloud CLDFND 210-451 QUIZ: Server Virtualization
Author:海峰 http://weibo.com/344736086
http://yanheven.github.io/
http://blog.csdn.net/yanheven1
1.Which of the following is not a server hardware component?
a. Storage controller
b. NIC
c. Operating system
d. Central Processing Unit (CPU)
e. RAM
2. Which of the following is not a server operating system?
a. Microsoft Windows
b. Free BSD
c. Cisco IOS
d. Linux
3. Which of the following advantages were achieved through mainframe virtualization in the early-1970s? (Choose two.)
a. Performance increase
b. Legacy application support
c. Downsizing
d. User isolation
4. Which of the following is not an advantage from server virtualization on x86 servers? (Choose all that apply.)
a. Hardware efficiency
b. Network provisioning
c. Legacy application support
d. Management cost decrease
5. Which of the following are Type-1 hypervisors? (Choose all that apply.)
a. Linux KVM
b. Xen
c. Microsoft Hyper-V
d. VMware Workstation
6. Please select the options with a hypervisor and its corresponding VM Manager. (Choose all that apply.)
a. KVM and oVirt
b. vSphere and ESX
c. Hyper-V and Hyper-V Manager
d. vSphere and vCenter
e. KVM and OpenStack Nova
7. Which of the following is not a virtual machine file?
a. Virtual disk
b. NVRAM
c. Swap memory
d. NFS
e. Log
8. Which of the following is false?
a. VM high availability enables the restarting of virtual machines that were running on failed hosts.
b. Live migration is a disaster recovery feature that allows the migration of VMs after a physical server suffers a major hardware failure.
c. Resource load balancing allows automatic host selection when you are creating a virtual machine.
d. VM fault tolerance reserves double the resources a virtual machine requires.
9. Which of the following feature is disruptive to a virtual machine?
a. Fault tolerance
b. Live migration
c. High availability
d. Resource load balancing
10. Which of the following feature is more aligned with cloud computing pooling characteristics?
a. Fault tolerance
b. Live migration
c. High availability
d. Resource load balancing
CCNA Cloud CLDFND 210-451 QUIZ: Server Virtualization的更多相关文章
- spring cloud 2.x版本 Eureka Server服务注册中心教程
本文采用Spring cloud本文为2.1.8RELEASE,version=Greenwich.SR3 1.创建服务注册中心 1.1 新建Spring boot工程:eureka-server 1 ...
- Connecting Docker for Cloud Services using SDN and Network Virtualization
Abstract The explosive scale of container CPUs needs highly efficient network virtualization Chal ...
- spring cloud 创建一个简单Eureka Server
在Spring Cloud实现一个Eureka Server是一件非常简单的事情.下面我们来写一个Eureka Server DEMO. 编码 父项目pom.xml <?xml version= ...
- 0701-spring cloud config-简介、Config Server开发、Config Client开发
一.概述 参看地址: https://cloud.spring.io/spring-cloud-static/Edgware.SR3/single/spring-cloud.html#_spring_ ...
- SpringCloud(2) 服务注册和发现Eureka Server
一.简介 EureKa在Spring Cloud全家桶中担任着服务的注册与发现的落地实现.Netflix在设计EureKa时遵循着AP原则,它基于REST的服务,用于定位服务,以实现云端中间层服务发现 ...
- Enabling granular discretionary access control for data stored in a cloud computing environment
Enabling discretionary data access control in a cloud computing environment can begin with the obtai ...
- Tagging Physical Resources in a Cloud Computing Environment
A cloud system may create physical resource tags to store relationships between cloud computing offe ...
- spring cloud config 入门
简介 Spring cloud config 分为两部分 server client config-server 配置服务端,服务管理配置信息 config-client 客户端,客户端调用serve ...
- spring boot / cloud (十七) 快速搭建注册中心和配置中心
spring boot / cloud (十七) 快速搭建注册中心和配置中心 本文将使用spring cloud的eureka和config server来搭建. 然后搭建的模式,有很多种,本文主要聊 ...
随机推荐
- python中对单例模式的理解
class Foo(object): instance = None def __init__(self): pass def process(self): ' @classmethod #版本1单例 ...
- Liunx-php7安装swoole扩展
Liunx-php7安装swoole扩展 标签(空格分隔): php 下载包 https://github.com/swoole/swoole-src/releases 安装过程 直接wget也行直接 ...
- 桌面出现removable storage devices文件夹无法删除解决办法
今天桌面突然出现 removable storage devices 文件夹,且没有删除选项. 解决办法:往电脑里插一下u盘文件夹就会自动消失了.
- 网络流Dinic算法模板 POJ1273
这就是以后我的板子啦~~~ #include <queue> #include <cstdio> #include <cstring> #include <a ...
- POJ 3671 DP or 乱搞
思路: 1.DP f[i][j]:前i个数 最后一个数是j的最小花费 f[i][j]=min(f[i][j],f[i-1][k]+(a[i]!=j));1<=k<=j 这种做法比较有普遍性 ...
- Metasploit的攻击实例讲解----ms10_046快捷方式图标漏洞
不多说,直接上干货! 准备工具 1.Kali linux 2016.2(Rolling)系统 IP: 192.168.1.103 2.受害者机子(windows XP系统) IP: 10.10 ...
- javascript 优秀写法
http://www.csdn.net/article/2014-01-06/2818025-Useful-JavaScript-Tips-Best-Practices
- 使用sysbench 对mysql进行性能测试
使用sysbench 对mysql进行性能测试 sysbench是一个开源的.模块化的.跨平台的多线程性能测试工具,可以用来进行CPU.内存.磁盘I/O.线程.数据库的性能测试.目前支持的数据库有My ...
- iOS——扬声器与听筒的切换
1.扬声器模式: NSError *error; [[AVAudioSession sharedInstance] overrideOutputAudioPort:AVAudioSessionPor ...
- 洛谷 P2014 选课 && caioj 1108 树形动态规划(TreeDP)3:选课
这里的先后关系可以看成节点和父亲的关系 在树里面,没有父亲肯定就没有节点 所以我们可以先修的看作父亲,后修的看作节点 所以这是一颗树 这题和上一道题比较相似 都是求树上最大点权和问题 但这道题是多叉树 ...