Posts

Creating Video Presentation

Image

1 Packet Tracer Deploying and Cabling Devices Video Tutorial

Image

2 Creating Domain , adding Roles and Features for Windows Server 2012

Image
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...

HTML 5 Entities, Formatting , Links

Exercise HTML Basics

My Profile Name : Your Name My favorite Songs 10000 Reasons Lead Me Lord Power of your Love I Offe Life To you My favorite Subjects Photography Video and Film Productions Web Programming I Offer my Life To you Links Facebook Portfolios Discuss about the contents of your portfolio Comm

Exercise 1 HTML Basic Tags

My Profile Name : Your Name My favorite Songs 10000 Reasons Lead Me Lord Power of your Love I Offe Life To you My favorite Subjects Photography Video and Film Productions Web Programming I Offer my Life To you Links Facebook Portfolios Discuss about the contents of your portfolio Comm

Lesson 4 If Else If Condition statement to Compute Scholarship discount using Relational Operators Sample Program Explained

Image
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...

lesson 2 math operations Using Java Netbeans IDE 8.2 Featuring the Scanner input Reader

Image
package firstprograms; import java.util.Scanner ; import java.io.*; public class MathBasic {   public static void main(String args[])   {     Scanner in=new Scanner (System.in).useDelimiter("\n"); //Class needed to use scanner input reader     //list of variables to store 2 input numbers      float n1,n2 ;     // list of variables to store computer values      double sum, diff,quotient,product;           //input first numbers ;      System.out.print("Ënter first number : ");       //read and store input number       n1=in.nextInt();            //input second numbers ;      System.out.print("Ënter second number :");       //read and store input ...

lesson 1 Easy Java Program , Input using Scanner , and output statement, Complete and Detailed Explanation Per Line

Image
package firstprograms; import java.io.*;    // library required for scanner input output functions import java.util.Scanner;   // library required for scanner input reader public class InputOutput {         public static void main(String args [])             {                     // list of variables                 String name ;   // String type stores text , characters and numbers                 int age;        // int store whole numbers                 Scanner in = new Scanner(System.in).useDelimiter("\n");   /...

UML Unified Modeling Language

Unified Modelling Language The Unified Modeling Language (UML) was generated to forge a common, semantically and syntactically rich visual modeling language for the architecture, design, and application of complex software systems both physically and developmentally. UML has applications outside software development, such as process flow in manufacturing. It is similar to the blueprints used in other fields, and contains different kinds of diagrams. In combined, UML diagrams defines the boundary, structure, and the performance of the system and the objects inside it. UML is not a programming language but there are tools that can be used to produce code in various languages using UML diagrams. UML has a straight relation with object-oriented analysis and design. History of UML The Three Amigos’ of software engineering as they were acknowledged, had developed other methodologies. They teamed up to deliver simplicity for programmers by making new standards. The teamwork betw...