Create a pseudocode and flowchart for the following:
Input
Five lines containing a string on each.
C
C#
Java
Python
Javascript
Output
A single line containing all the strings separated by a comma and a space.
C,·C#,·Java,·Python,·Javascript
you are given a string s . write a program to replace each letter of the string with the next letter that comes in the English alphabet.
Secret Message - 2
Given a string, write a program to print a secret message that replaces characters with numbers 'a' with 1, 'b' with 2, ..., 'z' with 26 where characters are separated by '-'.
Note: You need to replace both uppercase and lowercase characters. You can ignore replacing all characters that are not letters.
a b c d e f g h i j k l m n o p q r s t u v w x y z
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
Input
Explanation
For example, if the given input is "python", "p" should replaced with "16", similarly"y" with "25","t" with "20","h" with "8","o" with "15","n" with "14". So the output should be "16-25-20-8-15-14".
Sample Input 1
python
Sample Output 1
16-25-20-8-15-14
Sample Input 2
Foundations
Sample Output 2
6-15-21-14-4-1-20-9-15-14-19
Secret Message - 1
Given a string, write a program to mirror the characters of the string in alphabetical order to create a secret message.
Note: Mirroring the characters in alphabetical order replacing the letters 'a' with 'z', 'b' with 'y', ... , 'z' with 'a'. You need to mirror both uppercase and lowercase characters. You can ignore mirroring for all characters that are not letters.
a b c d e f g h i j k l m n o p q r s t u v w x y z
z y x w v u t s r q p o n m l k j i h g f e d c b a
Explanation
Input
For example, if the given input is "python", "p" should replaced with "k", similarly "y" with "b", "t" with "g", "h" with "s", "o" with "l", "n" with "m". So the output should be "kbgslm".
Sample Input 1
python
Sample Output 1
kbgslm
Sample Input 2
Foundations
Sample Output 2
ulfmwzgrlmh
Create a program using the following features:
* Array
* Class
* Specific Sorting Algorithm
* Specific Searching Algorithm
What is "Specific Sorting Algorithm" and "Specific Searching Algorithm"?
* sorting code that uses a specific sorting process, here is the list of sorting algorithms that you will use
Bubble
Selection
Insertion
Merge
Shell
* searching code that uses a specific searching process, here is the list of searching algorithms that you will use
Linear
Binary
Fibonacci
Jump
Create a program using the following features:
* Array
* Class
* Specific Sorting Algorithm
* Specific Searching Algorithm
Given an integer N as a starting number and K as input, write a program to print a number pyramid of K rows as shown below.
Given starting number is 10, and the number of rows in the pyramid is 5.
So the output should be:
10
11 12
13 14 15
16 17 18 19
20 21 22 23 24
Given an integer number N as input. Write a program to print the right-angled triangular pattern of N lines as shown below.
Note: There is a space after each asterisk ( * ) character
In the given example the solid right angled triangle of side 4. Therefore, the output should be.
* * * *
* * *
* *
*
In the given example, D = Monday.As the 1st of the day of the month is a Monday, it means the 7th and 14th of the month will be Sundays (A week has 7 dats). So the 16th day (N = 16) of the month will be Tuesday.
Sample Input:
Monday
16
Sample Output:
Tuesday