Create the psuedocode for an application class named Monogram. Its main() method holds three variables that hold your first, middle, and last initials, respectively. Create a method to which you pass the three initials and that displays the initials twice—once in the order of first, middle, and last, and a second time in traditional monogram style (first, last, middle).

https://answers.yahoo.com/question/index?qid=20170220231446AAhk9MB

That link wasn't helpful but thanks

computer programming

posted by tom Friday, March 10, 2017 at 9:12pm.

Create the psuedocode for an application class named Monogram. Its main() method holds three variables that hold your first, middle, and last initials, respectively. Create a method to which you pass the three initials and that displays the initials twice—once in the order of first, middle, and last, and a second time in traditional monogram style (first, last, middle).

computer programming - anonymous Tuesday, March 14, 2017 at 11:39pm
import java.util.Scanner;

public class Names {

public static void main (String[]args) {

//declare variables
String firstName,
String middleName,
String lastName,
String monogram;

// Create a scanner class
Scanner input = new Scanner (System.in);

System.out.println("Enter your first name: ");
firstName = input.nextLine();

System.out.println("Enter your middle initial: ");
middleName = input.nextLine();

System.out.println("Enter your last name: ");
lastName = input.nextLine();

input.close();

monogram = String.valueOf(first.charAt(0)).toLowerCase() +
String.valueOf(middle.charAt(0)).toUpperCase() +
String .valueOf(last.charAt(0)).toLowerCase();
System.out.println(monogram);

}
}

computer programming - excel Tuesday, March 14, 2017 at 11:41pm
import java.util.Scanner;

public class Names {

public static void main (String[]args) {

//declare variables
String firstName,
String middleName,
String lastName,
String monogram;

// Create a scanner class
Scanner input = new Scanner (System.in);

System.out.println("Enter your first name: ");
firstName = input.nextLine();

System.out.println("Enter your middle initial: ");
middleName = input.nextLine();

System.out.println("Enter your last name: ");
lastName = input.nextLine();

input.close();

monogram = String.valueOf(first.charAt(0)).toLowerCase() +
String.valueOf(middle.charAt(0)).toUpperCase() +
String .valueOf(last.charAt(0)).toLowerCase();
System.out.println(monogram);

}
}

Hope Dat Was Help

Sure! Here's the pseudocode for the Monogram application class:

```
class Monogram:
method main():
// Declare three variables to hold initials
Declare firstNameInitial as Character
Declare middleNameInitial as Character
Declare lastNameInitial as Character

// Assign the initials
Set firstNameInitial = 'A'
Set middleNameInitial = 'B'
Set lastNameInitial = 'C'

// Display the initials twice
Call displayInitials(firstNameInitial, middleNameInitial, lastNameInitial)
Call displayMonogram(firstNameInitial, middleNameInitial, lastNameInitial)

method displayInitials(firstNameInitial, middleNameInitial, lastNameInitial):
// Display the initials in the order of first, middle, last
Display "Initials: " + firstNameInitial + middleNameInitial + lastNameInitial

method displayMonogram(firstNameInitial, middleNameInitial, lastNameInitial):
// Display the initials in traditional monogram style
Display "Monogram: " + firstNameInitial + lastNameInitial + middleNameInitial
```

In this pseudocode, the `main()` method is the entry point of the program. It declares three variables to hold the initials, assigns the initials with example characters, and then calls two methods: `displayInitials()` and `displayMonogram()`.

The `displayInitials()` method takes three initials as parameters and simply displays them in the order of first, middle, and last. The `displayMonogram()` method also takes three initials as parameters but displays them in traditional monogram style: first, last, and middle.

Please note that this pseudocode assumes that you are using a programming language that supports variable declaration and assignment, and the `+` operator is used for concatenating strings. The pseudocode can be easily adapted to any programming language of your choice.