discuss if the adoption of extensive process automation will have effects on software engineers ?
account that prototype system should not generally be utilized as a production
Make me a program that accepts a random string (a series of characters). Then, look for a digit from that string and if there's at least one, print out "That one!" but if there's none, print out "No one..."
I know this is too sudden to ask you, but thank you in advance!
Tip: After your scan for the size, add a space after the placeholder like this so that the newline character directly after the number won't be scanned as one of the characters:
scanf("%d ", &size);Input
1. Size of the string
2. Characters of the string
Output
The first line will contain a message prompt to input the size of the string.
The second line will prompt for the characters of the string.
The last line contains the appropriate string.
Enter·the·size:·18
Enter·the·characters:·CodeChum1sAwesome!
That·one!We've already made arraying/listing the easy way, but how about arraying/listing and printing the list in reverse order?
Make a program that will input an integer and then using loops, add items on an array/list one by one for the same number of times as that of the first inputted integer. Then, print out the array/list in reverse order, that is, starting from the last item on the array/list down to the first one, each in separated lines.
Input
1. Size of the array
2. Elements of the array
Output
The first line will contain a message prompt to input the size of the array.
The succeeding lines will contain message prompts to input the elements of the array.
The next lines will contain the elements of the array in reversed order.
Enter·the·size:·5
Element·#1:·1
Element·#2:·64
Element·#3:·32
Element·#4:·2
Element·#5:·11
Reversed·Order:
Element·#1:·11
Element·#2:·2
Element·#3:·32
Element·#4:·64
Element·#5:·1
Develop a program that takes as input a series of positive integers and outputs, starting from the second input, whether each input is larger than, less than or equal to the largest integer entered until that input. The program should terminate if a negative integer is provided.
In the example below, 3 is the first input. When the second input, 4, is entered, the program outputs “GREATER THAN 3” since 4 > 3, and waits for the next input. For the next input, 5, the program outputs “GREATER THAN 4” since 5 > 4 (the largest integer entered until that point). This continues until -1 is entered.
Eg:
Input:
3
4
5
6
1
6
-1
Output:
GREATER THAN 3
GREATER THAN 4
GREATER THAN 5
LESS THAN 6
EQUAL TO 6
Find latitude and longitude of utmost 20 countries, ordered by population, with a population greater or equal to the population limit given below and have atleast one currency exclusively for themselves. (countries like Madagascar, Sri Lanka but not India, USA). Use the country details from this dataset.
Your task is to find the sum of the length of all lines (in kms) that can be drawn between co-ordinates of these countries.
Population limit: 31028700
Note: Population limit will change at random intervals. So please make sure answer is computed for the correct population limit before submitting.
create a public class named monday. this class shall contain the main method
An automobile travels at an average speed of 55 miles per hour for four hours. Draw a flowchart, write an algorithm and design a C++ program that displays the distance driven, in miles that the car has traveled after 0.5 1.0, 1.5 hours, and so on until the end of the trip.
A machine purchased for P28,000 is depreciated at a rate of P4,000 a year for seven years. Draw a flowchart, write an algorithm and design a C++ program that computes and displays in a suitably sized list box a depreciation table for seven years. The table should have the following form:
Year
Depreciation
End-of-year value
Accumulated depreciation
1
4000
24000
4000
2
4000
20000
8000
3
4000
16000
12000
4
4000
12000
16000
5
4000
8000
20000
6
4000
4000
24000
7
4000
0
28000
Draw a flowchart, write an algorithm and design a C++ program for an inventory system that will alert the user to reorder an item based on:
a. The stock-on-hand or an order is below the reorder point
b. The item is not obsolete
Use the selection structure