Which line of code will display the variable rounded to the nearest tenth?
print(num, round)
print(round(num, 1))
print(num rounded)
print(round(num,.1))
Answer:
print(round(num, 1))
Answer:
D
Explanation:
Whats the top Anime shows?
Answer:
my hero acidemia, parasyte, naruto, attack on titan, 7 deadly sins, one piece, and jojo
Explanation:
Answer:
This is personally based on my opinion.
My top 10 favorites
Toradora
Darling in the franxx
Lucky Star
My Melody
Death note
Attack on titans
One piece
The Promise neverland
Kaguya-sama: love is war
Black cover
You are responsible for several servers running Windows Server. You will be managing the log files on the servers. What should you use to work with the Windows log file
Incomplete question. The Options:
a. rsyslog
b. logrotate
c. /var/log
d. Event Viewer
Answer:
d. Event Viewer
Explanation:
Among all the listed options, only the Event Viewer application is specifically designed to log files on Windows servers. While rsyslog, logrotate, and /var.log are designed for the Linux operating system environment.
Some of the common log files to be found on the Event Viewer application include;
log of applications opened,system errors, security warnings.Answer:
its d
Explanation: there no need
Which of the following is true of operations within a spreadsheet program’s built-in functions?
Operations within parentheses, then multiplication and division, and then addition and subtraction are computed.
Operations within parentheses, then addition and subtraction, and then multiplication and division are computed.
Multiplication and division, then addition and subtraction, and then operations within parentheses are computed.
Addition and subtraction, then multiplication and division, and then operations within parentheses are computed
A. Operations within parentheses, then multiplication and division, and then addition and subtraction are computed.
Answer:
a is the answer
Explanation:
Which of these is a super class of wrappers Double & Integer?
a. Long
b. Digits
c. Float
d. Number
From the demonstration video on navigating the Outlook interface, which of the following is true? Check all that apply.
Use the ALT key on the keyboard to toggle letter keys to activate functions in Outlook.
To get to the Backstage view, click on the File tab on the top left.
The Outlook icon can be found on the Task Bar in Windows by default.
The Message Pane is where you can read the body of the message.
The Reading Pane and the To-Do List can be toggled on and off as needed.
Answer:
A, B, and E.
Explanation:
I just did it!
What is an example of a free online library?
A. Duck Duck Go
B. Project Gutenberg
C. Bing
D. PubMed
You use utility software to
Select all that apply
5.
What will be displayed when this program finishes running?
var numbersList = [20, 10, 5]
appendItem(numbersList, 50)
appendItem(numbersList,100)
removeItem(numbersList,1)
insertItem(numbersList, 0, 30)
console.log(numbersList.length)
Answer:
Explanation:
5 is correct answer
Answer:
D. 5
Explanation:
80billion +2 TRILLION . PLEASE AWNSER
Answer:
two trillion eighty billion
Explanation:
g00gle is my best friend
You’ve found the file you’ll be working with. Next, you decide to move
which option enable you to change the background colour of a slide
Explanation:
In order to change the background color in Microsoft PowerPoint 2010 we need to go to View and Slide Master. Then, right click on the first slide and click Format Background. Then you can access the background options, including a way to change the background gradient effect or use a solid background color.
Write a program that asks the user to input an integer named numDoubles. Create a dynamic array that can store numDoubles doubles and make a loop that allows the user to enter a double into each array entry. Loop through the array, calculate the average, and output it. Delete the memory allocated to your dynamic array before exiting.
Answer:
Answered in C++
#include <iostream>
using namespace std;
int main() {
int size;
cout<<"Length of array: ";
cin >> size;
double *numDoubles = new double[size];
double sum =0;
cout<<"Array Elements: ";
for(int i=0;i<size;i++){
cin>>numDoubles[i];
sum += numDoubles[i];
}
delete [] numDoubles;
cout<<"Average: "<<sum/size;
return 0;
}
Explanation:
This line declares the size (or length) of the array
int size;
This line prompts the user for the array length
cout<<"Length of array: ";
This gets the input from the user
cin >> size;
This dynamically declares the array as of double datatype
double *numDoubles = new double[size];
This declares and initializes sum to 0
double sum =0;
This prompts the user for elements of the array
cout<<"Array Elements: ";
The following iteration gets input from the user and also calculates the sum of the array elements
for(int i=0;i<size;i++){
cin>>numDoubles[i];
sum += numDoubles[i];
}
This deletes the array
delete [] myarray;
This calculates and prints the average of the array
cout<<"Average: "<<sum/size;
Sites on the surface web are _____.
A. freely available to all users
B. home pages only
C. older pages that have not been updated
D. member-only sites
It should be noted that Sites on the surface web are A. freely available to all users.
What is Surface Web?The Surface Web can be regarded as a portion of the World Wide Web which is accessible for general public and it can be searched with standard web search engines.
Therefore, option A is correct.
Learn more about Surface Web at:
https://brainly.com/question/4460083
An employer uses the spreadsheet below to determine the average hourly salary of her four employees. She begins by determining the hourly salary of each person and displaying that in column D. Which formula can she then use to determine the average hourly salary?
=average(D2:D5)
=average(B2:B5)
=average(C2:C5)
=average(B5:D5)
A. =average (D2:D5)
Answer:
The answer is "=average(D2:D5)"
Explanation:
In Excel, the AVERAGE function is used to measures the average number, in the arithmetic average.This method is used as the group of numbers, that determines by using the AVERAGE function. This feature is an AVERAGE, which is used to ignores the logical data, empty columns, or text cell. It is up to 255 specific arguments, that could be handled by AVERAGE, including numbers, numerical values, sets, arrays, or constant.
Answer:
A
Explanation:
Write a program that inputs a text file. The program should print the unique words in the file in alphabetical order. Uppercase words should take precedence over lowercase words. For example, 'Z' comes before 'a'.
Answer:
unique = []
with open("file_name.txt", "r") as file:
lines = file.readlines()
for line in lines:
# assuming comma is the only delimiter in the file
words = line.split()
for word in words:
word = word.strip()
if word not in unique:
unique.append(word)
unique = sorted(unique)
print(unique)
Explanation:
The python module opens a file using the 'with' keyword (the file closes automatically at the end end of the indentation) and the open built-in function and reads the content of the open file as a list of lines of the content.
Each line is split into a list and the unique words are collected and stored in the unique list variable.
The program is an illustration of file manipulations.
File manipulation involves writing to and reading from a file
The program in Python where comments are used to explain each line is as follows:
#This creates an empty list
wordList = []
#This opens the file
with open("myFile.txt", "r") as file:
#This reads the file, line by line
lines = file.readlines()
#This iterates through each line
for line in lines:
#This splits each line into words
words = line.split()
#This iterates through each word
for word in words:
#This removes the spaces in each word
word = word.strip()
#This adds unique words to the list
if word not in wordList:
wordList.append(word)
#This prints the unique words in alphabetical order
print(sorted(wordList))
Read more about similar programs at:
https://brainly.com/question/19652376
An algorithm is Group of answer choices The part of the computer that does the processing A complete computer program The inputs and outputs of a program A finite set of steps to solve a problem
Answer:
A finite set of steps to solve a problem
Explanation:
From the list of given options, option D describes an algorithm
Other options such as:
(A) describes the CPU of a computer;
(B) describes a written program which is achieved with the use of one or more programming languages
and (C) which describes the data that is being supplied into the program and also the information expected from the program.
Hence:
(D) is correct
Select the correct answer.
Which task occurs during the development phase of the SDLC?
A.
requirements gathering
OB.
coding
O C.
maintenance
OD. budgeting
Answer:
The correct answer is: Option OB. Coding
Explanation:
Software Development Life Cycle is used to develop software. It is a general collection of steps that have to be followed in development of software.
The development phase comes after the system design phase of SDLC. The coding and programming for software is done in the development stage.
Hence,
The correct answer is: Option OB. Coding
Answer:
coding
Explanation:
The price of an item you want to buy is given in dollars and cents. You pay for it in cash by giving the clerk d dollars and c cents. Write specifications for a function that computes the change, if any, that you should receive. Include a statement of purpose, the preconditions and postconditions, and a description of the arguments.
Answer:
Get the actual price of the item and convert it to cents, also get and convert the amount paid to cents.
subtract the actual price of the item from the paid amount ( which is in cents), if the result is greater than zero, covert the result back to dollars and output the result.
Explanation:
The program converts the actual price of the item and the amount paid to cents (where a dollar is equal to 100 cents). The variables are subtracted to get the change to be refunded, the result is converted back to dollars as the actual change to be paid.
Cards in a pack are black or red in the ratio
black: red = 2 : 5
What fraction of the cards are red?
Answer:
[tex]Fraction = \frac{5}{7}[/tex]
Explanation:
Given
[tex]black: red = 2 : 5[/tex]
Required
Determine the fraction of red
First, we calculate the total ratio.
[tex]Total = black + red[/tex]
Substitute values for black and red
[tex]Total = 2 + 5[/tex]
[tex]Total = 7[/tex]
The fraction of red is then calculated as:
[tex]Fraction = \frac{Red}{Total}[/tex]
[tex]Fraction = \frac{5}{7}[/tex]