Answer:
Generally, copyrights protect creative or intellectual works, and trademarks apply to commercial names, phrases, and logos. ... Trademarks protect the use of a company's name and its product names, brand identity (like logos) and slogans.
Explanation:
What are 6 subtopics to the topic “computer programming”? Please let them be good answers that are middle school level
Answer:
1. Array programming language.
2. Aspect-oriented programming language.
3. Class-based programming language.
4. Concatenative programming language.
5. Concurrent programming language.
6. Data-structured language.
I'm not sure if this is what you want, but these are a couple types of programming languages
Need the answer ASAP!!!!
Select the correct answer.
What type would the object X be in the following statement:
If (x) {...}
A.number
B.Boolean
C.string
D.date
Answer:
its Boolean
Explanation:
trust me
convert this hexadecimal number to binary :. A07F
Answer:
101000000111
Explanation:
Input a list of positive numbers, terminated by 0, into an array Numbers[]. Then display the array and the largest and smallest number in it.
Answer:
hope this helps and mark my ans brainliest if it helped.
Explanation:
def main():
Numbers = []
n = input("Enter the number: ")
while n != 0:
Numbers.append(n)
n = input("Enter the number: ")
if len(Numbers) > 0:
max = Numbers[0]
min = Numbers[0]
for i in range(0, len(Numbers)):
if max < Numbers[i]:
max = Numbers[i]
if min > Numbers[i]:
min = Numbers[i]
print Numbers
print "Largest: ", max
print "Smallest: ",min
main();
John is directing a television series. He has to shoot a scene that presents the lead character in a dominating and commanding position.
What
shooting technique should he use?
(NO LINKS!!!!)
A low angle
B. high angle
C. Dutch tilt
D. front angle
Answer:
it is A or B
Explanation:
I know it is either A or B because I took the test and tried Dutch tilt n front angle, got them both wrong on my 1st and second try.
What parts of a photograph determine whether a person looks quickly at a photo or studies it for a long period of time?( Minimum is a paragraph)
Consider the following code segment.
int[][] mat = {{10, 15, 20, 25},
{30, 35, 40, 45},
{50, 55, 60, 65}};
for (int[] row : mat)
{
for (int j = 0; j < row.length; j += 2)
{
System.out.print(row[i] + " ");
}
System.out.println();
}
What, if anything, is printed as a result of executing the code segment?
Answer:
10 20
30 40
50 60
Explanation:
Given
The above code segment
Required
What is printed, if anything
To do this, we analyze the code line by line.
Line 1: The first line creates a 4 by 3 array named mat
Line 2: for (int[] row : mat) { -> This creates row[] array which represents each row of array mat
Line 3: for (int j = 0; j < row.length; j += 2){ -> This iterates through the even indexed elements of the row array i.e. 0 and 2
Line 4: System.out.print(row[i] + " "); -> This prints the even indexed elements of the row array.
The even indexed elements are: 10, 20, 30, 40, 50 and 60
Line 5: System.out.println(); --> This prints a new line
Which of the following statements most accurately describes the difference between aptitudes and skills?
O Aptitudes are ability, and skills are the potential.
O Aptitudes can be learned or trained, unlike skills.
O Aptitude is the level of skill that a person has gained.
O Aptitude is a person's potential to learn new skills.
Answer:
Aptitude is the level of skill that a person has gained.
Explanation:
Aptitude is the measurement of knowledge someone has in a specific area.
Answer:
C Aptitude is the level of skill that a person has gained
Explanation:
which is not a communications media?
1. wire
2.microwave
3.satellite
4. NIC
Answer:
2. microwave
Explanation:
It's a gadget used in the kitchen
15.Every CPU needs to:
a. Dissipate heat
b. Be refreshed by the computer's ROM
C. Spend time in the off state
Answer:
Dissipate heat
Explanation:
As CPU works efficiently while there is cool
Rachel wants to minimize project risks. Arrange the steps in an order that will correctly help Rachel and her team to minimize project risks.
Answer:
identify, evaluate, prioritize, and then control
Explanation: I got a 100% on my test.
8.1.9: Cookout Orders
I don’t know what I’m doing wrong
Ps. Also if you could help me with 8.1.8 Citation, Thank you
Answer:
The correction to the code is as follows:
order_1 = ("Lee",0,2)
order_2 = ("Tamia",1,0)
order_3 = ("Edward",1,1)
print("You need to buy",order_1[-1],"hotdogs")
print("You need to buy",order_2[1],"burgers")
print("You need to buy",order_3[1],"burgers and",order_3[2],"hotdogs")
Explanation:
The first three lines of the program is bug free.
However, the last 3 print statements are not.
(1) The statement to be printed must be in open and close parenthesis
(2) Change the + to comma (,) because the print statement includes integer and string values
(3) Lastly, the tuple items in the last statement must be printed separately
Regarding the citation, could you please clarify what you need help with specifically. Are you referring to citing a source in a particular citation style, such as APA or MLA. Providing more information will allow me to assist you better.
Recitation refers to the act of reading or repeating something aloud, often from memory or a prepared text. It is commonly associated with the process of learning and reviewing information, particularly in educational settings. Recitation can take various forms depending on the context.
In an academic or educational context, recitation often refers to a supplemental session where a teaching assistant or instructor leads a small group of students in reviewing and discussing material covered in a lecture. During a recitation, students may be asked to answer questions, solve problems, or participate in discussions related to the subject matter.
Learn more about educational context on:
https://brainly.com/question/31199020
#SPJ6
multimedia computer system required the following hardware component they are what
Which statement best describes the problem statement below?
Answer:
dont click on his link it has virus
In addition to different gameplay styles, games also have different player states.
True
False
Answer:
Games differ wildly on how many stats they have. If you take an RPG like Zelda, does Link have a strength stat or an intelligence stat? No! An RPG doesn't need a lot of stats to be good but nearly all RPGs will have some stats.
Explanation:
Alguien me podria ayudar a hacer este codigo porfavor? en php Desarrolle el código que solicite los datos (desde teclado) Nombre, Edad y peso. Posteriormente realice lo siguiente: a) Imprima los datos. b) Solicite el peso hasta que el rango de valores sea entre 50 y 100 kilos. c) La edad debe ser entre 18 y 50 años Suba los archivos con el código y la evidencia de la ejecución.
Answer:
Explanation:
El codigo solicita los datos y los analiza. Si estan bien continua, sino los vuelve a solicitar. Cuando esten todos los datos bien los imprime.
import java.util.Scanner;
class Brainly {
public static void main(String[] args) {
Scanner in = new Scanner(System.in);
System.out.println("Nombre: ");
String nombre = in.nextLine();
int Edad, peso;
while (true) {
System.out.println("Edad: ");
Edad = in.nextInt();
if ((Edad >= 18) && (Edad <= 50)) {
break;
}
}
while (true) {
System.out.println("Peso: ");
peso = in.nextInt();
if ((peso >= 50) && (peso <= 100)) {
break;
}
}
System.out.println("Nombre: " + nombre);
System.out.println("Edad: " + Edad);
System.out.println("Peso: " + peso);
}
}
Explain what the loop does and what the result of executing it will be.
Consider this JavaScript loop:var new = 0;for (i=3;i<=5;i++){ new=new+i;}
Answer:
The loop increments the value of new while the loop condition is true
The end value of new is 3
Explanation:
Given
The above code segment
Required
What the loop does and the result
We have:
[tex]new = 0[/tex] --- initialize new to 0
[tex]i = 3; i \le 5; i++[/tex] --- The loop condition;
i.e. the loop will be repeated 3 times (when i = 3, 4 and 5)
[tex]new = new + 1[/tex] --- For each increment of i, new is incremented by 1
So, the value of new is:
i = 3: new = 0 + 1 = 1
i = 4: new = 1 + 1 = 2
i = 5: new = 2 + 1 = 3
Name:
Computer Science
Modified
Python Coding Section C
Directions: Circle the best answer.
1. If the code below, what is the maximum amount of gold that can be in a treasure chest?
def treasure_chest():
gold = random.randint (1, 10)
print ("the treasure chest contains", gold, "pieces of gold.")
#Main program begins here
import random
player_gold = 5
print("There is a treasure chest here.")
treasure_chest()
+ None
C. Five
b. One
d. Ten
2. What is the output of this program?
def say_hello() :
print("Hello World)
say_hello)
say_hello
a. Hello world! Hello world!
b. "Hello World" "Hello World!"
C. Hello Hello
# None of the above
Answer:
The max Number would be D. TEN
Explanation:
Where it say the main program begins is where the use of import random is be using under the treasure chest function basicly the random.randint choose and random number between 1 through to 10..
The history of the Internet dates back to the 1960s, when a group of scientists at Stanford University were entrusted to design which of the following as part of the competition between the US and its then Cold War enemy, the USSR?
a main frame to siphon information
a super computer for the US government
a network of sophisticated computers
a computer to control weapons
Answer:
a network of sophisticated computers
Explanation:
This is an easy and simple read if you want to as well
https://cs.stanford.edu/people/eroberts/courses/soco/projects/2001-02/distributed-computing/html/history.html
How has cell phones impacted our society.
i really need this please.
What is the computer system cycle called?
Answer:
he fetch–decode–execute cycle, or simply the fetch-execute cycle
mark me brainliestt :))
Your classmate is frustrated because the code that was designed to add up her five quiz grades is not working properly.
What change would you suggest to your classmate based on this code?for (i=1;i<=5;i++){ sum=0sum=sum+i;}
Answer:
sum = 0 must be before for loop. If inside for loop, it will keep resetting sum to 0 each iteration.
Explanation:
hope this helps
You are an intern at Lucerne Publishing.
The company needs to use multiple versions of Microsoft Once on each machine in the editing department.
Which virtualization strategy should the company use?
Answer:
jvgbicgbvhkvfvuncj gjvfjvfk fj
Need the answer rn!!!!
Answer:
what language is this? english or no
Explanation:
Which is a connectionless protocol in the transport layer? What are the small chunks of data called?
Answer:
User Datagram Protocol (UDP) , transport-layer segment.
Explanation:
The User Datagram Protocol is popularly known as UDP. It is defined as the communication protocol which is used across the internet for any time sensitive transmission like the DNS lookup or the video playback.
The UDP provides a unreliable and connectionless service to a invoking application.
The transport layers on sending side converts the application [tex]$\text{layer }$[/tex] messages which it [tex]$\text{receives}$[/tex] from the [tex]$\text{sending application process}$[/tex] into a transport layer segment called as the transport layer segments. This is achieved by breaking down the application messages into a smaller chunks and then adding the transport layer header into each chunk so as to create a transport layer segment.
UDP and the small chunks of data are called packets
You are an intern at Lucerne Publishing.
The company needs to use multiple versions of Microsoft Oce on each machine in the editing department.
Which virtualization strategy should the company use?
Answer:
Microsoft Application Virtualization (App-V)
Explanation:
Cloud computing can be defined as a type of computing that requires shared computing resources such as cloud storage (data storage), servers, computer power, and software over the internet rather than local servers and hard drives.
Generally, cloud computing offers individuals and businesses a fast, effective and efficient way of providing services.
In cloud computing, virtualization can be defined as a process which typically involves creating a virtual storage device, servers, operating system, desktop, infrastructure and other computing resources. Thus, virtualization is considered to be a building block (foundational element) of cloud computing as it powers it.
In this scenario, multiple versions of Microsoft Office are required to be used on each machine in the editing department. Thus, the virtualization strategy which the company should use is Microsoft Application Virtualization (App-V).
Microsoft Application Virtualization (App-V) refers to a virtualization and streaming software acquired by Microsoft from Softricity on the 17th of July, 2006. It is designed to avail software developers the ability to run, update and deploy (stream) software applications remotely to end users.
This ultimately implies that, end users could use multiple versions of a software application such as Microsoft Office 2013, 2016, etc., on each machine without having to worry about physically installing them on their Windows computer systems.
hello guess what u want brainlyst answer this question if u like gacha life
Answer:
yesssssssssssssssssssss I doo
Yes, no, I WAS obsessed when I was like, 10,11?
what are the basics to learn for ethical hacking?
Answer:
1. Run on OS which is similar to UNIX, like Linux. UNIX as well as UNIX-like OS are the operating systems of the Internet. Though a person can learn ...
2. Learn HTML.
3. Gain the knowledge of Programming.
4. Be a Creative Thinker.
5. Make a habit of Solving Problems.
Explanation:
Tips: Be highly smart with it, code may mess you up at times, changing things you'd never touched!
paris que tipo de sustantivo es?
Explanation:
CATEGORIA GRAMATICAL PARIS
Paris es sustantivo.
PLEASE HELP!!!!!!!!!!!!!!!!!!!!!!!!
Yolanda has created a spreadsheet containing student information about her homeroom class. She wants to color-code various parts of the spreadsheet so that the title in Row 1 appears on a blue background, the column headers in Row 2 appear on a pale green background, and the student data appears on a pale yellow background. How can she accomplish this task? This task contains the radio buttons and checkboxes for options. The shortcut keys to perform this task are A to H and alt+1 to alt+9.
A
Merge the cells that make up each section of the spreadsheet that she wants to shade.
B
Add thick box borders around each section of the spreadsheet that she wants to shade.
C
Add the appropriate fill color to each section of the spreadsheet that she wants to shade.
D
Add the appropriate font color to each section of the spreadsheet that she wants to shade.
Answer:
c
Explanation: