华为笔试题大全
!
interface Serial0
encapsulation ppp
backup interface Serial 1
ip address 2.1.1.1 255.0.0.0 !
interface Serial1
encapsulation ppp
ip address 3.1.1.1 255.0.0.0 !
interface Serial2
flowcontrol normal
async mode dedicated
encapsulation ppp !
Exit
46 / 89
华为笔试题大全
Router rip ! End
路由器B的配置如下
Quidway#SHOW RUN
Now create configuration...
Current configuration ! !
interface Ethernet0
ip address 10.1.1.1 255.255.0.0 !
interface Serial0
encapsulation ppp
backup interface Serial 1
47 / 89
华为笔试题大全
ip address 2.1.1.1 255.0.0.0 !
interface Serial1
encapsulation ppp
ip address 3.1.1.1 255.0.0.0 !
interface Serial2
flowcontrol normal
async mode dedicated
encapsulation ppp !
Exit
Router rip ! End
下述说法正确的是( )
48 / 89
华为笔试题大全
A、备份功能可以正常使用
B、备份功能不能正常使用
C、两端可以正常互联
D、两端不能正常互联 1~10
B 、CD、 BC 、CD 、B 、C、 D、 ABE 、ABDG 11~20
A 、B 、A D??、CE 、ABD 、ACD、 D 、B、 A 、B? 21~30
D、BC 、D 、C 、B 、A 、A、 C 、AC、 AC 31~40
C 、C 、D、B 、ABD 、C 、E 、AD 、AB 、B 41~50
B 、C 、AC 、B 、AD 、bcd 、A 、C 、A 、BCD
[华为笔试]2006年华为研发类笔试编程题(2006年10月29日晚,成都电子科技大学考试题目)
题目:网球中心共有100个网球场,每个单位可以来申请1到100的场地,申请的场地编号必须是连续的,如果场
49 / 89
华为笔试题大全
地已经被其他单位占用,就不能再次使用,而且单位在使用完场地后必须归还。请设计一个完整的系统(c语言)。(限时5分钟) Tennis.h
struct TennisGround { int num;
char *agentName; };
typedef struct TennisGround TG;
void mallocTG(TG *total); void freeTG(TG *total);
Tennis.c
#include
#include \
50 / 89