Answer:
pues de decoracion las llantas de columpios y los cuernos de antenas de tele okey no me presiones estoy en clase y acabo de hacer 11 ejercicios y acaba de empezar ok
I have a very good example of the program you need written on Python. You can use this (sorry for bad tabulation):
import math
import math
def main():
function = input("Enter a function f(x):\n")
x = 0
y = 0
for rows in range(10,-11,-1):
for col in range(-10,11,1):
x=col
roundfx = round(eval(function))
if roundfx == rows:
print("o", end="")
if rows==0 and col==0 and not rows == roundfx:
print("+", end="")
if col == 0 and not rows == 0 and not rows == roundfx:
print("|", end="")
if rows==0 and not col==0 and not rows == roundfx:
print("-", end="")
else:
if not rows == 0:
if not col == 0:
if not rows == roundfx:
print(" ", end="")
print()
main()
Answer:
The answer is "Option D".
Explanation:
A system or a group of components that communicate with your environment through the sharing of resources, materials, and knowledge with a view to system regeneration and development is known as an Open system. In other words, we can say that it is a system that includes a non-proprietary hardware and advert-based software which enables third parties to add or interact with products to plug in the system and It is freely available on the internet. In this question, the incorrect options can be described as follows:
- In option A, The management system is used by an organization. It is a paid system that's why it is not correct.
- In option B, This system enables users in online communities and evaluates one another that's why it is not correct.
- In option C, This type of system provides resources for upgrade user knowledge. It is a paid system that's why it is not correct.
Answer:
Motherboard
Explanation:
Motherboard is the main component of a computer. It connects with other parts of the computer including drive disks, RAM and CPU and any other expansion slots :)
(Hope it helped)
Answer:
PrintWriter variable = new PrintWriter("output.txt");
Explanation:
There are two ways of declaring a reference variable in programming.
One way is
Reference Variable-name = new Reference ("some texts here");
While the other is
Reference Variable-name;
Variable-name = new Reference ("some texts here");
Both ways are valid ways of reference variable declaration.
In the question above, the reference is PrintWriter, it points to output.txt and the question says "write a single statement";
Hence, we make use of
PrintWriter variable = new PrintWriter("output.txt");
A reference variable is declared to be of a specific type and that type can never be changed.