Questions
The term "Dark Ages" is used to describe a period of cultural & intellectual deficiency (i.e....

The term "Dark Ages" is used to describe a period of cultural & intellectual deficiency (i.e. a sort of dark hole in Western Civilization that did not produce significant growth either on a personal or public level). Beowulf belongs to this designated period, though many scholars have since refuted the label of "Dark Ages", arguing that it does grave injustice to the sparse, yet historically & artistically rich, vibrant and colorful literary pieces that survive. Consider the role of "darkness" in Beowulf. To what extent do characters & circumstances of the tale originate & appear bound to darkness. And then where do you see bursts of color emerge (i.e. in the personalities of the characters, in the heroic battles scenes), which suggests that the author & times were, in fact, conducive to creative/imaginative outpourings worthy of our consideration.

In: Psychology

What is the bipedal complex? Besides the definition, name at least four specific characteristics. Please organize...

What is the bipedal complex? Besides the definition, name at least four specific characteristics. Please organize the characteristics you name from head to toe.

In: Biology

Write a JAVA program by making a LOGIN form using Excel file for validation. if user...

Write a JAVA program by making a LOGIN form using Excel file for validation. if user is found, display the user's First Name and Last Name.


In: Computer Science

Write a program in Java Swing that can Display all the name list then will generate...

Write a program in Java Swing that can Display all the name list then will generate and display the longest name out of a list of names. Thank you...

In: Computer Science

In C#, declare structure named Person. The structure should have the following attributes of first name,...

In C#, declare structure named Person. The structure should have the following attributes of first name, last name, zip code, and phone number.

In: Computer Science

In a recent study, 35% of people surveyed indicate chocolate was their favorite flavor of ice...

In a recent study, 35% of people surveyed indicate chocolate was their favorite flavor of ice cream. Suppose we select a sample of 8 people and ask them to name their favorite flavor of ice cream.

How many of those in the sample would you expect to name chocolate? (Round your answer to 1 decimal place.)

What is the probability exactly four of those in the sample name chocolate? (Round the probability to 5 decimal places and the final answer to 4 decimal places.)

What is the probability four or more name chocolate? (Round your probability to 4 decimal places.)

In: Statistics and Probability

in java Jimmy wants to store course grades and corresponding student last names using two parallel...

in java Jimmy wants to store course grades and corresponding student last names
using two parallel arraylists (Double and String).

She also wants to identify the average of all the grades.

Use a while loop.
Prompt the user for each grade and use -1 as the sentinel.

Ask for the student name if -1 has not been entered for the grade.

Be sure to output the average of the grades. (**Hint: You will need to figure out the sum first)

Use a for loop to output the name and grade for each student to look like this:

Grade: 99 Name: Billy

Grade: 98 Name: Sandy

etc..

In: Computer Science

write a script in ruby to automate user account creation in Linux using a CSV file....

write a script in ruby to automate user account creation in Linux using a CSV file. Username is a combination of first initial last initial of the first name and last name in the last name followed by the first initial last initial(Ex. Sam Smith = smithsm). If two or more employees had the same first and last name appends a number to the end of the username. After accounts are created write the first and last names along with their username to a CSV file

CSV Example:

first_name last_name

Bob Key

Jeff Scolding

Peter Van't Blob

Sam Smith

Sam Smith

In: Computer Science

<HTML JAVASCRIPT> Please create an array of student names and another array of student grades. Create...

<HTML JAVASCRIPT>

Please create an array of student names and another array of student grades.

Create a function that can put a name and a grade to the arrays.

Keep Read student name and grade until student name is “???”. And save the reading by using a function

Create another function to show all the grade in that object.

Create the third function that can display the maximum grade and the student’s name.

Create a sorting function that can sort the arrays based on the student’s grade.

Display all the grades and names sorted by the grade.

[Report]

PLEASE POST OUTPUT IN NOTEPAD++ or NOTEPAD! Thanks

In: Computer Science

Hello i am working on an assignment for my programming course in JAVA. The following is...

Hello i am working on an assignment for my programming course in JAVA. The following is the assignment:

In main, first ask the user for their name, and read the name into a String variable. Then, using their name, ask for a temperature in farenheit, and read that value in. Calculate and print the equivalent celsius, with output something like

 Bob, your 32 degrees farenheit would be 0 degrees celsius

Look up the celsius to farenheit conversion if you do not remember it, your answer should not always be a whole number.

☑ Then have your program ask for the temperature in celsius and print the equivalent farenheit, in the same way.

I have correctly been able to do the first step, however i am unable to figure out how to properly code for the second task, where the program asks for the temperature in celsius and prints the farenheit equivalent. Here is what i have done.

import java.util.Scanner;


public class TempConverter {

/**
* @param args the command line arguments
*/
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
Scanner scName = new Scanner(System.in);
String name;
System.out.print("Enter your name : ");
name = scName.nextLine();
System.out.print("Hi "+name+" Enter temperature in farenheit : ");
double temp = sc.nextDouble();
double tempInCel = (temp - 32) * 5 / 9;
double tempInFahr = (temp *9/5)+ 32;
System.out.println(name+", your "+temp+" degrees farenheit would be "+tempInCel+" degrees celsius");
System.out.println(", your "+temp+ " degrees celsius would be" +tempinFahr+" degrees celsius");
}

}

In: Computer Science