Monday, August 10, 2009

WHY I CHOOSE SOFTWARE ENGINEERING

This is a question sidetrack and made me meditate of what is the significant of this to me since being an IT student, software engineering is required on my course. But, what is the significance of this? Is there any?
Well, there really is! The concept of software engineering will help me a lot to understand fully the process of how the system evolves. Not only the system but also the software’s, it is very important of knowing all this in operating a system. Since you know what? It is quiet awkward using them without knowing how it came to existence to answer certain needs.
Moreover, it is a great deal in making a system successfully as a future software engineer if ever….

4 comments:

  1. ..hAi Annelyn..
    ..nice..=)
    ..nOw you have already posted your idea about why we study Software Engineering..
    .. keep up the good work ..
    ..HEhehe..I am expecting for your comment on my blog..(",)

    ..◘gOdspEed◘..mwAah..take care kayo jan

    ReplyDelete
  2. ..hai annelyn...
    ...hope that you will learn a lot from this subject!!!

    ...keep up the good work girl!!!

    ..MAY GOD BLESS YOU ALWAYS!!!

    ReplyDelete
  3. package ENTITY;
    import java.util.*;
    public class PALINDROME {
    public static void main(String[] args){

    Scanner palindrome= new Scanner(System.in);
    System.out.print("--------Please enter a word/s-------- ");
    String word = palindrome.nextLine();

    char []array = word.toCharArray();
    for (int a = 0, b = (array.length - 1); a < (array.length / 2); a++, b--){

    if (array[a] != array[b]){
    System.out.println( "The word you enter is not a palendrome! SORRY!!!");
    break;
    }

    if (a == array.length / 2 - 1){
    System.out.println( "The word you enter is a palendrome! GOOD!!NEXT?!!");
    }}}
    }

    //This is a runnable program!!!!!!!
    ################################################


    package ENTITY;


    import java.util.*;
    import java.io.*;

    public class REVRSEWORD {

    public static void main(String[] args) throws Exception {

    Scanner scan = new Scanner(System.in);

    BufferedReader ar = new BufferedReader(newInputStreamReader(System.in));

    Stack stack = new Stack();

    System.out.println("~~~Welcome~~~");
    System.out.print(" ********Enter a line of text******** ");

    int input = ar.nextInt();

    int len = input.length() - 1;

    for (int m = 0; m <= len; m++) {

    stack.push(input.charAt());

    }
    System.out.println("");
    System.out.println("The reverse word: ");
    System.out.println("");

    for (int p = 0; p < input.length();p++){

    System.out.print(stack.peek());
    stack.pop();
    }

    System.out.println("");
    System.out.println("");


    }
    }

    //Not yet!!!!!!!

    ReplyDelete