Lucas is taking an algebra class with many detailed steps. Which note-taking method would be best for this class?

charting
outlining
mapping
multiplying

Answers

Answer 1

Answer:

outlining

I really do hope this works !

Answer 2

Answer:

Hello!

The answer to your question is B. Outlining

Hope this helps!


Related Questions

What is the first thing Charlotte needs to do after she opens an Excel spreadsheet?

A. Select another program
B. Select a different template
C. Select new blank program
D. Select new blank workbook

Answers

Answer: C

I hope this helps

/*
(Count positive and negative numbers and compute the average of numbers) Write
a program that reads an unspecified number of integers, determines how many
positive and negative values have been read, and computes the total and average of
the input values (not counting zeros). Your program ends with the input 0. Display
the average as a floating-point number.
*/
import java.util.Scanner;
public class Exercise_05_01 {
public static void main(String[] args) {
Scanner input = new Scanner(System.in);

int positives = 0; // Count the number of positive numbers
int negatives = 0; // Count the number of negative numbers
int count = 0; // Count all numbers
double total = 0; // Accumulate a totol
// Promopt the user to enter an integer or 0 to exit
System.out.print("Enter an integer, the input ends if it is 0: ");
int number = input.nextInt();
if (number == 0) { // Test for sentinel value
System.out.println("No numbers are entered except 0");
System.exit(1);
}
while (number != 0) {// Test for sentinel value
if (number > 0)
positives++; // Increase positives
else
negatives++; // Increase negatives
total += number; // Accumulate total
count++; // Increase the count
number = input.nextInt();
}

// Calculate the average
double average = total / count;

// Display results
System.out.println(
"The number of positive is " + positives +
"\nThe number of negatives is " + negatives +
"\nThe total is total " + total +
"\nThe average is " + average);
}
}

Answers

Answer:

Having tested your source code, I realize that there is nothing to be added or removed from the source code you uploaded as your program works perfectly.

However, I've rearranged properly the lines of the program you uploaded.

See attachment

Explanation:

See Explanation

PLEASE HURRY!!!!

What can you change, if anything, in this line so that there will not be a space between the dollar sign and the amount of money due?

print("You owe $", moneyDue)

A) You do not need to change anything. There is no space.
B) print("You owe $" , str(moneyDue))
C) print("You owe $" + str(moneyDue))
D) The space cannot be removed.

Answers

Answer:

print("You owe $", moneyDue, sep="")

Explanation:

By default, Python3 will put a space between two strings like this. If you specify that the separator is an empty string (sep="") then it will not separate the two strings and the space will go away.

Answer:

print("You owe$" + str(moneyDue))

Explanation:

It's the one with the plus sign. Correct on EDG 2021 :D

What is a computer?
please solve with explaining ​

Answers

Answer:

computer is a device for storing and processing data and also to communicate with people

A company needs calculating the total working time of employees in a team. You are going to help to write a program that totals the working time in hours and minutes. You should name your program as working_time.py.

Your program should first ask the user how many employees there are on the team. You may assume the value entered will not be negative, but it could be zero. Your program will now be controlled by a loop that asks for, and adds, the hours and minutes for each employee. Of course, the minutes will frequently add up to more than an hour, but you should not report a total time such as 24 hours 77 minutes for example (or worse, 18 hours 377 minutes). Instead you should report the total time as 25 hours 17 minutes. On the other hand, if the total number of hours is 24 or greater you should not report the time in days, hours and minutes. Hours and minutes are all that are to be reported. While you may assume that all of the hours and minutes entered by the user will be nonnegative, a time may be entered with minutes that exceed 60. Your program should be able to handle this and still report the total correctly.

For example, 5 hours, 65 minutes and 3 hours, 88 minutes should add up to 10 hours, 33 minutes. Consequently for a given team we should see output such as:

Total time: 29 hours 18 minutes

Answers

Answer:

total_hours = 0

total_minutes = 0

employees = int(input("How many employees there are? "))

for e in range(employees):

   hours = int(input("Enter the hours: "))

   minutes = int(input("Enter the minutes: "))

   

   total_hours += hours

   total_minutes += minutes

       

   if total_minutes >= 60:

       total_hours += int(total_minutes / 60)

       total_minutes = total_minutes % 60

print("Total time: " + str(total_hours) + " hours " + str(total_minutes) + " minutes")

Explanation:

Initialize the  total_hours and total_minutes as 0

Ask the user to enter the number of employees

Create a for loop that iterates for each employee. Inside the loop, ask the user to enter the hours and minutes. Add the hours to total_hours (cumulative sum) and add the minutes to total_minutes (cumulative sum). If the total_minutes is greater than or equal to 60, get the number of hours in the total_minutes, divide total_minutes by 60 and get the integer part. Also, set the total_minutes to remainder of the minutes from 60

When the loop is done, print the hours and minutes as requested

describe the application of computer system in our daily life​

Answers

Answer:

Computer is an electronic device which makes our work easier , fast , and comfortable. It is used in various sectors. It is used in our daily life , For students , It is used for solve mathematical problems and for make power point presentation.In house , it is used for online shopping , watch movies , to make recipe of different food items etc can be done using computer.

Thank you ☺️☺️

((Excel)) please help, 100 points, and brain crown thingy, not only that, i will make several of these so you can get several hundred points just for one question if you find them all, that being said... please help me...


just please..

Answers

Answer:

First you read the question and numbers, then you use the numbers in the correct way and you try reallllyyy hard, you will find your answer! Hope this helps! :D

Define Colors. Detail please.

Answers

Answer:

Colors are complex. They are shades, designs, and an illusion that adds to our reality, truly. We have cones in our eyes to help us see these colors. Issac Newton defined colors. ROYGBIV was the acronym. Really, colors are just designs and shades and illusions we can see for many scientific reasons I can't explain in a few minutes.

Hope this helps!

Create a brief program that demonstrates use of a Java exception. For example, you could use InputMismatchException and ask the user to input an integer and show that the program executes correctly if they enter an integer and also show that the exception is thrown and a proper error message is displayed to the user if they input a string of letters. You may want to try it with and without a try catch block for practice, but either one will be sufficient for credit.

Answers

Answer:

Here is the program that demonstrates the use of JAVA exception:

import java.util.Scanner;  //to accept input from user

public class Main {  //class name

   public static void main(String[] args) {  //start of main method

      Scanner input = new java.util.Scanner(System.in);  //creates Scanner class object to accept input from user

       int number1 = 0;  //stores the first integer value

       int number2 = 0;  //stores the second integer value

       while(true) {  //keeps looping until user enters integer value

           System.out.println("Enter 2 integers to perform addition: "); //prompts user to enter two integer values

           try {  //defines a chunk of code to check for errors        

               number1 = input.nextInt(); //reads input integer 1

               number2 = input.nextInt(); //reads input integer 2                  

               break;             }  

           catch (java.util.InputMismatchException e) { // defines a code chunk to execute if an error occurs in the try code chunk

              System.out.println("Input must be an integer "); //displays this message if user enters anything other than an integer value

              input.nextLine();              }         }  // reads input from user again until user enters both integer type values

       System.out.println("The sum is: " + (number1+number2));      }  } //if user enters 2 integers then computes and displays the sum of two integer values

Explanation:

The program uses InputMismatchException exception and asks the user to input two integers and computes the sum of two integers if user enters  integers otherwise an exception InputMismatchException is thrown and a error message Input must be an integer is displayed to the user if they input a string of letters instead o f integer values. Here while loop is used which keeps executing until user enters both the integer values. After the user enters correct values, the sum of the two integers are computed and result is displayed on output screen. The screenshot of program and its output is attached.

Another program asks the user to input an integer and the program executes correctly if they enter an integer but exception InputMismatchException is thrown with an error message that is is displayed to the user if they input a string of letters. Here is the program:

import java.util.Scanner;

public class Main {

   public static void main(String[] args) {

       Scanner input = new java.util.Scanner(System.in);

       int number1 = 0;          

       while(true) {

           System.out.println("Enter an integer value: ");        

           try {

               number1 = input.nextInt();  

               break;             }  

           catch (java.util.InputMismatchException e) {

              System.out.println("Input must be an integer ");

              input.nextLine();             }        }  

       System.out.println("The program executed correctly!");  } }

help me please you don't have to answer all , only 1 is okay. thank you so much​

Answers

Answer:

15 maybe an advertisement?

Explanation:

Murray University invested over $450,000 in a customized learning management system so that professors could put courses online and use the Internet to deliver course content and communications to students. After the first year of use, only 20% of the faculty were using the system. Administrators were frustrated to learn that most faculty found the system difficult to use and that students also had difficulty understanding how to find information on the system. This case is an example of which of the following information deficiencies?

a.Lost or bypassed data
b. User-fierce interfaces
c. Data silos
d. Non-standardized data

Answers

Answer:

b. User-fierce interfaces

Explanation:

Based on the scenario being described it seems this is an example of User-fierce interfaces. This basically means that the system in question is not very user friendly, which ultimately makes it very difficult for users to understand, use, and manipulate. This tends to cause the users to get frustrated and ultimately stop using the system as they believe it is too difficult and not worth their time. This is what seems to be happening with the customized learning management system in this question since the 20% of the users quit instantly due to the difficulty of the system.

Write code for a 3rd Grade math tutor program that provides simple addition questions. Use only numbers in the range 0 to 100 inclusive in the math problems. No number should exceed 100 in the questions or answers.

Answers

Answer:

Here is the JAVA program:

import java.util.Random;   //to generate random numbers

import java.util.Scanner;  //to accept input from user

public class Main {  //class name

   public static void main(String[] args) { //start of main method

      int score = 0;  //to store the number of correct answers

Random rand = new Random();  //generates random numbers

int answer;  //to store the answers given by student

       do {  //to keep asking addition questions

            int number1 = rand.nextInt(101);  //generate random number from 0 to 100 for operand 1

       int number2 = rand.nextInt(101);  //generate random number from 0 to 100 for operand 2          

           Scanner input = new Scanner(System.in);  //to read input from user

           System.out.print("What is " + number1 + " + " + number2 + " ? ");  //asks addition question

            answer = input.nextInt();  //reads the answer from user(student)

           if ((number1 + number2) == answer)  //if user answer of addition of two numbers is correct            

               score = score + 1;     //adds 1 to the score each time the answer to the addition question is correct

                 }while(answer<=100);  //keeps asking question until the answer number exceeds 100

               System.out.println("Total score is: " + score);  }}//displays the total score of student

           

Explanation:

The above program basically asks addition questions from user. Each addition question has two random numbers and the answer is given by user. At each right answer, the variable score is incremented by 1 in order to store the number of correct answers by user. If the answer to any addition question exceeds 100 then the loop breaks and program stops and the questions answered before that question is considered only.

Another way to do this is to ask 10 addition questions by using random numbers as operands and only that answer is considered which does not exceed 100. Next the if condition checks if the answer to the addition is correct. If this condition evaluates to true then the if condition inside this if condition checks that the value of answer does not exceed 100. If this inner if condition evaluate to true only then the score is incremented to 1 otherwise not and the program displays a message. Here is that program:

import java.util.Random;  

import java.util.Scanner;

public class Main {

   public static void main(String[] args) {

       int score = 0;

Random rand = new Random();  

       for (int i = 0; i < 11; i++) {

            int number1 = rand.nextInt(101);  

       int number2 = rand.nextInt(101);            

           Scanner input = new Scanner(System.in);

           System.out.print("What is " + number1 + " + " + number2 + " ? ");

           int answer = input.nextInt();  

           if ((number1 + number2) == answer)  

           { if (answer<=100)

              { score = score + 1;}

               else

               {System.out.print("Answer should not be greater than 100 \n");}         }   }

               System.out.println("Total score is: " + score);  }}

The screenshot of both program outputs is attached.

Answer:how the hell do u even do that the guy made one kudos to him

Explanation:I didn’t realize I was writing this here I meant to my friend

Create a Python script that enables a user to enter an integer number into the Python console and stores such integer number into a variable named input1. Use an if statement to print the following output per the following conditions:If integer is a negative number, print in console "Input1 integer is negative"If integer is zero, print in console "Input 1 integer is zero"If integer is a positive number less or equal than 30, print in console "Input 1 is positive but less or equal than 30.If integer is a positive number greater than 30, print in console "Input1 is positive and greater than 30"

Answers

Answer:

Here is the Python program:

input1 = int(input("Enter an integer: ")) #prompts user to enter an integer

if(input1<0): #if input value is negative

    print("Input1 integer is negative")

elif(input1==0): #if input value is 0

    print("Input 1 integer is zero")

elif(input1<=30): #if input value is less than or equal to 30

    print("Input 1 is positive but less or equal than 30")

else: #if input value is greater than 30

    print("Input 1 is positive and greater than 30")    

Explanation:

I will explain the program with an example

Lets say user enters 16 as input So

input1 = 60

Now the first if condition if(input1<0): is false because 60 is not less than 0

The second elif (else if) condition elif(input1==0): also evaluates to false because 60 is not equals to 0

The third elif condition elif(input1<=30): evaluates to false because the input value is 60 which is not less than or equal to 30.

The fourth else part executes because all the above if elif conditions evaluate to false which means the input number if neither negative, nor 0 and not less than or equal to 30. Hence the input number is greater than 30 and this is true as 60 is greater than 60. So the print statement executes which is:

    print("Input 1 is positive and greater than 30")

The message in the above print statement is printed on the output screen.

The screenshot of the program along with its output is attached.

____________________ solves the design problem of basic subnetting by allowing different masks on the subnets.

Answers

Answer:

Variable Length Subnet Mask (VLSM)

Explanation:

VLSM is a subnet design strategy that allows all subnet masks to have variable sizes. VLSM solves the design problem of basic subnetting by allowing different masks on the subnets.

I hope this helps!

1. How do you identify the location of components and replacement procedures for notebook systems?
2. How can you tell if a failed notebook display is caused by the screen or the video card?
3. How can you continue to use a notebook if a built-in component (such as a keyboard, pointing device, or network card) fails?
4. When purchasing a replacement internal drive for a notebook, which specifications should you verify before the purchase?
5. What type of notebook internal components may require you to remove the keyboard before replacing that component?
6. How do you fix common problems with a notebook touchpad?

Answers

Answer:

1. Best way is to get the manual from the manufacturer.  Each manufacturer places the laptop components in different locations and have different methods of securing the components.  Dell does a great job in publishing a manual for repair of each component with detailed locations and step-by-step instructions.

2..  You can use an external monitor to test this - assuming the laptop has a external connection (HDMI, DisplayPort, VGA).  If the external monitor works, you know the laptop's monitor is the problem.  If the external monitor does not work it is likely the display adapter.

3. Failed internal input components can be substituted using external devices.  The laptop will have USB connections that can be used for mice, keyboards, network cards, sound cards, and monitors.

4. The main thing to ensure for compatibility is the I/O bus type.  SATA / ATA / IDE (older) must be matched to ensure the new drive will work.  Look on the label of the old drive to see the specifications.  Most modern laptops will user SATA as the I/O connection - both solid state drives and traditional platter based.  As long as the I/O bus connection works, you can modify the speed and capacity of the drive with no major issues.

5. It depends on the model, but the majority of the internal components will require removal of the keyboard for access.  This includes the system board, video card, network card, sound card, and hard drive.  Memory is the one component that the manufacturer will often allow for replacement / addition through an access port on the bottom (but not every manufacturer does this - i.e. Apple)

6.  Touchpad problems can be the result of foreign material on the pad (grease, oil, etc), or damage to the pad surface.  If cleaning the pad thoroughly or rebooting the computer does not help then you might be looking at a component replacement.  Resetting the device drivers can also be attempted.

Explanation:

Why is it now difficult for computer technology to maintain the pace to development describing by Moore’s Law?

Answers

i think it might be A?

do films considered as a form of media?​

Answers

Yes, it’s a mass media to promote cultures and spread social.

It’s been six months since the disk crash at CSM Tech Publishing, and the owner is breathing a little easier because you installed a fault-tolerant solution to prevent loss of time and data if a disk crashes in the future. Business is good, and the current solution is starting to run low on disk space. In addition, the owner has some other needs that might require more disk space, and he wants to keep the data on separate volumes (what he calls drives). He wants a flexible solution in which drives and volumes aren’t restricted in their configuration. He also wants to be able to add storage space to existing volumes easily without having to reconfigure existing drives. He has the budget to add a disk storage system that can contain up to 10 HDDs. a. Which Windows feature can accommodate these needs, and how does it work?

Answers

Answer:

Storage Spaces

Explanation:

The feature that would best accommodate his needs would be the Storage Spaces feature that has been implemented in the Windows and Windows Server systems. This feature basically takes various hard drives and combines them together, this ultimately acts as copies of each other which protect the data of each one in the unfortunate case that one of the drives tends to fail. This feature also allows you to add more drives to the existing ones with very minimal effort without restricting configuration. Which would solve the needs that are needed in this scenario.

What does it mean to declare a function versus call a function?​

Answers

Declaring is creating the function. This means that it is initiated but not running. when you run it that means it is activated and taking affect

Write an application that allows the user to input monthly rainfall amounts for one year storing the values in an array. Create a second array that holds the names of the month. Produce a report showing the month name along with the rainfall amount and its variance from the mean. Calculate and display the average rainfall for the year.

Answers

Answer:

In which programming language? Lol.

Maintenance is classified into how many categories ?​

Answers

Answer:

hope it helps..

Explanation:

four types.

More information: Adaptive, corrective, perfective and preventive are the four types of software maintenance.

PLEASE THANK MY ANSWER

Given a Student class, create a class with following characteristics:

The class name should be ClassRoom. Private variable students array to maintain the list of Student objects.
Function addStudent with input parameter name (string) and rollNo(int) adds a new student in "students" list.

Method getAllStudents should return all the students in ClassRoom.

Input
Jack

1
Jones
2
Marry
3
where,

First & Second line represent a student’s name and roll number. And so on.

Output

1 - Jack
2 - Jones
3 - Marry

Answers

Answer:

ssume that,

Maximum “students” count can be 10.

*Driver Class*

*Solution class*

import java.util.*;

class Student {

private String name;

private int rollNo;

public String getName() {}

public void setName(String name) {}

public int getRollNo() {}

public void setRollNo(int rollNo) {}

};

class ClassRoom {

private int i;

private Student[] students;

public void addStudent(String name, int rollNo) {}

public Student[] getAllStudents() {}

};

In the Visual Basic program language: show how you would prompt a user to enter a value for an integer variable called age.

Answers

Answer:

It would be helpful for you.

Explanation:

Module Module1

   Sub Main()

    ' Read value.

    Dim age As Integer = Console.ReadLine()

    ' Write the value.

    Console.WriteLine("User typed age is " + age )

   End Sub

End Module

Give reasons why mind-mapping software is important to project development.

Answers

Answer:

Explanation:Mind mapping software can help you to make connections and become a better creative problem solver.

...

It helps you to make better decisions. ...

It helps you to become better organized. ...

You can see the forest and the trees. ...

It helps you to identify, prioritize and track key project tasks.

explain the functions of a BIOS​

Answers

Answer:

According to what I researched, it is, "Firmware used to provide runtime services for operating systems and programs and to perform hardware initialization during the booting process."

In shorter words, it pretty much shortens the process of a computer booting up or apps starting.

Hope this helps!

In Word, how can you tell when text is selected?
A Aselection box appears around the text
B. The text appears in a contrasting color
ООО
C. The text is displayed with an outline
D. A line appears in the margin next to the text
The text is highlighted, often in gray
Save Answer

Answers

Answer:

the text will highlited in gray

Explanation:

By using perception strategies you have learned, objectively evaluate the following scenario,
You are 16, you have your driver's license, and you want to take some friends to a movie. You
ask your father if you can borrow the car, but he refuses and puts his keys in his pocket. He let
you use the car several days ago.
List the facts: Interpretation #1: Interpretation #2: Request for clarification combined with behavior and interpretations:

Answers

Answer:

book of English

page 91 answer in 2 part

Explanation:

ok bro pls follow me

Answer:

Interpretation #1: My dad wanted to annoy me and didn't want me to have fun.

Clarification: #1: Dad why did you refuse to let me borrow your keys, did I do something wrong? Or did you just want to annoy me.

Interpretation #2: He is worried that something dangerous might happen without any adults in the car and didn't want to rist anyone getting hurt.

Clarification #2 : Dad, do you think we are not going to drive safely? Would you prefer someone older accompanies us?

Explanation:

True or false
Do output devices allow the user to enter information into the system or control its operation?

Answers

Answer:

False

Explanation:

In which of the following scenarios can a trademark be applied

Answers

The term trademark can be applied if Alanna draws a shape to use as a background image on a company's website.

What is trademark?

A trademark is known to be a term that connote the  sign that has the ability of setting goods or services of one enterprise apart  from those of other enterprises.

Note that Trademarks are said to be protected by intellectual property rights and as such when one encroach on it, it can lead to legal actions against the person.

Learn more about trademark  from

https://brainly.com/question/11957410

7. Suppose that a RISC machine uses 5 register windows. a. How deep can the procedure calls go before registers must be saved in memory? (That is, what is the maximum number of "active'' procedure calls that can be made before we need to save any registers in memory?) b. Suppose two more calls are made after the maximum value from part (a) is reached. How many register windows must be saved to memory as a result? c. Now suppose that the most recently called procedure returns. Explain what occurs. d. Now suppose one more procedure is called. How many register windows need to be stored in memory?

Answers

Answer:

bbbbbbbbbbbbnbbnnnnnnnnnnnnnnnnn

Other Questions
Is this art car art? What might Duchamp say about it? What might a surrealist argue? A person on a tricycle travels a distance of 45km in 6.1 hrs, what was the speed of the person on the tricycle? Can someone please help me asap?? Ill mark brainlist !! The industrialization and mechanization of agriculture in the united states during the past 70 years have resulted in A patient is admitted to the hospital by ambulance after experiencing chest pain. Hisson arrives at the hospital shortly afterwards and is demanding information about hisdad's condition. you would: 6. The value of (tan 1 tan2 tan 3 ... tan 89) is Two boxes of textbooks, of masses 10 kg and 15 kg, are connected by a lightweight string, and then pulled across a horizontal table by a horizontal applied force, as shown in the diagram above (attached to question). The applied force has a magnitude of 50 N, and there is no friction between the boxes and table. What is the acceleration of the 10 kg 10 kg box?A.) 3.3 m/s^2B.) 2.0 m/s^2C.) 5.0 m/s^2D.) The box will not accelerate because the tension force acting on it to the left must also be 50 N 50 N. What is the equation of the line that passes through the point (-6,-5) and has a slope of 3/2? Which of the following tools might civil engineers use when designing roads in a recently constructed industrial park?A.)theodoliteB.)altimeterC.)planimeterD.)Gunters chainI put planimeter but I want to make sure before I turn it in. How many methane molecules could form from these reactants? limiting reactants gizmo answers Find the area and circumference 80 mm 15 point reward + brainliest for the CORRECT answer In a summer storm, the wind is blowing at a velocity of 8 m/s north. Suddenly in 3 seconds, the winds velocity is 23 m/s north. What is the winds acceleration? Describe the structure of DNA. HELP THIS IS FOR PLATE BOUNDARIES AND MOVEMENTWhat is the purpose of the lab?What procedure did you use to complete the lab? Outline the steps of the procedure in full sentences.What charts, tables, or drawings would clearly show what you have learned in this lab?Each chart, table, or drawing should have the following items:A. An appropriate titleB. Appropriate labelsIf you could repeat the lab and make it better, what would you do differently and why?TAKE UR TIME TO ANSWER I HAVE ALL DAY :D Which table shows a proportional relationship between x and y?x1236O1.5:369.x2.456y61218211345oOy501502002503578a1.52.534.512345678910Next Your revenue goal for January is $40,000, and you have booked $31,000 thru January 25. What average nightly revenue do you need for the remainder of January? How much did the us pay when they bought alaska from russia. What the answer for 23 HELP ME PLZZ I NEED HELP WITH THIS!!!!