Concept explainers
Explanation of Solution
Program code:
Main.java
//import the required packages
import java.io.File;
import java.util.Arrays;
import java.util.Scanner;
//define a class inputStats
public class Main
{
//define the main
public static void main(String[] args) throws Exception
{
//create the object of File class
File fileName = new File("carroll.txt");
//create the object of Scanner class to refer the file
Scanner input = new Scanner(fileName);
//call the method mostCommonNames()
inputStats(input);
}
//define the method inputStats()
public static void inputStats(Scanner input)
{
//declare integer variables
int lineNum=0;
int longestLine=0;
//declare string variable
String longestString="";
//iterate a while loop to get the lines of the file
while(input.hasNextLine())
{
//increment the lineNum by 1
lineNum++;
//get the lines to the variable line
String line=input.nextLine();
//condition for checking the length of the line
if(line.length()>longestLine)
{
//length of the line is assigned to the variable
longestLine=line.length();
//set the value of longestString as line
longestString=line;
}
//create two integer variables
int token=0;
int longest=0;
//create a variable of Scanner class
Scanner console=new Scanner (line);
//iterate a while loop to get the tokens
while(console.hasNext())
{
//increment the value of token by 1
token++;
//get each words to word
String word=console.next();
//if the length of the word is greater than longest
if(word.length()>longest)
{
//set the length of the word to variable longest
longest=word.length();
}
}
//print the values
System.out.printf("Line %d has %d tokens (longest = %d)\n", lineNum, token, longest);
}
//print the longest string
System.out.println("Longest line: "+longestString);
}
}
file.txt
Beware the Jabberwock, my son,
the jaws that bite, the claws that catch,
Beware the JubJub bird and shun
the frumious bandersnatch...
Trending nowThis is a popular solution!
Chapter 6 Solutions
MyProgrammingLab with Pearson eText -- Access Code Card -- for Building Java Programs
- (use R language)Scatter plot(a). Run the R code example, and look at the help file for plot() function. Try different values for arguments:type, pch, lty, lwd, col(b). Use par(mfrow=c(3,2)) and output 6 plots with different argument settings.arrow_forward1. Draw flow charts for each of the following;a) A system that reads three numbers and prints the value of the largest number.b) A system reads an employee name (NAME), overtime hours worked (OVERTIME), hours absent(ABSENT) and determines the bonus payment (PAYMENT).arrow_forwardScenario You work for a small company that exports artisan chocolate. Although you measure your products in kilograms, you often get orders in both pounds and ounces. You have decided that rather than have to look up conversions all the time, you could use Python code to take inputs to make conversions between the different units of measurement. You will write three blocks of code. The first will convert kilograms to pounds and ounces. The second will convert pounds to kilograms and ounces. The third will convert ounces to kilograms and pounds. The conversions are as follows: 1 kilogram = 35.274 ounces 1 kilogram = 2.20462 pounds 1 pound = 0.453592 kilograms 1 pound = 16 ounces 1 ounce = 0.0283 kilograms 1 ounce = 0.0625 pounds For the purposes of this activity the template for a function has been provided. You have not yet covered functions in the course, but they are a way of reusing code. Like a Python script, a function can have zero or more parameters. In the code window you…arrow_forward
- make a screen capture showing the StegExpose resultsarrow_forwardWhich of the following is not one of the recommended criteria for strategic objectives? Multiple Choice a) realistic b) appropriate c) sustainable d) measurablearrow_forwardManagement innovations such as total quality, benchmarking, and business process reengineering always lead to sustainable competitive advantage because everyone else is doing them. a) True b) Falsearrow_forward
- Vision statements are more specific than strategic objectives. a) True b) Falsearrow_forwardThe three components of the __________ approach to corporate accounting include financial, environmental, and social performance measures. Multiple Choice a) stakeholder b) triple dimension c) triple bottom line d) triple efficiencyarrow_forwardCompetitors, as internal stakeholders, should be included in the stakeholder management consideration of a company and in its mission statement. a) True b) Falsearrow_forward
- At what level in the organization should the strategic management perspective be emphasized? Multiple Choice a) throughout the organization b) from the bottom up in an organization c) at the top of the organization d) at the middle of the organizationarrow_forwardA good manager can be flexible when it comes to sticking to the original plan; to get good results, the intended strategy has to become the realized strategy. a) True b) Falsearrow_forward________ tend to be quite enduring and seldom change. Multiple Choice a) Strategic objectives b) Vision statements c) Strategic plans d) Mission statementsarrow_forward
- Database System ConceptsComputer ScienceISBN:9780078022159Author:Abraham Silberschatz Professor, Henry F. Korth, S. SudarshanPublisher:McGraw-Hill EducationStarting Out with Python (4th Edition)Computer ScienceISBN:9780134444321Author:Tony GaddisPublisher:PEARSONDigital Fundamentals (11th Edition)Computer ScienceISBN:9780132737968Author:Thomas L. FloydPublisher:PEARSON
- C How to Program (8th Edition)Computer ScienceISBN:9780133976892Author:Paul J. Deitel, Harvey DeitelPublisher:PEARSONDatabase Systems: Design, Implementation, & Manag...Computer ScienceISBN:9781337627900Author:Carlos Coronel, Steven MorrisPublisher:Cengage LearningProgrammable Logic ControllersComputer ScienceISBN:9780073373843Author:Frank D. PetruzellaPublisher:McGraw-Hill Education