Answer:
is this technology or
Explanation:
computer
Answer:
communicate with friends.
Explanation:
bc i took it
n the diagram below, why is var typed first in front of pizza?
Answer:
var is used to initialize the pizza variable
Explanation:
In order to create a variable, you first have to intiialize he variable.
This is the syntax to intiailize the variable:
var variableName
Thus, to initialize the pizza variable, you would do:
var pizza
Once you initialize the variable, you can then assign values to the variable.
pizza <- 3
Here, the value 3 is assigned to the pizza variable.
Select the four elements typically included as part of a motherboard.
chipset
webcams
speakers
expansion cards
keyboard
sockets
clock generator
Answer:
Chipset, Expansion Cards, Sockets and Clock generator
Explanation:
Answer:
2
3
5
6
Explanation:
on edg
Choose the proper term to describe each of the following examples.
senate.gov:
IP Address
SMTP account name
domain name
23.67.220.123:
IP Address
SMTP account name
domain name
Answer:first 1
Explanation:
Take a minute to reflect on your thoughts and learning so far and discuss:
1- the skills you may need to have a career in media arts.
In paragraph form, identify and discuss at least 3 essential skills you need for a career in media arts and why they are important.
2- how the techniques used in different media artworks may reflect varying messages and points of view.
In paragraph form, state a company or product and describe 2 advertising techniques that will be beneficial to advertise it. One of your techniques should address the best type/form to advertise it and why you think it is the best.
Answer:
To be completely honest, this is a question that you and only you can answer really. You were the one that took the class and we cant reflect on your thoughts for you. I'm not trying to be one of those people, but its the truth.
Explanation:
Question # 4
Dropdown
Choose the correct term to complete the defintion of your user-defined data type.
v player
life = 3
magic = False
name =
Answer:
class
Explanation:
edg2020
Answer: class
Explanation: got it right on edgen
alexa is scanning a photograph whitch mode should she use A green tone B blue tone C greyscale D sepia
Answer:
grey scale......................
Answer:
C. Greyscale
Explanation:
Got it right on Edmentum!
PLEASE ANSWER FAST.one of the barriers for early "talkies" was the need to manually crank the projector and manually synchronize the audio and film, which resulted in uneven quality based on operator skill true or false
Answer:?
Explanation:?
PLS WILL GIVE BRAINLEST What eventually led to the abandonment of Jamestown?
malaria-carrying mosquitoes
a civil war
riots started by slaves
famine
Answer:
famine is the answer I believe
Answer:
D. Famine
Explanation:
Sir Thomas Gates, the newly named governor, found Jamestown in shambles with the palisades of the fort torn down, gates off their hinges, and food stores running low. The decision was made to abandon the settlement.
Please Help Me
If you had an acer chrombook and it was family linked you had two accounts on it. (The administrater which is the family linked account and a school account) and you forgot the original password to the account how do you completely reboot the computer and start all over again.Like completely reboot like its new.
Answer:
Sign out of your Chromebook.
Press and hold Ctrl + Alt + Shift + r.
Select Restart.
In the box that appears, select Powerwash. Continue.
Follow the steps that appear and sign in with your Google Account. ...
Once you've reset your Chromebook:
Explanation:
Hope this helps. :)
Masons work with stone or brick true or false
Answer:
True
Explanation:
The common materials of masonry construction are brick, building stone such as marble, granite, and limestone, cast stone, concrete block, glass block, and adobe. Masonry is generally a highly durable form of construction.
Write a for loop to print all the even numbers from 200 to 300.
for x in range(200,301,2):
print(x)
I hope this helps!
JAVA
Take two String inputs of the same length and merge these by taking one character from each String (starting with the first entered) and alternating. If
the Strings are not the same length, the program should print "error".
Sample Run 1:
Enter Strings:
balloon
atrophy
baatlrloopohny
Sample Run 2:
Enter Strings:
terrible
mistake
error
import java.util.Scanner;
public class JavaApplication83 {
public static void main(String[] args) {
Scanner scan = new Scanner(System.in);
System.out.println("Enter Strings: ");
String word1 = scan.nextLine();
String word2 = scan.nextLine();
String newWord = "";
if (word1.length() == word2.length()){
for (int i = 0; i < word1.length(); i++)
{
newWord += word1.charAt(i) +""+word2.charAt(i);
}
}
else{
newWord = "error";
}
System.out.println(newWord);
}
}
I hope this helps!
4.9 Code Practice: Question 4
Answer:
sum = 0
r = 0
while r < 10:
p = float(input("Enter Temperature: "))
sum += p
r += 1
print("Sum = " + str(sum))
Explanation:
You can change the variables if you like.
In this exercise we have to use the knowledge of computational language in python to write the code.
This code can be found in the attached image.
To make it simpler the code is described as:
sum = 0
r = 0
while r < 10:
p = float(input("Enter Temperature: "))
sum += p
r += 1
print("Sum = " + str(sum))
See more about python at brainly.com/question/22841107
What are some websites to watch free movies on? (anybody answer with like 3 or 4 websites)
fox that what i get on at school
Answer:Kodi with builds
Explanation:
its a perfectly safe download
Which best describes a computer bug?
Answer:
a piece of computer software containing defects that prevent a program from running properly
Explanation:
i got a 100% on the test
Answer: The correct answer is B. a piece of computer software containing defects that prevent a program from running properly.
Explanation: I got it right. The answer is correct on Edge.
A computer bug is a type of error, fault or flaw in the software or hardware of a computer system. These bugs may cause unexpected results, malfunctions or crashes in a computer program or system. Logic errors, syntax errors, and runtime errors are some of the common types of computer bugs.
Bugs can propagate into a computer system during various levels of development including design, coding, testing, and deployment. However, to prevent bugs from invading, various testing and debugging methods should be performed by software developers to detect and fix any of the errors or problems that may occur.
Hope this helps! :)
What does an Information security analysts do?
Answer:
Information security analysts install software, such as firewalls, to protect computer networks. Information security analysts plan and carry out security measures to protect an organization's computer networks and systems. Their responsibilities are continually expanding as the number of cyberattacks increases.
Explanation:
hope this helps
what best defines "opportunity cost"
Answer: You have a oputernity to buy it so say there are other people are not looking but they want it its like an auction you have to pretty much bid
Explanation:
What is the maximum number of alphanumeric characters that a single SMS can have?
A.
140
B.
170
C.
160
D.
150
Answer:
160
Explanation:
Write three statements to print the first three elements of vector runTimes. Follow each with a newline. Ex: If runTimes = {800, 775, 790, 805, 808}, print:
Answer:
Following are the code to this question:
#include <stdio.h>//defining header file
int main()//defining main method
{
int runTimes[] = {800, 775, 790, 805, 808};//defining array of integers
for(int k=0;k<3;k++)//defining for loop for print value
{
printf("%d\n",runTimes[k]);//print value with a new line
}
return 0;
}
Output:
800
775
790
Explanation:
In the above-given C language code, an array "runTimes" is defined, which holds the number of integer values.
In the next step, a for loop is defined, which uses the "k" variable, which starts from 0 and ends when its value is less than 3.
In the for loop, it uses the print method with "\n", that prints the array value in the new line.
Assume that your body mass index (BMI) program calculated a BMI of 20.6. What would be the value of category after this portion of the program was executed?
# Determine the weight category.
if BMI 39.9:
category = "morbidly obese"
elif BMI <= 24.9:
category = "normal"
elif BMI <= 39.9:
category = "overweight"
The value of category will be (normal/overweight/.underweight/morbidly obese)
Answer:
normal is the answer
Answer:
normal
Explanation:
How do you move a slide to another location in you your
presentation?
Answer: Literally click on it and hold, then just drag it to wherever you want it
Explanation: Hope this helped you
Tricia is managing tasks that have been assigned to her. She needs to enter mileage information in relation to a project which command must she use to access this option?
Answer:
well she is doing a task
Explanation:
Answer:
task
Explanation:
love me love me say that u love me fool me fool me go on and fool me : ) answer the question thx
Answer:
fido
Explanation:
i think sorry if wrong
Answer:
fidooo
Explanation:
What will you see on the next line?
>>> aList = [9, 2, 3.5, 7]
>>> aList.sort()
>>> aList
An error statement since you tried to sort a list with both int and float numbers.
[9, 2, 3.5, 7]
[2, 3.5, 7, 9]
Answer:
c [2, 3.5, 7, 9]
Explanation:
Given the following code:
>>> aList = [9, 2, 3.5, 7]
>>> aList.sort()
>>> aList, the thing that would be seen on the next line is c [2, 3.5, 7, 9]
What is an Array?This refers to the collection of data that are similar to each other and can be easily identified by an array index.
Hence, we can see that from the simple array given, there is an unordered list and with the command, "aList.sort()", this arranges the unordered list into one that is ordered and this would provide [2, 3.5, 7, 9] which is in ascending order.
Read more about arrays here:
https://brainly.com/question/24275089
#SPJ2
If your computer will not turn on, what is something you would do to diagnose the problem?
A)Check if the monitor is plugged in
B)Push the power button
C)See if it is plugged in
D)Turn on the printer
The sheep in the image below is an example of which of the following?
balanced space
positive space
negative space
neutral space
Answer:
balanced space.
Explanation:
This is a edu guess.
Julie is purchasing new shoes on a website for her favorite store. Which of the following would indicate that a website is a secure site? http https www wwws
Answer:
https
Explanation:
looking at one right now tryna get me some shoes
Answer:
https
Explanation:
Where can you find thousands of templates for Excel?
O Home tab
Page Layout tab
Backstage View
O
Insert
Answer: The answer is C. backstage view
Explanation: JUST ANWERED
Answer:
c backstage
Explanation:
7.4 Code Practice: Question 2
Adjust the code you wrote for the last problem to allow for weighted classes. Add a parameter weighted ( 1 = yes, 0 = no) and then return the correct number for the GPA. Weighted classes get one extra point on the GPA value.
I could really use some help on this and 7.5 (I’ll ask that question for 7.5 later)
def GPAcalc(grade, weighted):
grade = grade.lower()
dictionary = {"a": 4, "b": 3, "c": 2, "d": 1, "f": 0}
if weighted == 1 and grade in dictionary:
return "Your GPA score is: "+str(dictionary[grade] + 1)
elif weighted == 0 and grade in dictionary:
return "Your GPA score is : "+str(dictionary[grade])
else:
return "Invalid"
print(GPAcalc(input("Input a letter grade: "), int(input("Is it weigthed? (1= yes, 0= no)"))))
I modified the code a bit to cut down on the use of if and elif statements. If you need me to change it, I will. Best of luck.
The program is an illustration of conditional statements.
Conditional statements are statements whose execution is dependent on its truth value.
The program in Python, where comments are used to explain each line is as follows:
#This initializes the dictionary
dict = {"a": 4, "b": 3, "c": 2, "d": 1, "f": 0}
#This gets input for grade
grade = input().lower()
#This gets input for the weighted average
weighted = int(input())
#If the weighted average is 1, and the grade is in the dictionary
if weighted == 1 and grade in dictionary:
#This prints the GPA score
print("Your GPA score is: "+str(dict[grade] + 1))
#If the weighted average is 0, and the grade is in the dictionary
elif weighted == 0 and grade in dictionary:
#This prints the GPA score
print("Your GPA score is : "+str(dict[grade]))
#Otherwise
else:
#The grade is invalid
print("Invalid")
Read more about similar programs at:
https://brainly.com/question/19241597
Which one of the following statement is untrue
Answer:
B IS FALSE
Explanation:
they are input devices