Answer:
We should configure the one of domain controller in the Houston to be the global catalog servers.
Explanation:
Configure the Domain controller:
1. Log in the MS Windows server host.
2. Then, click the Start Menu and goto the Tools, click on Manage Your Servers.
- on this wizard, you can choose the Adding Roles to your Servers.
- in Server Role windows you can choose the Domain Controller.
- Then, you can select the default values by the click on NEXT.
- Then, continue accepts default values and click on the Next when the Report DNA Issues windows appears.
- Then, select the Configure and install DNS for proceed to next window.
- Then, continue to click on the Next when the Summary window will display then again click next.
- After all, Active Directory Installation wizards are invoked.
Answer:
Digital computers use a binary system to encode date and programs.
Answer:
Option a is the correct answer for the above question
Explanation:
- The above question code has one for-loop which runs two times only for the value of number=20.
- It is because when the if-condition will true then the loop will be exit because it holds the break statement which exits the for-loop when the if-condition will be true.
- So when the first time 20 will divide by 3 then if-condition will fail, but when the 20 will be divide by the 5, then the if condition will be true and the 5 will be printed as output.
- Then the second if-condition will false because it will be true for the 20 value of i.
- Hence option a is the correct answer while the other is not correct because others will not hold the output of this code.