41
Nala feels confident about the research she has chosen for her class presentations because she has done what to ensa
work?
researched a lot of different points quickly
checked the validity of her research carefully
O C.
decided to use a new presentation software
OD. explored a range of unrelated topics in her research
O A
OB.
Reset
Next

Answers

Answer 1

Nala feels confident about the research she has chosen for her class presentations because she has checked the validity of her research carefully.

How can this be explained?

Nala understands that conducting comprehensive research entails delving into a vast array of resources, scrutinizing their reliability, and cross-checking data for coherence.

Nala's dedication to verifying her research has allowed her to have complete assurance in the validity and precision of her findings, as she has diligently selected the most dependable and precise information.

With such a meticulous method, she can be confident in giving an effective and trustworthy oral report to her classmates.

Read more about presentations here:

https://brainly.com/question/24653274

#SPJ1


Related Questions

Write a program to prompt the user for hours and rate per hour using input to compute gross pay.

Pay should be the normal rate for hours up to 40 and time-and-a-half for the hourly rate for all hours worked above 40 hours.

Put the logic to do the computation of pay in a function called computepay() and use the
function to do the computation. The function should return a value. Use 45 hours and a rate of 10.50 per hour to test the program (the pay should be 498.75).

You should use input to read a string and float to convert the string to a number. Do not worry about error checking the user input unless you want to - you can assume the user types numbers properly. Do not name your variable sum or use the sum() function.​

Answers

def computepay(h,r):

   if h > 40:

       pay = 40 * r

       h -= 40

       pay += (r*1.5) * h

   else:

       pay = h*r

   return pay

print(computepay(float(input("How many hours did you work? ")),float(input("What is your rate of pay"))))

I hope this helps!

This is for computer technology please help me out!

This is for computer technology please help me out!

Answers

Answer:

bag = 2

Explanation:

apples + oranges > 20 is false

apples + oranges > 15 although it is 15, its false. If it was apples + oranges >= 15 it would be true. But it doesn't so that's false.

apples + oranges > 10 is true, and when you run it, bag will equal to 2.

hope this helped :D

Create a python program that asks the user to input the subject and mark a student received in 5 subjects. Output the word “Fail” or “Pass” if the mark entered is below the pass mark. The program should also print out how much more is required for the student to have reached the pass mark.

Pass mark = 70%



The output should look like:

Chemistry: 80 : Pass: 0% more required to pass

English: 65 : Fail: 5% more required to pass

Biology: 90 : Pass: 0% more required to pass

Math: 70 : Pass: 0% more required to pass

IT: 60 : Fail: 10% more required to pass

Answers

HERE IS THE CODE

pass_mark = 70# Input marks for each subjectchemistry_mark = int(input("Chemistry: "))english_mark = int(input("English: "))biology_mark = int(input("Biology: "))math_mark = int(input("Math: "))it_mark = int(input("IT: "))# Calculate pass or fail status and percentage required to passchemistry_status = "Pass" if chemistry_mark >= pass_mark else "Fail"chemistry_percent = max(0, pass_mark - chemistry_mark)english_status = "Pass" if english_mark >= pass_mark else "Fail"english_percent = max(0, pass_mark - english_mark)biology_status = "Pass" if biology_mark >= pass_mark else "Fail"biology_percent = max(0, pass_mark - biology_mark)math_status = "Pass" if math_mark >= pass_mark else "Fail"math_percent = max(0, pass_mark - math_mark)it_status = "Pass" if it_mark >= pass_mark else "Fail"it_percent = max(0, pass_mark - it_mark)# Output resultsprint(f"Chemistry: {chemistry_mark} : {chemistry_status}: {chemistry_percent}% more required to pass")print(f"English: {english_mark} : {english_status}: {english_percent}% more required to pass")print(f"Biology: {biology_mark} : {biology_status}: {biology_percent}% more required to pass")print(f"Math: {math_mark} : {math_status}: {math_percent}% more required to pass")print(f"IT: {it_mark} : {it_status}: {it_percent}% more required to pass")

The program asks the user to enter their scores for each subject, determines if they passed or failed, and calculates how much more they need to score in order to pass. The percentage needed to pass is never negative thanks to the use of the max() method. The desired format for the results is printed using the f-string format.

Pleaseeeeee help!!!!

Pleaseeeeee help!!!!

Answers

Answer:

1.klone

2.internet information services

3.nginx web server

4 apache HTTP

I hope you like it

As a user of media what will you say to those people who are under of misleading use media

Answers

Answer:

search more sa google

In cell B12, add the ROUNDUP function to display the total sales for Quarter 1

rounded up to 0 decimal places.

Answers

To carryout the above prompt in Microsoft Excel, you must use the following formula.: =ROUNDUP(B2+B6+B10,0)

What is the rationale for the above response?

This assumes that the total sales for Quarter 1 are in cells B2, B6, and B10, and the result should be rounded up to 0 decimal places. The ROUNDUP function rounds up a number to a specified number of digits, with 0 meaning to round to the nearest integer.

Microsoft Excel is a spreadsheet program developed by Microsoft that is available for Windows, macOS, Android, and iOS. It includes calculating or computation skills, graphing tools, pivot tables, and Visual Basic for Applications, a macro programming language. Excel is part of the Microsoft Office software suite.

Learn more about  Microsoft Excel:

https://brainly.com/question/24202382

#SPJ1

Assuming the user types the sentence


Try to be a rainbow in someone's cloud.


and then pushes the ENTER key, what will the value of ch be after the following code executes?.


char ch = 'a';

cin >> ch >> ch >> ch >> ch;

(in c++)

Answers

The value of ch will be the character entered by the user after executing the code.

What is the value of ch after executing the code?

The code snippet cin >> ch >> ch >> ch >> ch; reads four characters from the user's input and assigns them to the variable ch. Since the user input is "Try to be a rainbow in someone's cloud." and the code reads four characters, the value of ch after the code executes will depend on the specific characters entered by the user.

In conclusion, without knowing the input, it is not possible to determine the exact value of ch. Therefore, the value of ch will be the character entered by the user after executing the code.

Read more about code execution

brainly.com/question/26134656

#SPJ1

LAB: Input and formatted output: House real estate summary
Sites like Zillow get input about house prices from a database and provide nice summaries for readers. Write a program with two inputs, current price and last month's price (both integers). Then, output a summary listing the price, the change since last month, and the estimated monthly mortgage computed as (currentPrice * 0.051) / 12 (Note: Output directly, do not store in a variable, and end with a newline).
Ex: If the input is:
200000 210000
the output is:
This house is $200000. The change is $-10000 since last month.
The estimated monthly mortgage is $850.0.
Note: Getting the precise spacing, punctuation, and newlines exactly right is a key point of this assignment. Such precision is an important part of programming.
LabProgram.java
1 import java.util.Scanner;
2
3 public class LabProgram {
4 public static void main(String[] args) {
5 Scanner scnr = new Scanner(System.in);
6 int currentPrice;
7 int lastMonthsPrice;
8 currentPrice - scnr.nextInt();
10 last MonthsPrice = scnr.nextInt();
11
12 /* Type your code here. */
13 }
14 ]
15

Answers

Answer:

current_price = int(input())

last_months_price = int(input())

change = current_price - last_months_price

mortgage = current_price * 0.051 / 12

print('This house is $', end= '')

print(current_price, end= '. ')

print('The change is $', end= '')

print(change, end= ' ')

print('since last month.')

print('The estimated monthly mortgage is $', end= '')

print(mortgage, end='.\n')

In this exercise, using the knowledge of computational language in python, we have that this code will be written as:

The code is in the attached image.

We can write the python  as:

current_price = int(input())

last_months_price = int(input())

change = current_price - last_months_price

mortgage = current_price * 0.051 / 12

print('This house is $', end= '')

print(current_price, end= '. ')

print('The change is $', end= '')

print(change, end= ' ')

print('since last month.')

print('The estimated monthly mortgage is $', end= '')

print(mortgage, end='.\n')

See more about python at brainly.com/question/13437928?

LAB: Input and formatted output: House real estate summary Sites like Zillow get input about house prices

1. Which of the following is a new
generation optical storage device?
CD
DVD
Blu-ray disc
Pen drive

Answers

Answer:

CD or CD Rom

fhiykkoojnddeyui

Joseline is trying out a new piece of photography equipment that she recently purchased that helps to steady a camera with one single leg instead of three. What type of equipment is Joseline trying out?

A. multi-pod

B. tripod

C. semi-pod

D. monopod

Answers

Joseline trying out tripod .A camera-supporting three-legged stand is known as a tripod. For stability, cameras are fixed on tripods, sometimes known as "sticks." In tripods, the fluid head is used. The camera may now tilt up and down in addition to pan left and right.

What tools are employed in photography?You will need a camera with manual settings and the ability to change lenses, a tripod, a camera case, and a good SD card if you're a newbie photographer who wants to control the visual impacts of photography. The affordable photography gear listed below will help you get started in 2021.A monopod, which is a one-legged camera support system for precise and stable shooting, is also known as a unipod.A camera-supporting three-legged stand is known as a tripod. For stability, cameras are fixed on tripods, sometimes known as "sticks." In tripods, the fluid head is used. The camera may now tilt up and down in addition to pan left and right.

To learn more about tripod refer to:

https://brainly.com/question/27526669

#SPJ1

Answer:

monopod

Explanation:

Which network protocol is used to route IP addresses?
A. TCP
B. UDP
C. IP
D. ICMP

Answers

Answer:

C. IPIP

Explanation:

This protocol is known as an IP that stands for Internet Protocol. This protocol handles the simple task of making sure that the information is routed correctly to and from the corresponding computer machines through the internet. The sending and receiving machines are identified through their Internet Protocol Addresses which lets the protocol know exactly where the information is going and being sent from.

Quinn is opening an Excel workbook and receives an information bar and warning that the workbook contains macros. Quinn is prompted to enable the macros. What should he do?

Answers

Answer:

Check where the file originates from, and if it is a trusted source or his own workbook, click Enable Content.

Explanation:

Answer:

B. Check where the file originates from, and if it is a trusted source or his own workbook, click Enable Content.

Explanation:

Edg. 2021

Write the C++ program that, using specifically created functions for the geometric sequence with the quotient q entered by the user, will:
a.Calculate and print the first 100 elements
b.Calculate and print the sum of the first 100 elementsThe main loop of the program should providing the subsequent elements, printing results of calculations and terminating the program.

Answers

The C++ application that computes and outputs the first 100 elements.

class gfg {

public:

void printNos(unsigned int n) {

   if(n > 0)   {

printNos(n - 1);

cout << n << " ";  }

return; }

};

int main() {

   gfg g;

   g.printNos(100);

   return 0;

}

How do you compute the sum of 1 and 100?

All natural numbers between 1 and 100 add up to 5050. In this range, there are 100 natural numbers in total. Thus, we obtain S=5050 by using this number in the formula: S = n/2[2a + (n 1) d].

How can 100 numbers in an array be printed?

num[num] = num[num-1] +1; to round the previous number up by one before printing it. Now it prints perfectly. if (int a = 0; a > 100; a++) number[100] += number[a]; / add number[a] to result printf("%d\n",number[100]);

To know more about C++ program visit :-

https://brainly.com/question/27018455

#SPJ1

2. How can recovery handle transaction operations that do not affect the database, such as the printing of reports by a transaction?

Answers

Answer:

Explanation:

great question but dont know

A monitor is a type of what ?
A) CPU
B) input
C)memory
D) output
help my children's out!

Answers

Answer:

D.

Explanation:

Answer:

D

Explanation:

A monitor is a output device because it outputs information

Hope this helps! Good luck :)

For each of the actions below, select those actions below that are primarily in the network-layer data plane. The other actions that you don't select below then correspond to control-plane actions.
a. Monitoring and managing the configuration and performance of an network device
b. Looking up address bits in an arriving datagram header in the forwarding table.
c. Computing the contents of the forwarding table.
d. Moving an arriving datagram from a router’s input port to output port
e. Dropping a datagram due to a congested (full) output buffer.

Answers

Monitoring and controlling a network device's performance and configuration. Calculating the forwarding table's contents Dropping a datagram because the output buffer is crowded (full).

What duties does the network layer have?

Making it feasible for multiple networks to connect to one another is the primary responsibility of the network layer. It does this by sending packets to network routers, which employ algorithms to select the best paths for the data to take.

Where is the network layer implemented within the network?

Hosts at the edge of the network are where the network layer is implemented. In the network core, routers implement the network layer. Ethernet switches in a local area network implement the network layer. 

To know more about network visit:-

https://brainly.com/question/13102717

#SPJ1

Write a algorithm to calculate the sum of digits in a given three digit number

Answers

\({\huge{\pink{↬}}} \:  \: {\huge{\underline{\boxed{\bf{\pink{Answer}}}}}}\)

Sum of digits algorithm

Step 1: Get number by user.

Step 2: Get the modulus/remainder of the number.

Step 3: sum the remainder of the number.

Step 4: Divide the number by 10.

Step 5: Repeat the step 2 while number is greater than 0.

What is the cheapest way to add more USB ports to your computer?

Answers

Answer:

viutfi7f7i

Explanation:

The easy solution to the problem is to buy an inexpensive USB hub. The USB standard supports up to 127 devices, and USB hubs are a part of the standard. A hub typically has four new ports, but may have many more. You plug the hub into your computer, and then plug your devices (or other hubs) into the hub.

PLEASE THANK, RATE AND FOLLOW ME,

AND PLEASE MARK ME AS "BRAINLIEST" ANSWER

HOPE IT HELPS YOU

Hi whats the name of this game because i forgot we have to make a project on IT lesson about puzzle games and i forgot the name of this one please

Hi whats the name of this game because i forgot we have to make a project on IT lesson about puzzle games

Answers

The name of the Puzzle Game Requested is called "Monument Valley".

What is Monument Valley?

Ustwo Games created and distributed Monument Valley, an independent puzzle game. The player guides Princess Ida through mazes of optical illusions and impossible items, altering the environment around her to reach different platforms.

Monument Valley is a fanciful journey through impossible mathematics and amazing buildings. The player leads the mute princess Ida through intriguing monuments, unraveling optical illusions and outwitting the enigmatic Crow People.

Monument Valley is around 112 hours long while focused on the primary objectives. If you are a gamer who wants to see every facet of the game, you will most certainly spend roughly 212 hours completing it completely.

Learn more about Puzzle Games:
https://brainly.com/question/13546872
#SPJ1

Which of the following is considered an administrative function of the database management system (DBMS)?
A) adding structures to improve the performance of database applications
B) testing program codes in the system for errors
C) creating tables, relationships, and other structures in databases
D) using international standard languages for processing database applications

Answers

An administrative role of the database management system is the addition of structures to enhance the performance of database applications (DBMS).

What is a database system's primary purpose?

Database software is used to build, modify, and maintain database files and records, making it simpler to create, enter, edit, update, and report on files and records. Data storage, backup, reporting, multi-access control, and security are other functions handled by the software.

Which 7 administrative tasks are there?

Each of these tasks is essential to helping firms operate effectively and efficiently. Planning, organizing, staffing, directing, coordinating, reporting, and budgeting are the seven functions of management, or POSDCORB, that Luther Gulick, Fayol's successor, further defined.

To know more about database applications visit:-

https://brainly.com/question/28505285

#SPJ1

2. List the differences between personal
computer operating systems and mainframe
operating systems.

Answers

Explanation:

Mainframes typically run on large boxes with many processors and tons of storage, as well as high-bandwidth busses. PCs are desktop or mobile devices with a single multi-core processor and typically less than 32GB of memory and a few TBs of disk space. Second, a mainframe OS usually supports many simultaneous users.

use a for loop to create a random forest model for each value of n estimators from 1 to 30;
• evaluate each model on both the training and validation sets using MAE;
• visualize the results by creating a plot of n estimators vs MAE for both the training and validation sets
After that you should answer the following questions:
• Which value of n estimators gives the best results?
• Explain how you decided that this value for n estimators gave the best results:
Why is the plot you created above not smooth?
• Was the result here better than the result of Part 1? Wha: % better or worse was it? in python

Answers

Answer:

nvndknnnnnnngjf

Explanation:

f4tyt5erfhhfr

17. Which of the following is NOT a contributing factor to the lasting popularity of League of Legends?
a) The game is free
b) Professional gamers can compete in televised tournaments that award cash prizes
c) Players can customize the characters and their behavior
d) Simple graphics and visuals that don’t distract from the goal of the game

Answers

Answer:

c?

Explanation:

In JAVA with comments: Consider an array of integers. Write the pseudocode for either the selection sort, insertion sort, or bubble sort algorithm. Include loop invariants in your pseudocode.

Answers

Here's a Java pseudocode implementation of the selection sort algorithm with comments and loop invariants:

```java

// Selection Sort Algorithm

public void selectionSort(int[] arr) {

   int n = arr.length;

   for (int i = 0; i < n - 1; i++) {

       int minIndex = i;

       // Loop invariant: arr[minIndex] is the minimum element in arr[i..n-1]

       for (int j = i + 1; j < n; j++) {

           if (arr[j] < arr[minIndex]) {

               minIndex = j;

           }

       }

       // Swap the minimum element with the first element

       int temp = arr[minIndex];

       arr[minIndex] = arr[i];

       arr[i] = temp;

   }

}

```The selection sort algorithm repeatedly selects the minimum element from the unsorted part of the array and swaps it with the first element of the unsorted part.

The outer loop (line 6) iterates from the first element to the second-to-last element, while the inner loop (line 9) searches for the minimum element.

The loop invariant in line 10 states that `arr[minIndex]` is always the minimum element in the unsorted part of the array. After each iteration of the outer loop, the invariant is maintained.

The swap operation in lines 14-16 exchanges the minimum element with the first element of the unsorted part, effectively expanding the sorted portion of the array.

This process continues until the entire array is sorted.

Remember, this pseudocode can be directly translated into Java code, replacing the comments with the appropriate syntax.

For more such questions on pseudocode,click on

https://brainly.com/question/24953880

#SPJ8

Can someone please help me I will mark u brilliant

Can someone please help me I will mark u brilliant

Answers

Answer: “Frame rate (expressed in frames per second or FPS) is the frequency (rate) at which consecutive images called frames appear on a display. The term applies equally to film and video cameras, computer graphics, and motion capture systems. Frame rate may also be called the frame frequency, and be expressed in hertz” this is what I searched up and maybe you can see what’s similar

Explanation: I think it’s yellow

Answer: The answer is the first box, the rate at which frames in an animation are shown, typically measured in frames per second.

Hardware Name:
Description:
Picture:
1. Motherboard





2. Power Supply



3. CPU (Central Processing Unit)



4. Random Access Memory (RAM)



5. Hard Disk Drive/Solid State Drive



6. Video Card



7. Optical Drives



8. Input and Output Devices

Answers

Answer:

I think 2.power supply yaar


Python help
Instructions
Write a method swap_values that has three parameters: dcn, key1, and key2. The method should take the value in
the dictionary den stored with a key of key1 and swap it with the value stored with a key of key2. For example, the
following call to the method
positions = {"C": "Anja", "PF": "Jiang", "SF": "Micah", "PG": "Devi", "SG": "Maria")
swap_values (positions, "C", "PF")
should change the dictionary positions so it is now the following:
{'C': 'Jiang', 'PF': 'Anja', 'SF': 'Micah', 'PG': 'Devi', 'SG': 'Maria')

Answers

def swap_values(dcn, key1, key2):

   temp = dcn[key1]

   dcn[key1] = dcn[key2]

   dcn[key2] = temp

   return dcn

The method in the interface for a dictionary collection returns an iterator on the key/value pairs in the dictionary is the Keys () method.

Consider the scenario where you want to develop a class that functions like a dictionary and offers methods for locating the key that corresponds to a specific target value.

You require a method that returns the initial key corresponding to the desired value. A process that returns an iterator over those keys that map to identical values is also something you desire.

Here is an example of how this unique dictionary might be used:

# value_dict.py

class ValueDict(dict):

  def key_of(self, value):

      for k, v in self.items():

          if v == value:

              return k

      raise ValueError(value)

  def keys_of(self, value):

      for k, v in self.items():

          if v == value:

              yield k

Learn more about Method on:

brainly.com/question/17216882

#SPJ1

Take a number N as input and output the sum of all numbers from 1 to N (including N).​

Answers

Answer:

Incluint respuet

Explanation:

espero que te sirva

create survey result using microsoft excel with twenty 20 respondents teacher and student use another sheet of coupon bond

Answers

To create a survey result using Microsoft Excel. Here's a step-by-step guide:

Step 1: Open Microsoft Excel and create a new workbook.

Step 2: Rename the first sheet as "Survey Results" and the second sheet as "Coupon Bond."

Step 3: In the "Survey Results" sheet, create the following column headers in cells A1 to E1: "Respondent ID," "Name," "Role," "Question 1," and "Question 2."

Step 4: Enter the data for each respondent in columns A to E, starting from row 2. For example, enter the respondent ID in column A, name in column B, role in column C, and the responses to question 1 and question 2 in columns D and E, respectively. Repeat this process for all 20 respondents.

Step 5: In the "Coupon Bond" sheet, you can design the coupon bond as per your requirements. Add text, graphics, or any other formatting elements as desired. You can use the drawing tools in Excel to create a visually appealing design.

Step 6: Print the "Coupon Bond" sheet onto a coupon bond paper.

Now created a survey result using Microsoft Excel with the data stored in the "Survey Results" sheet and a separate sheet containing the coupon bond design.

Learn more about Microsoft Excel on:

https://brainly.com/question/30750284

#SPJ1

Which Windows installation method requires that you manually rename computers after the installation?​

Answers

Answer:

Command line

Explanation:

After installation of the machine one needs to manually rename the computer. This can be done through the start then settings, then system, and select rename the PC in the right-hand side column.
Other Questions
Question 7 of 10An object in geometry with no width, length or height is a(n):A. lineB. rayC. pointD. angleSUBMIT Conflict is destructive if you refuse to examine what the other person is saying True or false The lateral surface area of cone A is exactly 1/2 the lateral surface area of cylinder B. Cone A radius is r and height h - Cylinder B radius is r and height h. True or false? Need help with the introduction to probability lesson, photo is attached below. Which portion(s) of the brain maintains homeostasis in the muscular system by coordinating skilled movements what to do when you miss your brother and he ran awayPlease help please answer i need some emotional support the strategy of directing advertising and sales promotion toward consumers to stimulate them to request the products from their local retailers is called a Solve for X: 2/5 (X - 4) = 20 If 8 tacos cost $12. What is the cost for 12 tacos? Any proportional relationship can be represented by an equation in the form of y = kx, where k is the constant of proportionality. The number of badges earned (y) is equal to 4 times the number of scouts (x) and is represented by the equation y=4x. How many badges will be earned per scout? (That is the unit rate.) what is the constant of proportionality? (Please Answer this) which of the following is true? a person's time orientation can never be changed. most americans naturally tend to hold a future time iroentation. [eople whohold a past-negative time orientation have a hard time saing for the future Solve the linear congruence 2x + 6 = 4(mod 8). find the 52nd term -17, -10, -3, 4, ... A spring is hanging from the ceiling. When a 250 gram of mass is attached to the free end, the spring elongates by 5 cm. The spring constant (in N/m) is: What were the two main causes of the Sepoy Rebellion? which of the following provides evidence that there must be at least two types of electrical charge, but that there is only one type of mass? _______ was a clarinet player from New Orleans who moved to Chicago in 1921 where he played with King Oliver's Creole Jazz Band and recorded with Louis Armstrong's Hot Five and Jelly Roll Morton's Red Hot Peppers. What does Downing recommend as an effective series of strategies before rehearsing study materials? (Choose all that apply)Group of answer choicesCreate a distributed study scheduleAssemble a few study materialsStudy personallyReview your study materials 5. (a) Show that the kinetic energy of an assembly of N particles of mass m, located at distances r; from the center of a disc rotating with an angular velocity w = can be written as N T = = 1/(w Ex) A wire has resistance R. Another wire, of the same material, has half the length and half the diameter of the first wire. The resistance of the second wire is?