Answer:
The company could license its technology to Microsoft to exploit Microsoft's size and market
Explanation:
Licencing the technology to Microsoft would take advantage of Microsoft's size and power in the industry. When the technology is widely adopted people will be more willing to switch to the small companies operating system as it will be similar to what the customers are already using.
What type of technology we need to use in order to make sure that users can freely room from one room to another one without wi-fi being disconnected
Can someone answer the question s please
Answer:
1. it the point of art and they do it for fun
2. Yes I done that a couple of time and the reason why is because it fun and it u that is acknowledging your own work that u done for later memories even tho you know it wont last long.
3. I would love to create a sand castle I think or something about kpop
Write a Java class called BankAccount (Parts of the code is given below), which has two private fields: name (String) and balance (double), and three methods: deposit(double amount), withdraw(double amount) and toString(). Write the necessary constructors, accessor methods and mutator methods. The deposit() method adds the amount to the account causing the current balance to increase, withdraw() method subtracts the amount causing the current balance to decrease and toString() method should return the name and the current balance separated by a comma. For example, if you print out the object with name Jake and balance 40.0 then it should print:
Answer:
Here is the Bank Account class:
public class Bank Account { //class definition
private String name; //private String type field to hold name
private double balance; // private double type field to hold balance
public Bank Account(String name, double balance) { // parameter constructor that takes
//this keyword is used to refer to the data members name and balance and to avoid confusion between name, balance private member fields and constructor arguments name, balance
this.name = name;
this.balance = balance; }
public void deposit(double amount) { //method to deposit amount
balance = balance + amount; } // adds the amount to the account causing the current balance to increase
public void withdraw(double amount) { //method to withdraw amount
balance = balance - amount; } //subtracts the amount causing the current balance to decrease
public String toString() { // to display the name and current balance
return name + " , $" + balance; } } //returns the name and the current balance separated by a comma and dollar
Explanation:
The explanation is provided in the attached document due to some errors in uploading the answer.
What additional costs would you pay after purchasing your computer
Answer:
V.A.T or value added taxes are what you pay after purchasing your computer, actually you pay V.A.T for every sort of things.
Explanation:
Answer:
What additional costs would you pay after purchasing your computer?
Explanation:
These additional costs could increase the total cost of ownership:
interest (if purchased with a loan)
paper and ink cartridges for the printer
Internet charges
increased electricity charges
annual renewal of antivirus software
maintenance and repair
QUESTION 3 Which sequence of events illustrates the most helpful problem-solving plan? o Think of a solution, execute it, and evaluate the positive and negative effects. If it doesn't wor Recall a time when someone you know had a similar problem, find out what they did, evaluat then evaluate your options Clearly state the problem, analyze its cause and effects, brainstorm possible solutions, evaluat each potential choice, pick an option try it out and evaluate its success Clearly state the problem, get advice from a friend or teacher, and act on the best suggestion QUESTION 4 Click Save and Submit to save and the
Saved
Excessive typing on a computer and texting on a cell phone can cause _________.
Question 9 options:
a)
mental health problems because a normal social life is deprived
b)
Carpal Tunnel Syndrome
c)
headaches and muscle aches
d)
all of the above
Answer:
here answer
Explanation:
all of the above
What type of job involves working at client locations and the ability to work with little direct supervision?
a. field-based
b. project-based
c. office-based
d. home-based
Answer:
A
Explanation:
A vendor conducting a pilot program with your organization contacts you for
organizational data to use in a prototype. How should you respond?
Since the vendor is conducting a pilot program with your organization contacts you for organizational data to use in a prototype, The way that you can respond is to Refer the vendor to the right personnel.
What is an example of a reference vendor?A report outlining the payment history between a company customer and its supplier or vendor is known as a supplier reference (or trade reference). It helps a supplier to evaluate your creditworthiness and determine whether you're a trustworthy customer before extending credit to you.
You can determine whether you are prepared to undertake the project fully by running a pilot program. It might highlight unforeseen difficulties that must be resolved, providing you the chance to change and improve in a way that lessens the effects of those difficulties.
Hence, An organization can discover how a large-scale project might function in practice by conducting a small-scale, brief experiment known as a pilot program, also known as a feasibility study or experimental trial.
Learn more about pilot program from
https://brainly.com/question/28920126
#SPJ1
How could a computer more closely match a sound wave to produce a quality digital copy of a sound?
Answer:
have more time samples that are closer together.
Explanation:
To improve the quality and store the sound at a higher quality than the original, use more time samples that are closer together. More detail about the sound may be collected this way so that when it is converted to digital and back to analog, it does not lose as much quality.
I hope this helps you!!! Sorry for being late.
Answer: By increasing the sample rate of the recording
Explanation:
Which line of code in this program is most likely to result in an error?
Line 2 is most likely to result in an error because it's trying to print out the word hello but words need to be surrounded with quotation marks.
Help pls.
Write python 10 calculations using a variety of operations. Have a real-life purpose for each calculation.
First, use Pseudocode and then implement it in Python.
For example, one calculation could be determining the number of gallons of gas needed for a trip based on the miles per gallon consumed by a car.
A python program that calculates the number of gallons of gas needed for a trip based on the miles per gallon consumed by a car is given below:
The Programdef printWelcome():
print ('Welcome to the Miles per Gallon program')
def getMiles():
miles = float(input('Enter the miles you have drove: '))
return miles
def getGallons():
gallons = float(input('Enter the gallons of gas you used: '))
return gallons
def printMpg(milespergallon):
print ('Your MPG is: ', str(milespergallon))
def calcMpg(miles, gallons):
mpg = miles / gallons
return mpg
def rateMpg(mpg):
if mpg < 12:
print ("Poor mpg")
elif mpg < 19:
print ("Fair mpg")
elif mpg < 26:
print ("Good mpg")
else:
print ("Excellent mpg")
if __name__ == '__main__':
printWelcome()
print('\n')
miles = getMiles()
if miles <= 0:
print('The number of miles cannot be negative or zero. Enter a positive number')
miles = getMiles()
gallons = getGallons()
if gallons <= 0:
print('The gallons of gas used has to be positive')
gallons = getGallons()
print('\n')
mpg = calcMpg(miles, gallons)
printMpg(mpg)
print('\n')
rateMpg(mpg)
Read more about python programming here:
https://brainly.com/question/26497128
#SPJ1
(6-7) Question 1: Use a create table statement to create a new copy of the 1_employees table, with a new name of course. Then use an insert statement with a select clause to copy all the data from the 1_employees table to your new copy of the table. create table copy_of_employees as select EMPLOYEE_ID, FIRST_NAME, LAST_NAME, DEPT_CODE, HIRE_DATE, CREDIT_LIMIT, PHONE_NUMBER, MANAGER_ID from l_employees; INSERT INTO copy_of_employees SELECT * FROM l_employees; SELECT * FROM copy_of_employees;
Answer:
The SQL query is used to create a copy of a table like the 1_employee table in the SQL database.
Explanation:
create table copy_of_employees as select EMPLOYEE_ID, FIRST_NAME, LAST_NAME, DEPT_CODE, HIRE_DATE, CREDIT_LIMIT, PHONE_NUMBER, MANAGER_ID from l_employees;
INSERT INTO copy_of_employees SELECT * FROM l_employees;
SELECT * FROM copy_of_employees;
This SQL creates a table called copy_of_employees and copies the selected query of the 1_employees table and inserts it to the newly created table.
Type the correct answer in the box. Spell all words correctly.
What covers everything from renting equipment and providing food for the crew, to hiring actors and constructing sets?
The
covers everything from renting equipment and providing food for the crew, to hiring actors and constructing sets.
The word that covers everything from renting equipment and providing food for the crew, to hiring actors and constructing sets is "production."
The production covers everything from renting equipment and providing food for the crew, to hiring actors and constructing sets.
What is the cost about?Production squad members are responsible for claiming the setup, demolishing, maintenance, and removal of sounds that are pleasant, harmonized and theater production supplies for stage work.
They are hired in production guests, event scenes, theater groups, and touring bands. In the framework of film, television, and other forms of television, "production" refers to the entire process of founding a finished product, from the beginning idea to the final refine. This includes everything from pre-result to actual production.
Learn more about cost from
https://brainly.com/question/25109150
#SPJ1
database programmers use the following specialized programming language to query a database or generate reports from a database:
Analysis tools like query-by-example and the specialized programming language SQL make it simpler to examine all or a portion of the data, query the database, and generate reports.
What is programming language?Programming language is defined as a language used by computer programmers to create software, scripts, or other collections of instructions that computers may follow. The majority of formal programming languages are text-based, though they can also be graphical.
The ability to write commands in a number of programming languages that instruct a machine, application, or software program what to do and how to do it is referred to as coding, also known as programming skills.
Thus, analysis tools like query-by-example and the specialized programming language SQL make it simpler to examine all or a portion of the data, query the database, and generate reports.
To learn more about programming language, refer to the link below:
https://brainly.com/question/12696037
#SPJ1
Write first 20 decimal dijits in the base 3
Answer:
first 20 decimal dijits in the base 3
Explanation:
i wrote what you said
Mission statement base on shoes company ? Help me
Here are 2 examples:
- Bringing comfortable walking, running, biking, and adventuring to the world.
- Transforming the way you live your life, two soles at a time.
A mission statement should be focused on what a company is about at its core roots. What's the driver for why the company does what it does? Often it is related to why a company is relevant in its industry.
Question 24 Multiple Choice Worth 5 points)
(01.04 MC)
Zavier needs to compress several files. Which file type will allow him to do this?
ODOC
GIF
OJPG
O ZIP
Answer:
ZIP
Explanation:
ZIP is a type of compression file as Jpg is a picture file, Gif is a picture file, and ODOC stands for Oklahoma Department of Corrections
TBH:
it may be O ZIP but i've never heard of it.
Answer:
Zip (D)
Explanation:
Took The Test
Dynamic programming does not work if the subproblems: ___________
a. Share resources and thus are not independent
b. Cannot be divided in half
c. Overlap
d. Have to be divided too many times to fit into memory
Answer:
A. Share resources and thus are not independent
Explanation:
This would be the answer. If this is wrong plz let me know
Unemployment rate is a macroeconomic measure that describes:
O A. the percentage of people who are looking for a job but cannot find
one.
B. the value of the goods produced in a country divided by its
population.
c. the total value of goods and services a country produces in a year.
D. the increase in prices of consumer goods over a period of time.
Someone help me ASAP pleaseeee
Answer:
c
Explanation:
Consider the conditions and intentions behind the creation of the internet—that it was initially created as a tool for academics and federal problem-solvers. How might that explain some of the security vulnerabilities present in the “cloud” today?
It should be noted that the intention for the creation of the internet was simply for resources sharing.
The motivation behind the creation of the internet was for resources sharing. This was created as a tool for academics and federal problem-solvers.
It transpired as it wasn't for its original purpose anymore. Its users employed it for communication with each other. They sent files and softwares over the internet. This led to the security vulnerabilities that can be seen today.
Learn more about the internet on:
https://brainly.com/question/2780939
What is the controller in this image know as? Choose one
Answer:
mode dial
Explanation:
write the C program
The function turn_to_letter decides on the letter grade of the student according to the table below from the visa and final grades sent into it and returns it, write it together with a main function which the turn_to_letter function is called and prints the letter equivalent on the screen. -Success score = 40% of midterm + 60% of final,
-F for the success score below 50, D for between 50 and 59, C for between 60 and 69, B for between 70 and 79, A for 80 and above.
Answer:
The program in C is as follows:
#include <stdio.h>
char turn_to_letter(double score){
char lettergrade = 'A';
if(score>=80){ lettergrade = 'A'; }
else if(score>=70){ lettergrade = 'B'; }
else if(score>=60){ lettergrade = 'C'; }
else if(score>=50){ lettergrade = 'D'; }
else{lettergrade = 'F';}
return lettergrade;
}
int main(){
int midterm, final;
double score;
printf("Midterm: "); scanf("%d", &midterm);
printf("Final: "); scanf("%d", &final);
score = 0.4 * midterm + 0.6 * final;
printf("Score: %lf\n", score);
printf("Letter Grade: %c",turn_to_letter(score));
return 0;
}
Explanation:
The function begins here
char turn_to_letter(double score){
This initializes lettergrade to A
char lettergrade = 'A';
For scores above or equal to 80, grade is A
if(score>=80){ lettergrade = 'A'; }
For scores above or equal to 70, grade is B
else if(score>=70){ lettergrade = 'B'; }
For scores above or equal to 60, grade is C
else if(score>=60){ lettergrade = 'C'; }
For scores above or equal to 50, grade is D
else if(score>=50){ lettergrade = 'D'; }
Grade is F for other scores
else{lettergrade = 'F';}
This returns the letter grade
return lettergrade;
}
The main begins here
int main(){
This declares the midterm and final scores as integer
int midterm, final;
This declares the total score as double
double score;
These get input for midterm score
printf("Midterm: "); scanf("%d", &midterm);
These get input for final score
printf("Final: "); scanf("%d", &final);
This calculates the total score
score = 0.4 * midterm + 0.6 * final;
This prints the calculated total score
printf("Score: %lf\n", score);
This calls the turn_to_letter function and prints the returned letter grade
printf("Letter Grade: %c",turn_to_letter(score));
return 0;
}
Question 7 of 10
Many people use microwave ovens to cook their food. Which option is best
described as an engineering endeavor related to microwave ovens?
OA. Performing experiments to determine how microwaves affect
food nutrition
B. Studying how microwaves are different from other forms of
radiation
C. Investigating questions about effects that the use of microwave
ovens has on human health
Whats the answer?
An option which is best described as an engineering endeavor related to microwave ovens is: D. researching the way people use microwave ovens to determine how to improve their design.
What is a scientific observation?A scientific observation can be defined as an active acquisition of knowledge (information) through one of the sense organs, while using scientific tools and instruments during an experiment.
What is a research question?A research question can be defined as an issue, event or subject of inquiry that a researcher or an engineer is keenly and deeply interested to provide a response or an answer to, when conducting a research such as "How do people use a microwave oven?"
This ultimately implies that, an engineering endeavor which is related to microwave ovens is conducting a research on the way people use microwave ovens, so as to determine how to improve their design.
Learn more about research question here: brainly.com/question/10129052
#SPJ1
Complete Question:
Many people use microwave ovens to cook their food. Which option is best described as an engineering endeavor related to microwave ovens?
answer choices
A. Performing experiments to determine how microwaves affect food nutrition
B. Studying how microwaves are different from other forms of radiation
C. Investigating questions about effects that the use of microwave ovens has on human health
D. Researching the way people use microwave ovens to determine how to improve their design
Which of the following statements about mentors is true?
A. Most companies do not support mentoring programs.
B. Mentors rarely provide real-life and practical advice.
C. Mentors are an excellent way to learn on the job.
D. Leaders in high positions rarely have time to be mentors.
Order the steps for the correct path to adding defined names into a formula. Enter an equal sign into the cell. Type an open parenthesis and enter named cells instead of location. Type the function in caps.
Answer: Enter equal sign into the cell, Type the function in caps, and Type an open parenthesis and enter names cells instead of location.
Explanation: It's the correct order.
Answer:
Enter an equal sign into the cell
Type the function in caps
Type an open () and enter named cells instead of location
Explanation:
What’s your fave tv show?
Answer:
the vampire diareas
Explanation:
Answer: friends
Explanation:✌
Which of the following is not a characteristic of Web 2.0?
a. blogs
O b. interactive comments being available on many websites
O c. mentorship programs taking place via the internet
d. social networking
Answer:
c. mentorship programs taking place via the internet
Explanation:
The World Wide Web (WWW) was created by Tim Berners-Lee in 1990, which eventually gave rise to the development of Web 2.0 in 1999.
Web 2.0 can be defined as a collection of internet software programs or applications which avails the end users the ability or opportunity to share files and resources, as well as enhance collaboration over the internet.
Basically, it's an evolution from a static worldwide web to a dynamic web that enhanced social media. Some of the examples of social media platforms (web 2.0) are You-Tube, Flickr, Go-ogle maps, Go-ogle docs, Face-book, Twit-ter, Insta-gram etc.
Some of the main characteristics of Web 2.0 are;
I. Social networking.
II. Blogging.
III. Interactive comments being available on many websites.
Also, most software applications developed for Web 2.0 avails its users the ability to synchronize with handheld or mobile devices such as smartphones.
However, mentorship programs taking place via the internet is not a characteristic of Web 2.0 but that of Web 3.0 (e-mentoring).
The option that is not a characteristic of Web 2.0 from the following is mentorship programs taking place via the internet.
What is Web 2.0?Web 2.0 speaks volumes about the Internet applications of the twenty-first millennium that have revolutionized the digital era. It is the second level of internet development.
It distinguishes the shift from static web 1.0 pages to engaging user-generated content. Web 2.0 websites have altered the way data is communicated and distributed. Web 2.0 emphasizes the following:
User-generated content, The convenience of use, andEnd-user inter-operability.Examples of Web 2.0 social media include:
Face book, Twi tter, Insta gram etcWith these social media and web 2.0 websites;
It is possible to create a personal blog,Interact with other users via comments, and Create a social network.Therefore, we can conclude that the one that is not part of the characteristics of Web 2.0 is mentorship programs taking place via the internet.
Learn more about web 2.0 here:
https://brainly.com/question/2780939
An __________ hard drive is a hard disk drive just like the one inside your, where you can store any kind of file.
An external hard drive is a hard disk drive just like the one inside your computer, where you can store any kind of file.
These drives come in various sizes, ranging from small portable drives that can fit in your pocket to larger desktop-sized drives with higher storage capacities. They often offer greater storage capacity than what is available internally in laptops or desktop computers, making them useful for backups, archiving data, or expanding storage capacity.
Overall, external hard drives are a convenient and flexible solution for expanding storage capacity and ensuring the safety and accessibility of your files.
b) Use method from the JOptionPane class to request values from the user to initialize the instance variables of Election objects and assign these objects to the array. The array must be filled.
The example of the Java code for the Election class based on the above UML diagram is given in the image attached.
What is the Java code about?Within the TestElection class, one can instantiate an array of Election objects. The size of the array is determined by the user via JOptionPane. showInputDialog()
Next, one need to or can utilize a loop to repeatedly obtain the candidate name and number of votes from the user using JOptionPane. showInputDialog() For each iteration, one generate a new Election instance and assign it to the array.
Learn more about Java code from
https://brainly.com/question/18554491
#SPJ1
See text below
Question 2
Below is a Unified Modelling Language (UML) diagram of an election class. Election
-candidate: String
-num Votes: int
<<constructor>> + Election ()
<<constructor>> + Election (nm: String, nVotes: int)
+setCandidate( nm : String)
+setNum Votes(): int
+toString(): String
Using your knowledge of classes, arrays, and array list, write the Java code for the UML above in NetBeans.
[7 marks]
Write the Java code for the main method in a class called TestElection to do the following:
a) Declare an array to store objects of the class defined by the UML above. Use a method from the JOptionPane class to request the length of the array from the user.
[3 marks] b) Use a method from the JOptionPane class to request values from the user to initialize the instance variables of Election objects and assign these objects to the array. The array must be filled.
Write a similar description of what happens when you print a document.
Full-color printing is achieved by using just four ink colors – Cyan, Magenta, Yellow, and Black or CMYK (see box story below on what the K stands for).
These are called process colors and full-color printing is also called 4-color process printing.
What does it mean to print a document?Printing is the process of printing text and images in large quantities using a master form or template.
It it to be noted that cylinder seals and items such as the Cyrus Cylinder and the Cylinders of Nabonidus are among the oldest non-paper creations using printing.
Learn more about printing:
https://brainly.com/question/21090861
#SPJ1