Answer:
Binary
Explanation:
Program with variables upload instructions
Answer:
Here, I made sure to incorporate variables just in case. You could change it to whatever you need.
Explanation:
v1 = "Hello world!"
v2 = "Spam"
v3 = "Eggs"
v4 = "SpamEggs"
v5 = "Spam Eggs"
v6 = "Spam Eggs"
v7 = 7.9
v8 = 20
v9 = 13
v10 = 5
v11 = 13
v12 = 10.8
v13 = 2.7
print(v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13)
if you don't want it all on one line you could just print each variable individually :)
Answer:
Print(“Hello World!”)
Print(“Spam”)
Print(“Spam+Eggs”)
Print(“Spam Eggs”)
Print(“Spam Eggs”)
Print(“7_9”)
Print(“2”+”0”)
Print(“1”+”3”)
Print(“5”)
Print(“1”+”3”)
Print(“1”+”0”+”.”+”8”)
Print(“2”+”.”+”7”)
Explanation:
I think i did it lol, not sure
Based on what you know about the Sort and Find functions, return to the database file to determine the answers to the following questions.
In which year did most people update their contact information?
1988
2010
2011
2012
Answer:
2010
Explanation:
Most of the people updated their information in the database in the year 2010. The database files have different functions which enable the sorting of data according to the contact information with year wise filter.
Answer:
It’s 2012
Explanation:
What are the different data types that a variable can be in computer programming?
Answer:String (or str or text)
Character (or char)
Integer (or int)
Float (or Real)
Boolean (or bool)
Explanation:
8.7 Code Practice: Question 2 edhesive
In this exercise we have to have knowledge of computational language in python, so we find the code.
How to define list in Python?In Python, a list is represented as a sequence of objects separated by commas and enclosed in square brackets [], so an empty list, for example, can be represented by square brackets without any content.
So, to make it simpler, the code can be found below as:
w = ["Algorithm", "Logic", "Filter", "Software", "Network", "Parameters", "Analyze", "Algorithm", "Functionality", "Viruses"]
for x in w:
if(x[0]=='A'):
print(x)
See more about python at brainly.com/question/26104476
Answer:
w = ["Algorithm", "Logic", "Filter", "Software", "Network", "Parameters", "Analyze", "Algorithm", "Functionality", "Viruses"]
for i in range(len(w)):
if w[i][0] == "A":
print (w[i])
Explanation:
You are the administrator for a small network. You have approximately 50 users who are served by a single Windows server. You are providing Active Directory, DNS, and DHCP with this server. Your clients all use Windows workstations. Last week, an employee quit. A replacement has been hired and will be starting next Monday. The new user will need to have access to everything the previous user had, including document files held in the Home folder. You need to set up an account for the new user that all the access required. What should you do?
Answer:
Rename the existing account, and change the name fields to match the new employee.
Explanation:
As you appoint new employer that need all the access to everything that the previous user had, including the documents files held in the Home Folder.
So, As an administrative of the network, you should Rename the existing account, and change the name fields to match the new employee.
Use the drop-down menus
to complete the steps for reducing the mailbox server storage,
1. To access Mailbox Cleanup tools, navigate to_____the tab, and click Cleanup Tools.
2. Once in the Mailbox Cleanup dialog box, there are different options to choose from, such as_____________
or Empty Deleted Items,
3. The____________
function moves items off the server to an online Office 365 folder.
Answer:
1. File
2. AutoArchive
3. Online Archive
Explanation:
9. Draw a flowchart to find the area of rectangle. (A = /B* H)
1 Add File
Answer:
See Photo
Explanation:
Area of rectangle = length * width
---- According to problem: A = /B*H
---------Note: Dropped the "/", if needed just change what happens in the diamond
Personal digital assistants are: Group of answer choices artificial intelligence systems that leverage rules or examples to perform a task in a way that mimics applied human expertise. handheld computing devices meant largely for mobile use outside an office setting. systems that provide rewards and usage incentives, typically in exchange for a method that provides a more detailed tracking and recording of customer activity. small chip-based tags that wirelessly emit a unique identifying code for the item that they are attached to. transaction processing systems that capture customer purchases.
Answer:
its about digital science
Explanation:
how do hand tools,Farm implements and farm equipment differ from one another
Elige una metodología presentada en la lectura para aplicar la prospectiva (Método Delphi o Construcción de escenarios) y de manera gráfica represente cada metodología y sus fases.
Answer:
Método Delphi
Explanation:
El método Delphi es un método experto que se ha utilizado ampliamente en la investigación de futuros. En la actualidad, el método Delphi involucra típicamente de 15 a 40 expertos en dos o tres rondas.
La selección de un panel de expertos que represente de manera integral a las partes interesadas relevantes es un paso crucial en el estudio. La primera ronda, a menudo realizada a través de entrevistas, busca preguntas relevantes y motiva al panel a seguir trabajando. En la siguiente ronda, los panelistas evalúan las declaraciones prospectivas y justifican sus respuestas con diferentes perspectivas. Una característica clave del método es dar respuestas sin nombre, es decir, de forma anónima.
El método Delphi es especialmente adecuado para tratar un tema complejo o que cambia rápidamente, para el cual se pueden identificar expertos o partes interesadas (como ciertos grupos de población) u organizaciones (desarrollo tecnológico, problema social) que estén particularmente familiarizados con él.
El proceso Delphi produce una variedad de perspectivas, hipótesis y argumentos que se someten a pruebas y argumentaciones de expertos abiertos. El proceso busca filtrar las opiniones en opiniones de la comunidad compartidas o disidentes. Ambos resultados son valiosos. Puede haber desacuerdo no solo sobre los argumentos sino también sobre los objetivos, la probabilidad y la conveniencia de las alternativas.
Ill give 100 points to whoever gives me the CORRECT answer. I keep getting syntax errors when I do the "add:" part. Can someone walk me through this code?
Part A One of the biggest benefits of writing code inside functions is that we can reuse the code. We simply call it whenever we need it! Let’s take a look at a calculator program that could be rewritten in a more reusable way with functions. Notice that two floats (decimal numbers, but they can also include integers) are inputted by the user, as an operation that the user would like to do. A series of if statements are used to determine what operation the user has chosen, and then, the answer is printed inside a formatted print statement. num1 = float(input("Enter your first number: ")) num2 = float(input("Enter your second number: ")) operation = input("What operation would you like to do? Type add, subtract, multiply, or divide.") if operation == "add": print(num1, "+", num2,"=", num1 + num2) elif operation == "subtract": print(num1, "-", num2,"=", num1 - num2) elif operation == "multiply": print(num1, "*", num2,"=", num1 * num2) elif operation == "divide": print(num1, "/", num2,"=", num1 / num2) else: print("Not a valid operation.") Your job is to rewrite the program using functions. We have already looked at a function that adds two numbers. Using that as a starting point, we could call the add function from within our program in this way: if operation == “add”: result = add(num1, num2) print(num1, "+", num2,"=",result) Now it’s your turn to do the following: Type all of the original code into a new file in REPL.it. Copy the add function from the unit and paste it at the top of your program. Write 3 additional functions: subtract, multiply, and divide. Pay careful attention to the parameters and return statement. Remember to put the three functions at the top of your Python program before your main code. Rewrite the main code so that your functions are called. Part B There are many different ways that a user could tell us that he or she would like to add two numbers in our calculator program. The user could type “add”, “Add”, “ADD”, or “+”, to name a few possibilities. Of cour
Answer:
sorry but there is not enough information to complete this
Explanation:
working on rewriting my code so i can paste it here! itll be done in a sec
Need help with the last one or if I got the others wrong
Son los inventarios en proceso que hacen parte de la operación en curso y que se deben tener en cuenta antes de empezar a transformar el material directo.
Answer:
When an inventory is purchased the goods are accounted in the raw material but when this raw material is to be converted in finished goods it is transferred from raw material to processing of raw material into finished goods and when the process is completed when the raw material turns into finished goods the goods are then accounted for as finished goods.
Explanation:
When an inventory is purchased the goods are accounted in the raw material but when this raw material is to be converted in finished goods it is transferred from raw material to processing of raw material into finished goods and when the process is completed when the raw material turns into finished goods the goods are then accounted for as finished goods.