Your company has a main office and two branch offices. Domain controllers in the main office host an Active Directory-integrated zone.The DNS servers in the branch offices host a secondary zone for the domain and use the main office DNS servers as the DNS Master servers for the zone. Each branch office has an application server. Users access the application server by using its fully qualified domain name. You need to ensure that users in the branch offices can access their local application server even if the WAN links are down for three days.What should you do?()
A. Increase the Expires After setting to 4 days on the Start of Authority (SOA) record for the zone.
B. Increase the Refresh Interval setting to 4 days on the Start of Authority (SOA) record for the zone.
C. Configure the Zone Aging / Scavenging Properties dialog box to enable Scavenge stale resource records, and set the Refresh setting to 4 days.
D. Configure the Zone Aging / Scavenging Properties dialog box to enable Scavenge stale resource records, and set the No-refresh interval setting to 4 days.
第1题:
下列写法正确的是( )。
A.main () { int i=3,j; j=5 }
B.main() { int i=3;
C.main ()
D.main() {;}
第2题:
下列写法正确的是( )。
A.main() { int i=3,j; j=5 }
B.main() { int i=3;
C.main()
D.main() {;}
第3题:
有以下程序
main()
{char *s[]={"one","two","three"},*p;
p=s[1];
printf("%c,%s\n",*(p+1),s[0]);
}
执行后输出结果是
A.n,two
B.t,one
C.w,one
D.O,two
第4题:
运行名为main的菜单程序的命令是( )。
A.DO main
B.DO main.mpr
C.DO main.mnx
D.以上都不对
第5题:
有以下程序: main() { char *S[]={"one","two","three"},*p; p=s[1]; printf("%c,%s\n", *(p+1), s[0]); } 执行后输出结果是( )。
A.n,two
B.t,one
C.w,one
D.o,two
第6题:
【单选题】下面程序的输出是。 main() {enum team {my,your=4,his,her=his+10}; printf("%d%d%d%dn",my,your,his,her);}
A.0 1 2 3
B.0 4 0 10
C.0 4 5 15
D.l 4 5 15