1) SOME APPLICATIONS OF CROWD SOURCING ARE;
- MARKETING STRATEGY; There is finalizing of marketing strategies by firms and this is based on the crowd sourcing ideas.
- THOUGHT LEADERSHIP; There has been catering to crowdsourcing for high level thought leadership by many firms and this is done in various fields such as Human resources.
- DESIGNING; Designing is very common for crowdsourcing and this is seen where a bunch of talent pool is being used for the purpose of designing websites,applications and as well as other prototypes.
SOME OF THE ADVANTAGES OF CROWDSOURCING ARE;
- An individual can actually save lots of costs,this is because they don't need to hire a permanent resource and this resource can be quite expensive.
- Another advantage of crowdsourcing is that one can actually get services and idea from pool of professionals that are far talented across the world.
- It also play a role in obtaining of ideas from a group of people and this can go a way in shortening the resolution process, therefore saving time.
CROWDSOURCING HELPS IN GETTING IDEAS AND SERVICES FROM A WIDER POOL OF PROFESSIONALS THAT ARE TALENTED,So;
Lots of time are being saved when there is actually a large talent pool.
This then translates into shorter span in the system design process and it also results in the saving of costs.
However,a firm don't necessarily need to hire permanent resources for critical inputs I'm the design process and this also results in saving of costs s well.
People are known to be using Crowdsourcing. The applications of crowdsourcing is often done so as to gather information or work product.
This helps to gather or seeks money to aid individuals, charities, or for one to start a business. The advantages of crowdsourcing are cost savings, speed, etc.Crowdsourcing is known to help man to remove the various costs due to functioning as a pay-per-task model.
A well managed crowdsourcing can be used to pay workforce.
Learn more about Crowdsourcing from
https://brainly.com/question/6983872
the company has finished designing a software program but users aren't sure how to use it
Answer:
The company should go back into the company and make it a little more easier to use or the company should put out an announcement or something so the people trying to use it know how
Explanation:
Mark me the brainliest please and rate me
Answer:
Several people in the human resources department need new software installed. An employee has an idea for a software program that can save the company time, but doesn't know how to write it.
Explanation:
Look at the following Polygon class:
public class Polygon
{
private int numSides;
public Polygon()
{
numSides = 0;
}
public void setNumSides(int sides)
{
numSides = sides;
}
public int getNumSides()
{
return numSides;
}
}
Write a public class named Triangle that is a subclass of the Polygon class. The Triangle class should have the following members:
a private int field named base
a private int field named height
a constructor that assigns 3 to the numSides field and assigns 0 to the base and height fields
a public void method named setBase that accepts an int argument. The argument's value should be assigned to the base field
a public void method named setHeight that accepts an int argument. The argument's value should be assigned to the height field
a public method named getBase that returns the value of the base field
a public method named getHeight that returns the value of the height field
a public method named getArea that returns the area of the triangle as a double.
Use the following formula to calculate the area: Area = (height * base) / 2.0
The Triangle class should consist of the following components: - a base-named private int field Create a Triangle public class that is a subclass of the Polygon. Creating a hierarchy between our classes is the first step in inheritance.
What are polygons and their types?Any two-dimensional shape made of straight lines is called a polygon. Polygons include shapes like triangles, quadrilaterals, pentagons, and hexagons. The shape's number of sides is indicated by the name. A quadrilateral has four sides, whereas a triangle has three.The description of a closed, two-dimensional area inside of a coordinate space is included in the Polygon class. An arbitrary number of line segments, each of which is a side of the polygon, encircle this area.figuring out a triangle's area by using its base and height Java formula area = (Ax(By -Cy)) to return the area of a triangle using its vertices.To learn more about Polygon refer to:
https://brainly.com/question/26583264
#SPJ1
Install and set up a programming environment to make it easier to write/test JavaScript
The way for a person to set up a programming environment are
Install a text editorInstall Node.jsInstall a package managerCreate a new projectInstall dependenciesWrite and test your codeWhat is the programming about?in terms of Get a text editor: A software that enables code writing is known as a text editor. Numerous selections exist including Sublime Text, Visual Studio Code, Atom, and others. Select your preferred option and proceed with its installation.
Node.js installation involves setting up a JavaScript runtime utilizing Chrome's V8 JavaScript engine. The capacity to execute JavaScript on the server-end is granted.
Learn more about programming from
https://brainly.com/question/23275071
#SPJ1
What is a common method used in social engineering?
Explanation:
they are phishing, pretexting, baiting, quid pro quo and tailgating.
Advika needs to send files from one computer to another computer. Which of the following methods is the simplest ways to accomplish this task?
Make sure the two PCs are joined with the same Wi-Fi networks. Locate the file you want to send using File Explorer.
What is a computer?
A laptop is an electronic tool for handling data or information. It has the power to store, retrieve, and process data. You may already be aware of the fact that a computer may be used to make a report, send emails, play games, and surf the Internet.
What component of a computer is most vital?
Your computer's "brain" is the central developed the ability (CPU), often known as the processor. The complex calculations and programming that your computer performs while running apps or programs are all handled by the CPU.
To know more about computer visit:
https://brainly.com/question/21474169
#SPJ1
The epa requires spray guns used in the automotive refinishing process to have transfer efficiency of at least
The epa requires spray guns used in the automotive refinishing process to have transfer efficiency of at least 65 percent transfer efficiency.
What is the transfer efficiency
EPA lacks transfer efficiency requirement for auto refinishing spray guns. The EPA regulates auto refinishing emissions and impact with rules. NESHAP regulates paint stripping and coating operations for air pollutants.
This rule limits VOCs and HAPs emissions in automotive refinishing. When it comes to reducing overspray and minimizing wasted paint or coating material, transfer efficiency is crucial. "More efficiency, less waste with higher transfer rate."
Learn more about transfer efficiency from
https://brainly.com/question/29355652
#SPJ1
define computer graphics and name it's types
Answer:
Computer graphics is an art of drawing pictures on Computer Screen.
Computer graphics is made up number of pixels. Pixels is the smallest unit which can be represented on computer screen.
Basically there are two types of Computer graphics:
Interactive Computer graphicsNon Interactive Computer graphics. Interactive Computer graphics: In Interactive Computer Graphics there is a two way communication between computer and user. Here the user is given some control over the image. Non Interactive Computer graphics: is also known as passive computer graphics here in which user does not have any kind of control over the image.• List 2 examples of media balance:
Answer: balance with other life activities
spending time with family
studying / school work
Explanation:
n this program, you will create a personal organizer. You will ask the user for the name of an event, the year it is happening, along with the month and day it is happening. If the user incorrectly enters one of those values, they are prompted to re-enter the information until it is correct. The user can do this for as many events as they have.
After the user has entered all of the events, the whole list of events (along with their date) should be output to the user. It may sound simple, but there is a lot that goes into making this program!
One of the best ways to do this is with parallel lists: one for the eventName, eventMonth, eventDay and eventYear. This allows you to easily add and output all of the details of an event.
There is some very helpful starter code already provided in your programming environment, but in order to build the full program, follow the steps and instructions below very carefully.
Answer:
import java.util.ArrayList;
import java.util.Scanner;
public class PersonalOrganizer {
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
ArrayList<String> eventNames = new ArrayList<>();
ArrayList<Integer> eventYears = new ArrayList<>();
ArrayList<Integer> eventMonths = new ArrayList<>();
ArrayList<Integer> eventDays = new ArrayList<>();
boolean addMoreEvents = true;
while (addMoreEvents) {
// Ask for event name
System.out.print("Enter event name: ");
String eventName = scanner.nextLine();
eventNames.add(eventName);
// Ask for event year
int eventYear;
do {
System.out.print("Enter event year (4 digits): ");
while (!scanner.hasNextInt()) {
System.out.print("Invalid input. Enter event year (4 digits): ");
scanner.next();
}
eventYear = scanner.nextInt();
} while (eventYear < 1000 || eventYear > 9999);
scanner.nextLine(); // Consume newline character
eventYears.add(eventYear);
// Ask for event month
int eventMonth;
do {
System.out.print("Enter event month (1-12): ");
while (!scanner.hasNextInt()) {
System.out.print("Invalid input. Enter event month (1-12): ");
scanner.next();
}
eventMonth = scanner.nextInt();
} while (eventMonth < 1 || eventMonth > 12);
scanner.nextLine(); // Consume newline character
eventMonths.add(eventMonth);
// Ask for event day
int eventDay;
do {
System.out.print("Enter event day (1-31): ");
while (!scanner.hasNextInt()) {
System.out.print("Invalid input. Enter event day (1-31): ");
scanner.next();
}
eventDay = scanner.nextInt();
} while (eventDay < 1 || eventDay > 31);
scanner.nextLine(); // Consume newline character
eventDays.add(eventDay);
// Ask if the user wants to add more events
System.out.print("Do you want to add another event? (y/n): ");
String response = scanner.nextLine();
addMoreEvents = response.equalsIgnoreCase("y") || response.equalsIgnoreCase("yes");
}
// Output all events
System.out.println("\nEvents:");
for (int i = 0; i < eventNames.size(); i++) {
String eventName = eventNames.get(i);
int eventYear = eventYears.get(i);
int eventMonth = eventMonths.get(i);
int eventDay = eventDays.get(i);
System.out.printf("%s: %02d/%02d/%d\n", eventName, eventMonth, eventDay, eventYear);
}
}
}
Explanation:
This program prompts the user to enter event details, validates the input, and stores them in parallel lists. The program also allows the user to add multiple events, and outputs all events at the end.
x = int(input ("Enter a value: "))
C = 0
sum = 0
while (x != 0):
x = int(input ("Enter a value: "))
C = c + 1
sum sum + X
print ("\n\nSum: " + str(sum))
Pls help ASAP
Answer:
python code
C = 0
sum = 0
x = 1 # Initialize x to a non-zero value
while (x != 0):
x = int(input("Enter a value: "))
C = C + 1
sum = sum + x
print("\n\nSum: " + str(sum))
Explanation: asked an ai and here we go.
The given code is written in Python and appears to prompt the user to input a value repeatedly until the user enters 0. During each iteration, the code increments a variable C by 1 and adds the input value to a variable sum. Once the user enters 0, the code prints the value of sum.
However, there are a couple of errors in the code:
The initial value of variable C is incorrectly written as c (lowercase) instead of C (uppercase).
The variable sum is not initialized to 0 before the loop begins.
Here's the corrected code above
In this corrected code, C is correctly initialized to 0, sum is initialized to 0, and x is initialized to a non-zero value to ensure that the loop runs at least once. Additionally, the variable sum is updated with the user input value during each iteration, and the loop continues until the user enters 0. Finally, the code prints the value of sum after the loop has completed.
How do you think productivity software like Microsoft Office might be useful in the healthcare field?
Microsoft Office offers several applications that are widely used in the healthcare field. Here are some of the common uses of Microsoft Office in healthcare:
Microsoft Word: It is extensively used in healthcare for creating and formatting documents such as patient reports, medical records, and referral letters.Microsoft Excel: It is used for data analysis, tracking patient records, managing inventory, financial calculations, and creating charts or graphs for a visual representation of data.Microsoft PowerPoint: PowerPoint is commonly used in healthcare for creating presentations, training materials, educational content, and reports.Learn more about Microsoft Office, here:
https://brainly.com/question/15131211
#SPJ1
I have attached 512 MB RAM for my computer. While I am checking the size of RAM after fixing, it shows as 504MB. What could be the reason for that?
When it comes to RAM, a 512 MB RAM module should typically read as 512 MB. However, sometimes the actual size of the RAM module can be slightly different. This is not always due to an issue with the RAM itself, but it can be due to several other factors. The first thing to check is to see if the RAM is seated properly. It could be that the RAM is not seated properly, which can cause a reduction in the amount of RAM that is recognized by the computer.
Sometimes the RAM can be slightly crooked or not completely inserted into the slot, which can cause a drop in the amount of RAM that is detected. It's best to take out the RAM and reinsert it to make sure that it is seated properly.Another potential cause of the issue is a BIOS limitation.
The computer's BIOS is the firmware that is responsible for managing the hardware of the computer, and it may not support a certain amount of RAM. It's best to check the computer's manual or visit the manufacturer's website to see if there are any limitations on the amount of RAM that can be installed.
Finally, it's also possible that the RAM module itself is faulty. In this case, it's best to test the RAM module by using diagnostic tools to check for any errors. If errors are found, it's best to replace the RAM module with a new one.
For more such questions on RAM, click on:
https://brainly.com/question/28483224
#SPJ8
Why is it important to proofread your work even after using the Spelling and Grammar tool?
To make sure you have the correct word count
To make sure your document layout is correct
To print your document correctly
To catch mistakes the spelling and grammar check will not catch
Answer:
To catch mistakes the spelling and grammar check will not catch.
Explanation:
Grammar and spelling check is not always perfect!
It is the 4th one, to catch mistakes the spelling and grammar check will not catch.
How do I build a computer where do I get the motherboard and stuff?
Answer:
Linus Tech Tips is a great place to learn building a PC. All PC parts are available via NewEgg and or other places such as Micro Center though there are more places those two are the best.
Explanation:
^^^
50 POINTS
PYTHON PROGRAMMING I:
TURTLE GRAPHICS PROJECT
For this project you are going to create a program that draws at least 5 flowers. Each flower must have at least 5 flower petals, and can be of any shape, size or color, but each flower petal must be distinguishable from the other. See fig. 1 below. Only one of the flowers may be centered on the canvas. The rest of the flowers can be placed visibly anywhere on the canvas. See fig. 2 Each flower must use a different shape and color scheme.
Here's some sample code in Python using turtle graphics to draw 5 flowers with different shapes and color schemes:
The Python Codeimport turtle
def draw_petal(t, size, color):
for i in range(2):
t.begin_fill()
t.fillcolor(color)
t.circle(size, 60)
t.left(120)
t.circle(size, 60)
t.end_fill()
t.left(60)
def draw_flower(t, size, color):
for i in range(5):
draw_petal(t, size, color)
t.left(72)
def draw_center(t, size, color):
t.dot(size, color)
def draw_flowers():
wn = turtle.Screen()
wn.bgcolor("white")
wn.title("Flowers")
tess = turtle.Turtle()
tess.speed(0)
tess.pensize(2)
# Draw the first flower centered on the canvas
draw_center(tess, 20, "red")
draw_flower(tess, 60, "red")
# Move to a new position and draw the second flower
tess.penup()
tess.right(180)
tess.forward(200)
tess.pendown()
draw_center(tess, 20, "yellow")
draw_flower(tess, 60, "yellow")
# Move to a new position and draw the third flower
tess.penup()
tess.right(180)
tess.forward(200)
tess.pendown()
draw_center(tess, 20, "pink")
draw_flower(tess, 60, "pink")
# Move to a new position and draw the fourth flower
tess.penup()
tess.right(180)
tess.forward(200)
tess.pendown()
draw_center(tess, 20, "purple")
draw_flower(tess, 60, "purple")
# Move to a new position and draw the fifth flower
tess.penup()
tess.right(180)
tess.forward(200)
tess.pendown()
draw_center(tess, 20, "blue")
draw_flower(tess, 60, "blue")
wn.exitonclick()
draw_flowers()
Read more about python programming here:
https://brainly.com/question/26497128
#SPJ1
Podcasts can only be created by professional organizations
Answer:
This is FALSE
Explanation:
Have you heard that a person with a successful Podcast makes a 6 figure income, every month? The good news is that the barriers for starting a Podcast is very low. You don't even need technical skills to start a Podcast. The only thing that may hold you back is that it is not easy making a successful Podcast that will pay you well.
The statement that Podcasts can only be created by professional organizations is false.
For better understanding, we have to understand what the term podcast means and why the answer is false.
Podcast is simply known to be different types of electronic or digital media files usually in audio or video format made available for download usually by syndication. Podcasting is usually done by anyone and it is made available anywhere at anytime to anyone who wants it.From the above, we can therefore say that the answer that the statement that Podcasts can only be created by professional organizations is false is therefore right.
Learn more about podcast from:
https://brainly.com/question/22263594
windows can create a mirror set with two drives for data redundancy which is also known as
Answer:
Raid
Explanation:
it just said i was blocked from brainly for a sec i was like- dang- then i logged in again then it was back to normal uHhHh can someone eXpLaIn ?
Answer:
it has been doing the same to me if your on a school computer at home then it will bug sometimes but if you were at school then it would probably be entirely blocked but idrk
Explanation:
Answer:
It was probably a glitch in the site.
Explanation:
Sometimes sites glitch out and they say certain things but when you log back in or refresh the page your fine. I don't think it's anything to worry about.
Dan wants to use some of his friend's printed photos of sea creatures for a school multimedia project. Which input device is best for transferring the photos to his project?
ОА
web camera
OB.
scanner
OC graphics tablet
OD
digital camera
Dan wants to transfer printed photos of sea creatures to his school multimedia project. Using a scanner, he can create a digital image of the printed photos and then import them into his project. The correct answer is B. scanner.
What is scanner ?
A scanner is an input device that creates a digital image of a physical document or image.
Therefore, Scanners are widely used in businesses, homes, and institutions for a variety of purposes, such as scanning documents for archiving, creating digital copies of physical documents and converting printed photos into digital images.
Learn more about scanner here : brainly.com/question/14259590
#SPJ1
Which of the following is NOT a video playback option in Microsoft PowerPoint?
The option that is NOT a video playback option in Microsoft PowerPoint is Record Narration
What is the Microsoft PowerPointIn Microsoft PowerPoint, "program playback alternatives" concern the various controls and scenes that are accessible for performing and maneuvering a television file that has been introduced into a flow.
This feature is independent to video playback but moderately to accumulating visual and audio entertainment transmitted via radio waves to the performance. When you record a reading, you can occasion it to play instinctively accompanying each veer or admit the consumer to control playback.
Learn more about Microsoft PowerPoint from
https://brainly.com/question/23714390
#SPJ1
Complete the code to generate a pseudo-random integer between 1 and 44, including the possibility of both 1 and
44.
>>> import secrets
>>> secret
Answer:
Explanation:
.randbelow(44) + 1
The code above uses the secrets module, which is a part of the Python standard library and uses a cryptographically strong random number generator. The randbelow() function generates a random integer below the number given as an argument. In this case, the argument is 44, which means that the function will generate a random integer between 0 and 43. To get a random integer between 1 and 44, we add 1 to the result of the function.
Assignment
Write a assembly program that can display the following shapes:
Rectangle
Triangle
Diamond
The program will read an input from the user. The input is terminated with a period. So the program will continue to run until a period is read.
The data the program reads is as follows:
A shape command followed by parameters.
R stands for Rectangle. The parameters are height (rows) and width (columns)
T stands for Triangle. The parameters is base width
D stands for Diamond. The parameters
Your program needs to read the input and based on the input do the following:
Print your name
Then print the name of the shape
Then the shape below it.
Sample input:
R 03 10
T 05
D 11
.
Output:
Loay Alnaji
Rectangle
**********
**********
**********
Triangle
*
***
*****
Diamond
*
***
*****
*******
*********
***********
*********
*******
*****
***
*
Requirements
Your main should only be the driver. It should only read the "shape type", based on that, call the proper function to read the parameters and draw the shape.
Example of your main (just example, pseudocode):
loop:
read shape
if shape is '.' then exit
if shape is 'R'
call Rectangle Function
if shape is 'D'
call Diamond Function
if shape is 'T'
Call Triangle Function
go to loop
The program above is one that begins with the _begin name, which is the passage point of the program.
What is the program about?The program uses framework call int 0x80 to print your title on the screen utilizing the compose framework call. It loads the suitable values into the registers (eax, ebx, ecx, edx) to indicate the framework call number, record descriptor, buffer address (where the title is put away), and length of the title.
It checks in case the shape input may be a period (.), which demonstrates the conclusion of input. In case so, it bounced to the exit name to exit the program.
Learn more about program from
https://brainly.com/question/23275071
#SPJ1
Read the Python program below:
1 num1 = int(input())
2
num2 = 10 + num1 * 2
3
print(num2)
4 num1 = 20
5 print(num1)
Question 2
When this program is executed, if the user types 10 on the
keyboard, what will be displayed on the screen as a result of
executing line 5?
A. 10
B. 20
C. 10 and 20
D. There is an error in the program because a variable cannot
hold two values at the same time
When the program is executed and the user types 10 as input, the program will display the following on the screen as a result of executing line 5: 20 (Option B)
How does this work?Line 5 print(num1) will print the value stored in the variable num1, which is 20 at that point in the program.
The variable num1 was reassigned the value 20 in line 4, so the updated value of num1 is printed, which is 20. Therefore, the output will be 20.
Learn more about program at:
https://brainly.com/question/23275071
#SPJ1
Support technicians are expected to maintain documentation for each computer for which they are responsible. Create a document that a technician can use when installing Windows and performing all the chores mentioned in the module that are needed before and after the installation. The document needs a checklist of what to do before the installation and a checklist of what to do after the installation. It also needs a place to record decisions made during the installation, the applications and hardware devices installed, user accounts created, and any other important information that might be useful for future maintenance or troubleshooting. Don’t forget to include a way to identify the computer, the name of the technician doing the work, and when the work was done.
HELP!!
Answer: Computer Installation and Maintenance Documentation
Computer Identification:
- Computer Name:
- Serial Number:
- Model:
- Operating System:
Technician Information:
- Name:
- Date:
Before Installation Checklist:
- Backup important data
- Verify system requirements
- Check for BIOS updates
- Disconnect all peripherals and external devices
- Record hardware and software components
- Verify network connectivity
During Installation Checklist:
- Record decisions made during installation
- Select appropriate partition for installation
- Install necessary drivers
- Configure network settings
- Install Windows updates
After Installation Checklist:
- Install necessary software and applications
- Install necessary hardware devices
- Configure user accounts
- Install additional Windows updates
- Install antivirus software
Important Information:
- Hardware Components:
- Software Components:
- Network Configuration:
- Notes:
By signing below, I certify that I have completed the installation and maintenance checklist for the specified computer.
Technician Signature: ______________________________
Date: ____________________
Alcatel-Lucent's High Leverage Network (HLN) increases bandwidth and network capabilities while reducing the negative impact on the environment. This works because the HLN:_____________.
a. Reduces or eliminates use of finite (non-renewable) radio frequencies utilized by wireless devices.
b. Reduces Radio Frequency Interference (RFI) - overcrowding of specific areas of the electromagnetic spectrum.
c. Limits the number of people who can access the network at any one time —particularly during times of peak energy demand.
d. Delivers increased bandwidth using fewer devices and energy.
Answer:
d. Delivers increased bandwidth using fewer devices and energy.
Explanation:
Alcatel-Lucent, formed in 1919 was a French global telecommunications equipment manufacturing company with its headquarter in Paris, France.
They provide services such as telecommunications and hybrid networking solutions deployed both in the cloud and properties.
Alcatel-Lucent's High Leverage Network (HLN) increases bandwidth and network capabilities while reducing the negative impact on the environment. This works because the High Leverage Network (HLN) delivers increased bandwidth using fewer devices and energy on Internet Protocol (IP) networks.
The Alcatel-Lucent's High Leverage Network (HLN) provides reduced cost of transmitting data as fewer network equipments are used with less adverse effects on the environment.
The High Leverage Network (HLN) when successfully implemented helps telecom firms to improve their operational efficiency, maintenance costs, and enhance network performance and capacity to meet the bandwidth demands of their end users.
Choose one piece of information your class can know, but you don’t want to share on your website. Why is it okay for your classmates and teacher to know it, but not to post it publicly?
Answer:
because other people you dont know can see it and it can sometimes not be good
Explanation:
Id like for you to write it as a regular paper. Put yourself in Bill's shoes. You are starting a business at home, any
ess. What technology will you need to work from home or have a business from home? What do you need to ope
0.100
To run a business from home, the kind of technology requried would depend a lot on the nature of business that you plan to run. A fashion business would require fashion technology, and a food business would require food related equipment.
What is a business?Business is the process of earning a livelihood or earning money by manufacturing, purchasing, and selling goods. It is also defined as "any profit-making activity or enterprise."
In addition to your primary duty, you must do five core business functions. Human resources, finance, marketing, sales, and strategy are among them. These are universal functions, which implies they are required for every firm to succeed.
Learn more about business at:
https://brainly.com/question/15826604
#SPJ1
intellectual property laws cover software and many other digital creations. Which of the following is an example of a positive impact of intellectual property laws?
Pedram, a student, can always study in any library in the United States for free because US libraries are declared intellectual property.
Pedram, a student, can always study in any library in the United States for free because US libraries are declared intellectual property.
Chanel, a homebuyer, gets a tax break because her house includes an office room which counts as intellectual property.
Chanel, a homebuyer, gets a tax break because her house includes an office room which counts as intellectual property.
Ariel studies real estate laws and uses her knowledge to help low-income families find affordable housing.
Ariel studies real estate laws and uses her knowledge to help low-income families find affordable housing.
Ricardo, a medical researcher, sells a vaccine he discovered and uses the proceeds to fund more research.
Ricardo, a medical researcher, sells a vaccine he discovered and uses the proceeds to fund more research.
Patents are an example of intellectual property rights. names of domains. industry architecture.
What does intellectual personality entail?
Abstract. When people encounter a social, political, religious, historically significant, or economically significant cultural phenomena, they use their feelings, behaviour, beliefs, attitudes, and methods of reasoning, evaluation, and decision-making to decide whether to accept or reject it. What exactly is intellectual haughtiness? A person who is otherwise clever will often be blinded to the truth by a set of traits known as intellectual hubris. Some examples of these are a lack of logical rigour and the use of preconceived assumptions or what one believes he acquired in school rather than rigorous reasoning.
To know more about rights visit:-
https://brainly.com/question/7721379
#SPJ1
Answer:
the answer is Ricardo!
Explanation:
I got it right
What are the reasons why organizations opt for a certificate
issued by third party commercial certification authorities to
secure their web server? [Choose two that applyl.
To secure browsing of social media sites.
To secure data transfer, transactions and logins to the
website.
To securely redirect a customer to a third party
a
website.
lling
To run a trusted web site that conduct business with
the general public.
The reasons that organizations opt for a certificate issued by third party commercial certification authorities to secure their web server are option B and D:
To secure data transfer, transactions and logins to the website.To run a trusted web site that conduct business with the general public.What Is a Certification Authority?A certificate authority is a third-party organization that operating systems and web browsers trust to generate and distribute digital certificates.
However, they must perform this task for businesses and websites that they have vetted, which is why CAs are crucial to modern digital security (and internet security). These certificates are essentially short data files with verified organization identification information.
What we now usually refer to as a certificate authority or a CA was originally known as a "certification authority." Therefore, you may occasionally encounter them referred to by these many names.
Therefore, When a product is third-party certified, it signifies that an independent body has examined the product's production process and has independently found that the final product complies with certain safety criteria.
Learn more about certification authorities from
https://brainly.com/question/17011621
#SPJ1
why the internet is not considered a mass medium in Africa
Answer:
the reason why internet not considered as a mass medium is probably because most of the African are not educated and civilized, thereby making them not common to the usage of the internet.