how to get answers on Microsoft form any code or hacks u can guv that'll be nice

Answers

Answer 1

Simple, really. No hacks required. Just study and you'll do fine.


Related Questions

Pls help I'm trying not to fail.​

Answers

Answer:

18

Explanation:

tryIt(2) will return 9 because 2+7 is 9 (7 is the default value of b)

9 * 2 = 18.

You can try this yourself at replit.

Please Help!
I need good Anime to watch!

Answers

Answer:

attack on titan

kakegurui

kuroko's basketball

haikyuu

One piece

Mha

fruits basket

naruto

the great pretender

tokyo ghoul

Darling in the Franxx

Toradora

death note

Explanation:

Answer:

Hunter x Hunter

The Promised Neverland

Magi

Gurren Lagann (The second season isnt that good though)

My Hero Academia

Bleach

One Piece

Fairy Tail

Demon Slayer

Naruto

Haikyuu

Toradora (This one is alright if you like romance anime)

Thats all I can think of right now

Explanation:

vegetable farming is a good source of income explain this statement

Answers

Answer:

Answer:qwertyuioplkjhgfdsazxcvbnm

Answer:qwertyuioplkjhgfdsazxcvbnmExplanation:

Answer:qwertyuioplkjhgfdsazxcvbnmExplanation:qwertyuioplkjhgfdsazxcvbnm

What suggestions might you give? Do you think it is okay to modify photos digitally to improve their appearance, or is that deceiving his customers? Why or why not?

Answers

The end behavior of a function f describes the behavior of the graph of the function at the "ends" of the x-axis. In other words, the end behavior of a function describes the trend of the graph if we look to the right end of the x-axis (as x approaches +∞ ) and to the left end of the x-axis (as x approaches −∞ ).

1- every employee’s salary lies within a job grade. Use your HR ERD to show the employee ID, first and last names, salary, job name, and job grade
2- displaying employees and their managers, along with the department names in which they belong. Display the employee ID, first and last name, manager ID and department name. The output must be arranged so that departments are shown together before another one is displayed.
3- Write suitable SQL statement to show this scenario: The HR department needs you to produce a report on job grades and salaries. Write a query that will display the names, job name, department name, salary, and grade for all employees.
4- subquery that reports the last name, department ID, and job ID of all employees whose department location ID is 1700 or 1800.​

Answers

Answer:

share full detail of your question categorically.

Explanation:

What is the exact number of bytes in a system that contains (a) 32K bytes, (b) 64M bytes,
and (c) 6.4G bytes
I need the answer as soon as possible please

Answers

Answer:

32K significará 32768 bytes, 64M = 67108864, 6.4G = 6851834668

Busque la diferencia entre kilobyte (kB = 1000) y kibibyte (KiB = 1024)

Explanation:

Create a Program that asks the user for their age. If their age is older than 65, print how old they are and tell them their ticket price is $5. If their age is between 25 & 65, print how old they are and tell them their ticket price is $10. Otherwise print their age and that their ticket price is $5. You should use elifs and concatenation

Answers

age = int(input('Age: '))

if age >= 65:

   print(f'You are {age} years old and your ticket is $5')

elif age >= 25 and age < 65:

   print(f'You are {age} years old and your ticket is $10')

else:

   print(f'You are {age} years old and your ticket is $5')

Choose the term that matches the action.

: files for patents they never intend to develop

A patent thief

B patent troll

C patent tax

D patent hacker

Answers

Answer:Patent Troll

Explanation:

I just took the quiz lol

Identify five type of application software​

Answers

Application Software and Types of Application Software
Word processors.
Graphics software.
Database software.
Spreadsheet software.
Presentation software.

Explanation:

Word processors.

Graphics software.

Database software.

Spreadsheet software.

Presentation software.

Web browsers.

Enterprise software.

Information worker software.

You have the following code in your program.

from array import *
Which line of code would create an array?


E = array([3, 6, 10])

E = array('b',[3, 6, 10])

E.array('b',[3, 6, 10])

E = array('b',3, 6, 10)

Answers

Answer:

E = array('b',3, 6, 10)

Explanation:

in the lesson I saw an array created in this format arr = array('f',[1.5, 3.6, 23])

:)

The line of code that would create an array is  E = array('b',3, 6, 10). The correct option is d.

What is programming?

High-level programming languages interface with computers via translation, which entails translating program code into machine code. These languages are used to generate computer code or program code, which is a set of instructions that makes up a computer program that is executed by the computer.

A compiler or interpreter converts this source code into machine code, which the computer can then use to do its job. This is the sort of language used in computer programming that accepts human-readable input or commands from the programmer and then converts it to machine-readable code.

Therefore, the correct option is d, E = array('b',3, 6, 10).

To learn more about programming, refer to the link:

https://brainly.com/question/14461424

#SPJ2

question
what is the advantages of maintaining a list of keywords while creating a design blueprint?

A: helps create structured content that has an even and simple flow.

B: helps create content tailored to provide the site with a higher chance of coming up in a relevant web search.

C: helps create elements that work towards a single objective.

D: helps give the website a proper flow

Answers

Your answer would be A

What is Stefen Salvators mom name? For the tvd fans

Answers

Answer:

Lillian "Lily" Salvatore

Explanation:

Answer:

lily

Explanation:

Consider the following class declarations.

public class Publication
{
private String title;

public Publication()
{
title = "Generic";
}

public Publication(String t)
{
title = t;
}
}

public class Book extends Publication
{
public Book()
{
super();
}
public Book(String t)
{
super(t);
}
}
The following code segment appears in a method in another class.

Book myBook = new Book("Adventure Story"); // Line 1
Book yourBook = new Book(); // Line 2

Which of the following best describes the result of executing the code segment?

a. Object myBook is created using the one-argument Book constructor, which uses super to set myBook’s title attribute to "Adventure Story". Object yourBook is created using the Book constructor, which uses super to set yourBook’s title attribute to an empty string.
b. Object myBook is created using the no-argument Book constructor, which uses super to set myBook’s title attribute to "Generic". Object yourBook is created using super to call to the Publication no-argument constructor to set yourBook’s title attribute to "Generic".
c. Object myBook is created using the one-argument Book constructor, which uses super to set myBook’s title attribute to "Adventure Story". Object yourBook is created using super to call to the Publication no-argument constructor to set yourBook’s title attribute to "Generic".
d. A runtime error occurs in line 1 because the one-argument Publication constructor cannot be called from the one-argument Book constructor.
e. A runtime error occurs in line 2 because the no-argument Publication constructor cannot be called from the no-argument Book constructor.

Answers

Answer:

you should do t based on my opinion

Which areas of a business would most benefit from using the Workday platform?

Answers

Answer:

Human resources, compliance, recruiting, and finance would benefit the most from using the workday platform.

Explanation:

The workday platform is used in human resources, compliance, recruiting, and finance department where it is a helpful platform that brings great mobile experience for managers, recruiters, employees that is in need of information access elsewhere. It also helps in organizing, and find candidacies for their respective departments. It is also perfect for any kind of management that can be helpful for the team.

The Workday Platform will provide the most benefit to Human resources, compliance, recruiting, and finance in business.

Workday PlatformThe Workday platform is a cloud-based software vendor whose specialty in business is in the areas of human capital management, enterprise resource management, and financial management applications Benefits of workday platform

In the business world, the Workday Platform will provide the most benefit to Human resources, compliance, recruiting, and finance in the following ways:

It is used in human resources for recruitment purpose.It also helps in organizing, and find candidacies for their respective departments.it provides a useful management system

Learn more about Business and Workday platform at: https://brainly.ph/question/11472985

graphic designers can compress files in different formats . One of the formats ensures that the quality and details of the image are not lost when the graphic designer saves the file. which file format is this ?​

Answers

Answer:

The format that is used is: PNG

Explanation:

y Program
A diagrammatic representation of an algorithm is called
58.
A. Parallelogram
B. Diagram
Flowchart
D. Symbols
denotes a direction of logical flow in a
program,
A. Arrow
G
B. Line
C. Flow line
D. Logic line
59,​

Answers

Answer:

1.C) Flowchart

2.C)Flowline

what is information technology​

Answers

Explanation:

The study or use of electronic equipment, especially computers, for collecting, storing and send out information.

Information technology is the use of computers to store, retrieve transmit, and manipulate data, or information.

Malcolm works in a preschool where he takes care of eighteen young children each morning. The children always have a lot of energy, and on some days, the children misbehave. Which quality is most important for Malcolm as he works in early childhood care?

research skills and psychology knowledge
computer and technology skills
patience and stress-management skills
mathematical skills and financial knowledge

Answers

Answer:

patience and stress management skills

Answer:

c

Explanation:

i took the test

a.
Introduction to HTML, CSS & JavaScript
Introduction to HTML
b. Basic Tags in HTML
CSS
d. JavaScript
C.​

Answers

Answer:

.....................,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,

Explanation:

Answer:

Whats the question?

Explanation:

Read the following e-mail that Natalie sent. Give Natalie some advice to help her improve her electronic communication. Be sure to describe at least two netiquette guidelines that she should follow.

Answers

Using Proper punctuation and capitalization,Also Correctly signing off an email.

Which of the following is not a data type in Python?

A. Tuple
B. String
C. Float
D. Complex dictionary ​

Answers

Answer:

D

Explanation:

There is no such thing as complex dictionary in python.

Please answer.

For this Code Practice, use the following initializer list, terms:

terms = ["Bandwidth", "Hierarchy", "IPv6", "Software", "Firewall", "Cybersecurity", "Lists", "Program", "Logic", "Reliability"]
Write a sort program to alphabetize the list of computer terms, much like the preceding question. However, this time, define and use a function named swap as part of your solution. The swap function should not be a sort function, but should instead implement the swap functionality used in sorting. This function should swap the elements in the array at each of the indexes by comparing two elements to one another, and swapping them if they need to be in a different alphabetical order.

Your function should take three parameters: the first is the array name, and the second and third are the indexes to swap. Print the terms array before and after it is sorted.

Expected Output
['Bandwidth', 'Hierarchy', 'IPv6', 'Software', 'Firewall', 'Cybersecurity', 'Lists', 'Program', 'Logic', 'Reliability']
['Bandwidth', 'Cybersecurity', 'Firewall', 'Hierarchy', 'IPv6', 'Lists', 'Logic', 'Program', 'Reliability', 'Software']

Answers

Answer:

def swap (ar, a, b):

   temp = ar[a]

   ar[a] = ar[b]

   ar[b] = temp

terms = ["Bandwidth", "Hierarchy", "IPv6", "Software", "Firewall", "Cybersecurity", "Lists", "Program", "Logic", "Reliability"]

print(terms)

for i in range(len(terms)):

   for j in (range(i, len(terms))):

       if(terms[i] > terms[j]):

           swap(terms, j, i)

print(terms)

Explanation:

I got 100% on edhesive.

The code practice requires the uses of loops and conditional statements.

Loops are used for repetition of operations, while conditional statements are used for making decisions.

The sort program in Python, where comments are used to explain each line is as follows:

#This defines the swap function

def swap (terms, a, b):

   #This creates a temporary variable

   temp = terms[a]

   #The next two lines swap the elements

   terms[a] = terms[b]

   terms[b] = temp

#This initializes the list

terms = ["Bandwidth", "Hierarchy", "IPv6", "Software", "Firewall", "Cybersecurity", "Lists", "Program", "Logic", "Reliability"]

#This prints the list before sorting

print(terms)

#This calculates the length of the list

n = len(terms)

#This iterates through the list

for i in range(n):

   #This iterates through every other element of the list

   for j in (range(i, n)):

       #This swaps the elements

       if(terms[i] > terms[j]):

           swap(terms, j, i)

#This prints the list after sorting

print(terms)

Read more about sort programs at:

https://brainly.com/question/15263760

(k + 3)by the power of 3​

Answers

Answer:

k^3 + 9k^2 +27k +27

Explanation:

hope this helps

Which function in Excel tells how many
numeric entries are there?
NUM
COUNT
SUM
CHKNUM​

Answers

Answer:

COUNT

Explanation:

Hope this helps! Plz mark brainliest!

With whom does the success of information processing in the firm lie with?

Answers

Answer:

depends

Explanation:

it lies with the entire firm and its ability to utilize or process the information in the most efficient way.

Need more info man sorry

write an algorithm to sum all numbers between 0 and 1000 that are divisible by ,7​

Answers

Answer:

The algorithm is as follows:

1. START

2. SUM = 0

3. FOR NUM = 0 TO 1000

3.1 IF NUM % 7 == 0

3.1.1 SUM = SUM + NUM

3.2 END IF

4. END FOR

5. PRINT SUM

6. END

Explanation:

This begins the algorithm

1. START

This initializes sum to 0

2. SUM = 0

This iterates from 0 to 1000

3. FOR NUM = 0 TO 1000

This checks if the current number is divisible by 7

3.1 IF NUM % 7 == 0

If yes, the number is added

3.1.1 SUM = SUM + NUM

End the if condition

3.2 END IF

End loop

4. END FOR

This prints the calculated sum

5. PRINT SUM

The algorithm ends here

6. END

Quinn is opening an Excel workbook and receives an information bar and warning that the workbook contains macros. Quinn is prompted to enable the macros. What should he do?

Answers

Answer:

Check where the file originates from, and if it is a trusted source or his own workbook, click Enable Content.

Explanation:

Answer:

B. Check where the file originates from, and if it is a trusted source or his own workbook, click Enable Content.

Explanation:

Edg. 2021

If I wanted to design an app for world peace, what problems could a computer help me to solve? Select ALL that apply *


A. Ranking countries and their peacefulness based on war history, taking into consideration World War participation, Civil Wars, number of years at war over the last 100 years, and total deaths as a direct result of war over the last 100 years


B. Create a forum where people wanting to promote world peace can meet and discuss strategies.


C. Design an interactive map where people can see where war is taking place

D. Make the leader of a country change his/her mind about going to war

E. Stop a war that is currently happening

Answers

Answer:

I believe B is the correct answer.

Explanation:

A is quite useful, but it's not necessary for our goal of world peace.

E is too vague and doesn't help the cause. How do you simply 'stop a war' and how can we ensure that more wars won't arise in the future?

D does stop a war from going on, but it doesn't solve the problem of wanting world peace, as more wars can arise in the future.

C, as the idea, is really cool, again, how will it help our cause of wanting world peace?

I understand that you can choose multiple answers here, but you can't simply change one's mind just for the sake of wanting peace. Wars are a problem and do take part in world peace, but that doesn't change the fact that someone is not at peace with others. You've got to change their minds, not just the idea of wanting to go to war.

Please, do tell me if I got this incorrect.

The average American has 10 devices, ask for users average number of devices. Any number between 7 and 12 will print “you have an average number of devices” but if it beyond the range it will print “you’re beyond the average range”

Answers

This is for Python

device_num = int(input('How many devices do you have: '))

if device_num >= 7 and device_num <= 12:

   print('You have an average number of devices')

if device_num > 12:

   print("You're beyond the average range")

Which of these is a problem that a computer CANNOT solve? *

Getting rid of racism
Making a game for entertainment
Getting the news out to the public quickly
Helping architects build models of new buildings

Answers

getting rid of racism

Answer:

i would say getting rid of racism

Explanation:

because i think it’s right and it is a real life problem

Other Questions
Plss help... THANKS!!!! ATP is the cells primary energy molecule.Given this diagram of ATP, which letter represents a sugar in the structure of the molecule? f(x)= 0.22(2x-1)(2x-7) use the equation to find f() Mark's model train can go 1/3 laps around its track in 2 minutes. If it runs at the samespeed, how many laps can the train go in 9 minutes? Triangle def is equilateral. If the perimeter of def is 36, the length of de is 5x-8, then what is the value of x A dartboard has 20 equally divided wedges, and you are awarded the number of points in the section your dart lands in. If you are equally likely to land in any wedge, what is the probability you will score 21 points? help me plss!!! Question 1: As a result of the Industrial Revolution the middle class experienced a lavish new lifestyle. This lifestyle included additional wealth and capital that could be used on products and services that flourished as a result of the innovations of the Industrial Revolution. What effect did the growth of the middle class have on the smaller upper class?A. The middle class held economic power over the upper class.B. The middle class weakened the power of the aristocracy.C. The middle class favored socialism at the expense of the upper class.D. The middle class had little political power compared to the upper class.Question 2: What is the goal of fascism?A. The goal of fascism is to destroy capitalism.B. The goal of fascism is to fight for equal representation in government.C. The goal of fascism is to get rid of opposition and promote the interests of the country.D. The goal of fascism is to cure all poverty.Question 3:. Why did Europeans encourage dissent among neighboring African tribes?A. Europeans hoped that African battles among tribe would reduce the native population.B. Europeans earned bounty money on native scalps brought to their monarchs.C. European slave traders purchased the prisoners of African tribal wars to sell in America.D. European businessmen wanted Africa tribes to leave the areas rich in natural resources. How do cranial nerves transmit information to the senses?They transmit directly between the brain and the sense organs.They transmit through the spinal cord to the sense organs.They transmit to spinal nerves, which then transmit to the sense organs.They transmit directly between one sense organ and another. What is 2/10 plus 43/100 help me please. i will give brainliest How did World War II impact the state of Georgia? Should the United States government pay reparation to African American? Please I need an whole essay about this topic. Calculate the distance between (6 -5i) and (1 + 3i) on the complex plane. Name one right belonging only to United States citizens.a. Freedom of religion.b. Run for federal office.c. Attend public school.d. Freedom of speech. please answer!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! . Given the following pOH's, calculate the pH for the solution:a) pOH = 4.18 b) pOH = 12.354. Given the following pH's, calculate the pOH for the solution:a) pH = 6.2 b) pH = 9.55 In cellular respiration, living things use sugar to produce energy.True or false Is the sequence 7, 9, 12, 16 geometric A levee is a human-made feature that is designed to reduce the damage done by a.lighting b.floods c.earthquakes d.landslides What are the last two ?