Posts
1 Packet Tracer Deploying and Cabling Devices Video Tutorial
- Get link
- X
- Other Apps
2 Creating Domain , adding Roles and Features for Windows Server 2012
- Get link
- X
- Other Apps
Exercise 2 : Creating Domain, Adding Roles and Features in Windows Server 2012 Objectives : 1. Configure the server to be ready to create a domain . 2. Add Roles and Features in Windows server and install them. a. Add Role Directory Name and Services • Group Policy 3. Create Domain for Windows 2012 server. 4. Create DSA Directory Service Agent. Introduction In today's article you will learn how to create a domain in Windows Server 2012. Step 1 First of all login to your Windows Server 2012 and open the Server Manager. In the Server Manager click on "Add Roles and Features". Step 2 Now some important information will be given, you can read it and then click on the "Next" button. After clicking on Next, The Installation type page will be opened that will ask you to select one of the options. Select the first option i.e. "Role Based on Feature based Installation" and then click on "Next". Step 3 Now you must select a Server from t...
Lesson 4 If Else If Condition statement to Compute Scholarship discount using Relational Operators Sample Program Explained
- Get link
- X
- Other Apps
Logical Operators Example Statement • && and • || Or • ! Not Problem : if else if • Input grade , determine if grade is 100-99 to avail 100% discount, 96-98 to avail 50% discount 94-95 25% discount otherwise no discount. Compute and display discount and amount due. 1. Input name, grade , tuition 2. Determine the discount : if grade is 100-99 to avail 100% discount, 96-98 to avail 50% discount 94-95 25% discount otherwise no discount. 3. Compute and display discount and amount due. package ifelseif_scholarship; import java.io.*; import javax.swing.*; public class IfElseIf_Scholarship { public static void main(String[] args) { //declare global variables double grade, discount,tuitionFee ,amountDue; String name,scholarship_grant; name=JOptionPane.showInputDialog(null, "Enter your name"); grade =Double.parseDouble(JOptionPane.showInputDialog(nu...