Answer:
The answer to this question is given below is the explanation section.
Explanation:
Computer can process and store data.It can easily store large amount of data and process the data very fast but it is not the source of information it serve as a store of information because it store information and whenever we need any information we can retrieve that information from computer memory.in this way computer is s source of information.
TRUE OR FALES
1.Windows 98 is not a GUI-based operating system.
Answer:
TRUE
Explanation:
t is a graphical user interface (GUI) based operating system. Which makes our operation interactive and easy to use. Windows 98 is an improved version of Windows 95. Main feature in windows 98 is its 'Desktop'.
do you know zombsroyal.io
Answer:
nope. i might go look for it tho
Answer:
Yeah I play it
Explanation:
What's your tag? I'm kinda cracked
Tori needs to turn her Turtle to the left 90 pixels. Which line of code should Tori use?
A tina(90)
B tina.back(90)
C tina.left(90)
D tina.right(90)
Answer: D tina right (90)
Explanation:
right
Answer:
D tina.right(90)
Explanation:
grade 10 python exercise
Write a program that prints, as a word, the value of the last digit of the int variable number. For example, if the value of number is 547, the fragment should print:
The last digit of 547 is seven
number = 547
nums = {1:"one", 2:"two",3:"three",4:"four",5:"five",6:"six",7:"seven",8:"eight",9:"nine"}
print("The last digit of",number,"is",nums[number%10])
I wrote my code in python 3.8. I hope this helps.
JAVA
plzzz help...........
Answer:
import java.util.Scanner;
class Main {
public static void main(String[] args) {
Scanner scan = new Scanner(System.in);
while(true) {
System.out.print("Enter an integer (0 to exit): ");
int num = scan.nextInt();
if (num == 0) break;
if (num%3 == 0 && num%5 == 0) {
System.out.printf("%d is divisable by both 3 and 5.\n", num);
}
else if (num%3 == 0 && num%5 != 0) {
System.out.printf("%d is divisable by 3 but not by 5.\n", num);
}
else if (num%3 != 0 && num%5 == 0) {
System.out.printf("%d is divisable by 5 but not by 3.\n", num);
} else {
System.out.printf("%d is not divisable by 3 or 5.\n", num);
}
}
scan.close();
}
}
I
2.
Given that the input A is false and the input B is false, what is the resulting value of the output?
c. True
d. False
Answer:
True
Explanation:
Not(False) OR False = True OR False = True
How comfortable are you relying on others to achieve your performence goals?
Answer:
Tbh I don't like to depend on people to achieve my goals but if I want to depend on someone I first have to know them really well and see if I can trust them so I'm really comfortable with people I know but if it's a a random person so I don't think I will be comfortable
What natural resources products are discussed in the article? Are they renewable or nonrenewable?
Where is the article
What is problem scoping
Answer:
the process that people use to figure out what problem they’re solving
Explanation:
Word templates include pre-made flyers which may be edited and saved only if permission is obtained from the Microsoft Office teacher.
Question 3 options:
True
False
Nadia has inserted an image into a Word document and now would like to resize the image to fit the document befter. What is the quickest way to do this? keyboard shortcut sizing handles context menu sizing dialog box
Answer:
To resize the document, Nadia needs to press
Command +>/ Ctrl+> to increase the size of the frame and its contents by 1%.
Or press Command +</ Ctrl+< to decrease the size of the frame and its contents by 1%
The most commnonly used OS is ___.
MS-DOS
Windows
Mac
Linux
Answer:
Windows
Explanation:
The most commonly used OS today is Microsoft Windows. Microsoft's founder and President Bill Gates created the operating system way back then.
Windows is the default standard in most computers you see today and is in use in across millions/billions of devices.
Mac and Linux are similar; Mac OS, or SierraOS, is a custum Linux base OS. Both of these operating systems are popular now, but still not as widespread popular as Windows.
SierraOS only targets Mac/Apple Users. Linux targets coders.
Question 6(Multiple Choice Worth 2 points)
(01.03 MC)
There is no sound coming from the speakers. What could be the cause of this problem?
O The computer case is dirty.
The keyboard is not plugged in.
O The monitor isn't working correctly.
The volume is not turned on.
Answer:
The volume is not turned on.
Explanation:
A speaker can be defined as an electronic output device that is typically used for the conversion of an electromagnetic wave to sound wave.
Basically, this conversion is done through the help of a hardware electronic component known as transducers.
The main purpose of a speaker is to produce an audio output and as such avail the computer users an ability to hear or listen to sounds.
Hence, if there is no sound coming from the speakers; the cause of this problem could be that, the volume is not turned on because the volume determines the level of sound (output) from the speakers. Thus, if it is turned off (low), there won't be any sound from the speakers.
Answer: Your answer would be option D: The volume is not turned on.
I say this because doing the others wouldn't help fix the problem with the speakers
In cell B3, insert a nested MATCH function within an INDEX function that will look up the rental price in column D using the apartment number referenced in cell B2. With 101 entered in cell B2, the lookup function displays $950.00.
Solution :
Step 1:
Open the excel exploring_e07_grader_h1_Apartment.xlsx and save it as exploring_e07_grader_h1_Apartment_LastFirst.
Step 2:
At cell G8 in the Summary worksheet, insert the date function to the number of Years since remodel:
Compute the difference between the years 1/1/2018 value in the cell H2 and the Last remodel date present in cell F8 which returns the number of days.
Then, divide the resultant by 365 days to get the answer in the form of years.
The formula to compute the number of years since remodel at cell G8 is,
=($H$2 - F8)/365.25
Copy the function used in the cell G8 to the cells G9:G57.
Step 3:
At cell H8 in the Summary worksheet, insert the function to compute the pet deposit.
Condition to check is whether the number of rooms that is at Cell C8 is greater than or equal to 2 and it is remodel less than 10 years ago.
If the condition is true, then pet deposit cost is $275 present at cell H4.
Otherwise the pet deposit cost is $200 present at cell H5.
So, the formula to apply at cell H8 is,
=IF(AND(C8>=2, G8<$H$3), $H$4, $H$5)
Step 4:
At cell I8 in the Summary worksheet, insert the function to display Need to Remodel:
Condition to check is whether the apartment is unoccupied depending on the cell E8(“Yes” or “No”) and last remodeled that is cell G8 is greater than 10 years (cell H3).
If the condition is true, then display as “No Change”.
Otherwise display as “Need to Remodel”.
So, the formula to apply at Cell I8 is,
=IF(_AND(_E8="No", G8>$H$3), "Need to Remodel", "No Change")
Step 5:
Copy the functions used in the cells H8:I8 to the cell range H9:I57.
Step 6:
At cell B3, to display the rental price:
By using Index function look up for the rental price present in Column D and check for the match of cell B2 with respective the Column Range A8:A57.
Syntax for INDEX function is:
=INDEX(Array, Row number, Column number)
Syntax for MATCH function is:
=MATCH(Loop up, Loop up array, Match type)
So, the function to be inserted at cell B3 is,
=INDEX($D$8:$D$57, MATCH(B2, $A$8:$A$57,0))
In his paper, Mario rephrases his description of food deserts. Read his description below. Food deserts are places that lack access to healthy, fresh food. He wants to use another word for "access” in his description. How can Mario complete his task without leaving the Word application? Use a browser to find a synonym of the word. Use the Tell me bar to find a synonym of the word. Use the Thesaurus feature to find a synonym of the word. Use the Smart Lookup feature to find a synonym for the word.
Answer:
C.
Explanation:
Answer:
C.
Explanation:
I just took it
what is The Impact Of Technology On Real Estate
Answer:
Technology can help real estate agents predict the future values of properties in the market. For most consumers purchasing a new home is an investment, but having a reliable source of value and future value, will make them more confident in investing into that property.
Explanation:
Why are asl tls and https necessary
.WAP to enter monthly sale of Salesman and give him commission i.E. If the monthly sale is more than 500000 then commision will be 10% of monthly sale otherwise 5%
sales = float(input("Enter monthly sales amount: $"))
commission = 0.05
if sales> 500000:
commission = 0.1
print("You earned: $"+str(sales*commission))
I wrote my code in python 3.8. I hope this helps.
4. Why does Hancock believe that our communication online is more honest than we might
expect?
Answer:
The reason we are more honest online is simpler than we think, says Hancock. In the past, before there was modern technology or even written language, people could lie to each other easily. Once the words were said, they disappeared. ... Technology therefore might make us more honest than ever
Answer:
Hancock believes that communication online can be more honest because in the past, before modern technology or even written language, technology makes communications written conversation make you reliable if you can't/or don't delete or unsend the messages. That might make people more honest than ever.
it was field day for the upper grades at Rock Creek School,
Each grade had to choose a team name and a color for their tee-shirts,
Use the clues below to figure out what each grade chose for their team name and tee-shirt color,
each grade can chose one color and one team name.
- The third and fifth grades didn't choose an animal for their team name.
-The forth grade ended up with red tee-shirts with sharks on the.
-The fifth graders and tornadoes are not wearing teal.
-The bears are wearing green.
Some of the photo cut off sorry
Answer: it’s green
Explanation:
What is unique about the date calculations from other formulas? Some do not require any arguments. It uses absolute numbers. It uses / for division. It uses parentheses for arguments.
Answer:
a. Some do not require any arguments.
Explanation:
Answer:
A) Some do not require any arguments.
Explanation:
on edge 2020
What are the two most common formats of a business letter?
Flyer and outline
Formal and informal
Corporate and LLC
Block and indented
The two most common formats of a business letter:
Block and indented
Karen wants to create a program that will allow the user to input their age. Which of these lines of code should be used?
print("What is your age?")
age = ("What is your age?")
age = input("What is your age?")
age = ask("What is your age?")
Answer: age = input("What is your age?")
Explanation: Since this is the syntax for inputing a variable and storing it as age
Answer:
Answer is age=input(what is your age)
Explanation: Its right because age=input your inputting your age and what is asking you hopefully it helped have a good day :)
What is Fill handle?
Answer: I copied and pasted my answer if you need the website to cite information let me know
Explanation:
Fill Handle is a feature in Excel that enables you to auto-complete a list in a row/column by simply dragging it using your mouse. A basic understanding of fill handle in Excel could save you some time and make you more productive.
What are some ways to cut down on repetitive code in your website?
Answer:
using functions or loops
Explanation:
Functions allow you to repeat code execution simply by calling the function containing the code that needs to be repeated multiple times.
Loops also allow you to execute the same code repeatedly.
Select the correct text in the passage
Which sentence determines that Robert is adjusting the brightness slider?
Robert was editing a photograph. The highlighted portion of the picture and the middle tones became dark when he moved a slider to the
extreme left. The luminance of the image turned to a middle gray when he moved a slider to the left. He increased the luminance of the pixels
by pushing a slider to the extreme right. Because of this important details of the picture were lost. However, sometimes Auto Tone or Auto
Contrast can help resolve tonal problems
Explanation:
he increased the luminance of the pixels by pushing the slider to the extreme right, because auto contrast and auto will be able to adjust to effect if any important detail on the image may be lost in the process of adjusting the brightest slider
The sentence that has been determining that Robert is adjusting the brightness slider is that he increased the luminescence of the pixels in order to push the slider to the extreme right.
What is a brightness slider?A brightness slider has been given to the system with the photographer to control the lights. It made the system that has been better reading.
In the work Robert has been the photographer, thereby he was required to make the corrections to the picture with the change in the tone by shifting the brightness slider to the extreme left. The other change made by Robert to the photograph is to change the luminance to white gray.
He was changing the luminescence of the photograph by shifting the slider to the extreme left and extreme right.
Learn more about brightness slider, here:
https://brainly.com/question/899071
#SPJ5
selling R frog for 50 r-obux on r-oblox!!! dont answer if u not gonna buy it
user: its_ninisuuuYT
Answer:
This is a complete waste of this site.
Explanation:
The whole point of this website is to provide answers for questions you have on schoolwork. Why not just go back to r-oblox and sell to your friends there? Aint nobody gonna buy nothing when you post about it on Brainly.
What was the job of the Committee of Correspondence? WILL GIVE BRANLEST AND 40 POINT
to tar and feather all British tax collectors
to communicate with the British Parliament
to contact each colony's legislature and pressure them to pay British taxes
to contact each colony's legislatures so they could join together in their opposition to the British
Answer:
to contact each colony's legislatures so they could join together in their opposition to the British
Explanation:
The committees of correspondence functioned mainly as a means of spreading news and information about the Patriot cause and mobilizing opposition to British policies in cities, towns and rural communities throughout the colonies.
Answer: to contact each colony's legislatures so they could join together in their opposition to the British
Explanation:
Leave a thanks and review if it helped, thanks?!
Select the correct answer.
Jeff has created a table to calculate the cost of raw materials that he purchases monthly. Cell A2 shows the fixed cost of the raw material (3). Column D lists the
quantity (number of units) that Jeff purchased each month. What formula can Jeff use in E2 to calculate the monthly cost of the raw material that he can copy to all
the rows below?
1 Monthly rate
2
3
4
5
6
7
Month
Jan
Feb
Mar
Apr
May
Jun
D
Number of units Cost
10
8
12
13
10
15
ОА.
=A2*D2
B.
=$A2 D2
ОС.
=$A$2*$D$2
D. =$A$2*D$2
E.
=A$2*D2
Answer:ell A2 shows the fixed cost of the raw material (3). Column D lists the quantity (number of units) that Jeff purchased each month. What formula ..
Explanation:
Please Help ASAP. Marking Brainliest For Correct Answer.
Explore the program below, referring to the task description to know what task the chunk of code is supposed to execute. Explain why the program is not working as intended, then rewrite/rework the program so that it performs the intended task as stated in the description.
The following situation uses a robot in a grid of squares. The robot is represented by a triangle which is initially in the top left square and facing right. The robot may not travel through the black squares. The program below is intended to move the robot from its starting position to the gray square, but it is not currently working. The program segment uses the procedure called GoalReached , which evaluates to true if the robot is in the gray square and evaluates to false otherwise.
In complete sentences, explain why the program is not working as intended, and also provide a solution that allows the program to perform its intended task.
Answer: It is not working because it is missing the code needed to turn right.
Sentence :The robot would move forward two squares and would stay stuck there because it can not move forward nor turn left. You would need to add code for the robot to be able to turn right so that the robot can reach the goal
There are several reasons that could make a code segment not to work.
The attached code is not working because, the method ROTATE_RIGHT() is missing
From the given code segment, we have the following observations
The robot can turn left using ROTATE_LEFT()The robot can move forward using MOVE_FORWARD()However, when there is a need for the robot to turn right, the code segment does not have a provision for that.
Hence, the reason the code is not working is because:
The method ROTATE_RIGHT() is missing
The solution to this is to provide a ROTATE_RIGHT() method in the code segment
Read more about debugging at:
https://brainly.com/question/23527739