can i create 3d objects in the new unreal engine? and can i do storyboarding in the new unreal engine?

Answers

Answer 1

Yes you can  create 3d objects in the new unreal engine. Certainly, you retain the capability of crafting 3-dimensional objects with the artistic help of Unreal Engine.

How to  create 3d objects in the new unreal engine

An incredible game developing platform, the Unreal Engine permits gamers to access state-of-the-art technology for creating intricate three-dimensional models and visuals.

You might take advantage of multiple applications such as Blender or Maya just to construct 3D entities that can then be seamlessly imported into this type of engine. Simultaneously, the Unreal Engine has its own editor, known as Unreal Editor, which endows one with complete control over making and modifying extant 3D objects in the environment itself.

Read more on 3d objects  here:https://brainly.com/question/29488125

#SPJ4


Related Questions

which is the correct declaration of the vertexvisitor abstract class used by the depthfirstsearch() c function?

Answers

Depth First Search is a traverse graphs and trees(a subset of graphs).

Depth first search() c function?

Depth First Search (DFS) traversal is a major traversal technique that is often used to traverse graphs and trees (a subset of graphs). According to DFS, the search should begin at the root or beginning node and proceed to its depth before exploring the other nearby nodes.

When a dead end occurs in any iteration, the Depth First Search (DFS) method explores a network in a deathward motion and utilizes a stack to remember where to retrieve the next vertex to start a search. As in the preceding example, the DFS algorithm goes from S to A to D to G to E to B first, then F, and finally C. Stacks can be used to implement DFS's recursive nature. The fundamental concept is as follows: Choose a beginning node and stack all of its neighbors. To pick the next node to visit, pop a node from the stack and place all of its nearby nodes into a stack.

To learn more about Depth-first search refer:

https://brainly.com/question/28106599

#SPJ4

the tag that describes the content of the web page is ________________

Answers

Answer:

<body>

Explanation:

the content of the web page must be body.

Do you need a internet browser to go to the intrnet?​

Answers

Answer:

No you do not need a interent browzer to get to the internet.

Explanation:

Not sure but I don’t think so

Gemima has converted her table to a clustered column
chart. She now wants to add a title.
What should Gemima do first?
Select the table.
What should Gemima do next?
What should Gemima do last?
Use Ctrl+A
Use Ctrl+C
Use Ctrl+V.

Answers

Answer:

1. Select the table

2. use Ctrl A

3. type the title

Answer: select the table,Crtl+a,Type the title

Explanation:

Gemima has converted her table to a clustered columnchart. She now wants to add a title.What should Gemima

What is one way interpreted programming languages differ from compiled programming languages? (3 points)


Interpreted languages produce translated machine code that can be saved and run later, while compiled languages cannot be saved.

Interpreted languages translate all lines of code together and execute them all at once, while compiled languages translate one line of code at a time and then execute that line before moving on.

Programs written with interpreted languages are ready to be run, but programs written with compiled languages require interpreter software to be run.

Programs written with interpreted languages require the original source code, but programs written with compiled languages can be shared with others while keeping the source code private

Answers

Interpreted programming languages distinguish themselves from compiled programming languages in that they translate and execute code continuously.

Why is this so ?

Interpreted progra ming languages distinguish themselves from compiled programming languages in that they translate and execute code continuously while the program runs.

Whereas compiled languages transform code into machine code that computers can execute directly.

In contrast to compiled languages, interpreted languages lack a distinct executable file and interpret the language itself during runtime. Interpreted programming offers increased flexibility and reduced debugging complexity, while compiled programs create more efficient code with improved speed.

Learn more about compiled programming languages at:

https://brainly.com/question/30498060

#SPJ1

Please create a website using HTML only no CSS

Requirement

1. Create five(5) pages including home, about me, references and etc.

2. Just use the HTML tags and no tag

Answers

Algorithm for creating a website using HTML only:

The Algorithm

Start by creating a new HTML document.

Add the necessary HTML tags, including <html>, <head>, and <body>.

Inside the <body> tag, create a <header> element for the website's header.

Within the header, add a navigation menu using the <nav> and <ul> tags, containing links to the different pages.

Below the header, create a separate <section> for each page, such as home, about me, references, etc.

Inside each section, add relevant content using appropriate HTML tags like <h1>, <p>, <ul>, etc.

Finally, close all the opened tags and save the HTML document with the .html extension.

Repeat steps 3-7 for the remaining pages.

Test the website by opening the HTML file in a web browser.

Note: The algorithm assumes no external CSS is allowed and uses only HTML tags for styling.

Read more about HTML here:

https://brainly.com/question/4056554

#SPJ4

Which is an example of intrinsic motivation?

allowing time to do an after-school activity once studying is done
asking the teacher for extra credit to improve a test score
doing extra studying beyond what is needed to score well on the test
working for the goal of getting straight A’s on a report card

Answers

Answer:

a

Explanation:

because once your done studying it motivates you to do more educational activities in my opinion

Answer:

c

Explanation:

PLEASE HELP! WILL GIVE BRAINLIEST

PLEASE HELP! WILL GIVE BRAINLIEST

Answers

Answer:

Explanation:find out

search engines use the information in a webpage header to know when a page was last modified. T/F

Answers

The statement is false. Search engines do not rely on the information in a webpage header to determine when a page was last modified.

Search engines employ various techniques to determine the last modification date of a webpage, but they do not solely rely on the information provided in the webpage header. The information in the webpage header, such as the "Last-Modified" HTTP header field, is primarily intended for browsers and other clients to understand when the page was last modified.

Search engines typically use more reliable methods to determine the last modification date of a webpage. They may crawl the webpage periodically and compare the current version with previously indexed versions to detect any changes. They also consider other signals, such as the update frequency of a website, sitemaps, and metadata associated with the webpage.

While the information in the webpage header can provide some clues about the last modification date, search engines employ a combination of techniques to ensure accurate and up-to-date information for their search results. Therefore, the last modification date of a webpage is determined through more robust methods beyond relying solely on the webpage header.

Learn more about webpage header here:

https://brainly.com/question/12869455

#SPJ11

What's an operating system ~ ​

Answers

Answer:

Is it software that controls and manages hardware components and translates instructions so that the hardware can do what one instructs it to do

Explanation:

An operating system is a large collection of system software which manages the resources of computer system such as memory, storage, processor, input/output devices alongside acting as an interface between machine and user.

When this function is called, the smaller of two numbers is displayed. What Boolean expression would not work in line 12 in order to accomplish this goal?

Answers

Answer:

\(\mathbf{num1 == num2}\)

Explanation:

The missing program is written as:

1 var \(num1\) = 5;

2 var \(num2\) = 7;

3 smallest ( ) ; →

4

5 \(num1\) = 8;

6 \(num2\) = 4;

7 smallest ( ) ; →

8

9 function  smallest ()  {→

10    \(console.log\) ( "What is smallest? " +\(num1\) +  " or  " +  \(num2\)  +  " ? " ) ;

11

12     if (< insert code>)  {

13     \(console.log\)(\(num1\) + " is the smallest.") ;

14     } else {

15     \(console.log\)(\(num2\) + " is the smallest.") ;

    }   

 }

So from above, the Boolean expression that would not work in line 12 is:

\(\mathbf{num1 == num2}\)

The Boolean expression would be a logical assertion that is either TRUE or FALSE. It may compare the data of any type as long since both components of an expression have the same basic data.

This information can be tested to discover whether it is equal to, larger than, or less than another data.In the attached file, except "num1 == num2" all choices are correct because it uses the less than and greater than (>,<) Operator which is used to compare the value.

Therefore, the answer is "num1 == num2".

Please find the complete question in the attached file.

Learn more:

brainly.com/question/20076842

When this function is called, the smaller of two numbers is displayed. What Boolean expression would

dr. dewey called in a new prescription for hydrocodone/apap 5/500 1-2 q4-6h prn pa the label should read:

Answers

The label for the prescription should read: "Take one to two tablets of hydrocodone/APAP 5/500 every four to six hours as needed for pain relief."


The prescription given by Dr. Dewey is for hydrocodone/APAP 5/500. This means that each tablet contains 5 milligrams of hydrocodone and 500 milligrams of acetaminophen (also known as APAP). The dosage instructions state "1-2 q4-6h prn."

This means that the patient should take one to two tablets of hydrocodone/APAP every four to six hours as needed for pain relief. The "q4-6h" indicates the time interval between each dose, which is every four to six hours. The "prn" stands for "as needed," meaning that the medication should be taken when the patient experiences pain and not on a fixed schedule.

The label should read: "Take one to two tablets of hydrocodone/APAP 5/500 every four to six hours as needed for pain relief."

To know more about acetaminophen visit:

https://brainly.com/question/31418462

#SPJ11

What tool can be used to copy complex text formatting from one section of the document to another?.

Answers

Character and paragraph formats can be copied and pasted into existing text using the Format Painter tool.

Where is the format Painter tool?The Home tab of the Microsoft Word Ribbon contains the Format Painter tool. Format Painter can be found in older versions of Microsoft Word on the toolbar above the menu bar at the top of the program window.Character and paragraph formats can be copied and pasted into text using the Format Painter tool. This tool can make organizing and reformatting documents simpler and more effective when used in conjunction with styles. Use the Format Painter tool as follows: Choose the text whose formatting you want to duplicate.The Format Painter in Excel can be opened by using a keyboard shortcut. You can paste the formatting by pressing Ctrl+Shift+V after copying it with Ctrl+Shift+C.

To Learn more About Format Painter tool Refer to:

https://brainly.com/question/21934838

#SPJ4

you can use a logical operator to combine two boolean expressions determine if two expressions are equal reverse the value of an expression all of the above a and c only

Answers

Answer:

To manipulate boolean expressions, logical operators can be used. These operators help in combining two or more expressions, determining if two expressions are equal or reversing the value of an expression. By using logical operators like AND, OR, and NOT, complex boolean expressions can be created to make decisions and determine the logic of a program. For example, AND would require both expressions to be true for the overall expression to be true, whereas OR would only require one expression to be true. Additionally, NOT reverses the truth value of an expression, making it false if it was originally true and vice versa.

Write an extensive note on register and type of register .
a very long note that will give me enough mark.


I WILL MARK U BRAINLEST
30 POINTS

Answers

I don’t understand can you simplify

write down the output of the following program by showing dry down

write down the output of the following program by showing dry down

Answers

The output of the given program will be:

"CPE"

What is the explanation for the above?

This is because the program defines a subroutine named RESULT which takes a string parameter A$. The RESULT subroutine first calculates the length of the string A$ using the LEN() function and stores it in variable B. It then initializes a counter C to 1 and enters a loop that runs as long as C is less than or equal to B.

In each iteration of the loop, the program takes the character at the position specified by C in the string A$ using the MID$() function and appends it to a new string B$. The program then increments the counter C by 2 and continues with the next iteration of the loop.

Once the loop has been completed, the program prints the final value of B$, which will contain every other character of the input string A$. In this case, since the input string is "COMPUTER", the output will be "CPE".

Learn more about program at:

https://brainly.com/question/11023419

#SPJ1

What’s GIGO
Please write it in full form

Answers

Answer:

i think it is garbage in garbage out

Explanation:

what is mechanical advantage of a lever of a grain crusher

Answers

Explanation:

The mechanical advantage of a lever of a grain crusher is the ratio of the output force to the input force. It is a measure of how much easier it is to do a job using the lever compared to doing it without. For example, if the output force is twice as great as the input force, then the mechanical advantage of the lever would be 2. This means that the job can be done with half the effort. The mechanical advantage of a lever of a grain crusher can be increased by increasing the length of the lever arm, which reduces the input force required to move the grain. This makes it easier to crush the grain, as less force is needed to do the job.

Drag the tiles to the correct boxes to complete the pairs.
Match the benefit with its detailed explanation.

Drag the tiles to the correct boxes to complete the pairs.Match the benefit with its detailed explanation.

Answers

The detailed explanation and their benefits are:

1st box - Improved Planning Session2nd box - Integrated Organisation3rd box - Improved Data Entry4th box - Reduced Inventory Costs.

What are enterprise systems?

Enterprise systems are known to be software packages in large-scale which help businesses or enterprises to track and control their complex business operations. They are used as a hub where businesses are automated.

We can see that the above has been be arranged with the detailed explanation and the benefits that follow.

Learn more about enterprise systems on https://brainly.com/question/18257319

"Which problem does the Spanning Tree Protocol prevent?"
A) Broadcast storms
B) Routing loops
C) MAC address table overflow
D) Network congestion.

Answers

Answer: Routing loops. The Spanning Tree Protocol (STP) prevents the problem protocol generates a single  spanning tree for the whole network. Ensures that there is no loop in the topology .However it does not meet today’s requirements.

inter-AS routing loops since it contains the subnet reachability data from AS. There are many various reasons the BGP router always choose the loop-free route with shortest AS –path length. Among them include, the router may contain one path or more to catch any one prefix.

When this happens, BGP can apply some elimination rules to catch the one route. However, a longer loop-free path is sometimes likely preferred than shorter AS–path length due to economic-driven reasons.

Learn more about Routing loops here

https://brainly.com/question/9257367

#SPJ11

Focus Which type of AppLocker rule condition can uniquely identify any file regardless of its location

Answers

AppLocker is a Microsoft Windows feature that enables an organization to set policies for which applications and files the end-users of the organization are allowed to execute on a workstation or a server. There are three categories of AppLocker rules:Executable files, Windows Installer files, and Script files.

In the context of AppLocker rules, the condition type that can identify any file irrespective of its location is Hash. A hash is a digital fingerprint of a file that is produced by a hash algorithm. A hash algorithm generates a unique fixed-length alphanumeric string for any given file. AppLocker rules based on hash algorithms are called hash rules. A hash rule is created by selecting the type of file and the specific hash algorithm to be used. This rule can then be configured to allow or deny a particular application or file. Once a hash rule is created, the file can be placed anywhere on the system, and AppLocker will identify it and enforce the rule.

In conclusion, the AppLocker feature is used to set policies to regulate which applications and files users of an organization can run on their workstations or servers. AppLocker rules based on hash algorithms are used to uniquely identify a file, regardless of its location. A hash rule is a type of AppLocker rule that identifies a file by its hash value, which is generated by a hash algorithm.

To know more about Microsoft Windows visit:
https://brainly.com/question/2312568
#SPJ11

For questions 2-4, consider the following code:



if month == 7:

if day <= 15:

print("First half of the month")

else:

print("Second half of the month")

else:

print("Not in July")



What is the output if month = 7 and day = 14?
Group of answer choices

Nothing is output

Not in July

First half of the month

Second half of the month

Answers

Answer:

First half of the month

Explanation:

first if statement is true; nested if statement is true so the statement print("First half of the month") is executed

In terms of Reward power, what is
the power of big media and how has it changed given technological
changes in the
last twenty years?

Answers

Reward power refers to the power an individual possesses to offer rewards or benefits to others as an incentive to influence their behavior.

The big media is a term used to refer to the large media outlets or companies that control the flow of information to the public. It includes television networks, radio stations, newspapers, and other forms of mass media. The power of big media in terms of reward power has increased significantly in the last twenty years due to technological changes and advancements.The introduction of new technologies such as the internet, social media platforms, and mobile devices has enabled big media to reach a wider audience than ever before.

As a result, the power of these companies has increased, and they now have a greater influence over public opinion and behavior. They use their reward power to offer incentives to their audience in exchange for their loyalty or support. This includes rewards such as free subscriptions, exclusive content, and discounts on products or services.Technological changes have also made it easier for big media to collect data on their audience's behavior and preferences.

This data can be used to tailor their content to meet the specific needs and interests of their audience. By doing so, they can increase their reward power and maintain their dominance in the industry.Overall, the power of big media in terms of reward power has increased significantly in the last twenty years due to technological advancements. They use their reward power to influence the behavior of their audience and maintain their dominance in the industry.

Learn more about networks :

https://brainly.com/question/31228211

#SPJ11

User
Application Software
Operating System
Hardware

Assignment #1
•Explain the meaning of this graphics organizer base on what you have learned from this lesson.

• Is an "app" same in meaning with "application"? ​

User Application Software Operating System HardwareAssignment #1 Explain the meaning of this graphics

Answers

This graphics organizer base talks about Software and how it is divided into two groups such as the operating systems and application software.

What are Software?

Software are said to be often shared into  two categories such as:

The operating systems The application software.

Note that the Operating systems functions by helping the hardware and produce a kind of interface between the hardware and its user while the Application software is said to be a stage of a programs that help the user to do anything meaningful just as seen in the diagram.

Conclusively, The word "app" has the in meaning with "application". It is known to be the short form of application.

Learn more about Application Software from

https://brainly.com/question/1538272

My notifications keep glitching and saying i got messages
But they dry

Answers

Answer: just reset the phone

Explanation: if it keeps doing that then you have some app that's not supposed to be there

I need help with this question

I need help with this question

Answers

The DESPILL FACTOR and DESPILL BALANCE sliders are typically used in greenscreening or chroma keying workflows in visual effects or video production software.

What is the sliders affect?

They affect the process of removing color spill or contamination from a greenscreen or chroma key footage, where unwanted color from the greenscreen spills onto the subject or foreground.

DESPILL FACTOR: The DESPILL FACTOR slider controls the strength or intensity of the color spill removal. It determines how much of the unwanted color spill is removed from the foreground or subject. A higher DESPILL FACTOR value will result in more aggressive color spill removal, while a lower value will result in less removal or a more subtle effect.

DESPILL BALANCE: The DESPILL BALANCE slider controls the balance between the colors that are used to replace the removed color spill. It determines how the replacement color is balanced with the original colors in the foreground or subject. A higher DESPILL BALANCE value will result in a more neutral or balanced replacement color, while a lower value may result in a more dominant or noticeable replacement color.

Both the DESPILL FACTOR and DESPILL BALANCE sliders are used in combination to achieve a visually pleasing result in removing color spill and integrating the subject or foreground with the background in a greenscreen or chroma key composite. The optimal settings for these sliders may vary depending on the specific footage, lighting conditions, and desired visual effect, and may require experimentation and adjustment to achieve the desired result.

Read more about sliders affect here:

https://brainly.com/question/4084004

#SPJ1

See text below



Greenscreening Quiz

What do the DESPILL FACTOR and DESPILL BALANCE sliders affect?

B

U

7.6.9 and 7.6.10 remove all from string codehs please

Answers

7.6.9 and 7.6.10 in CodeHS refer to exercises that require students to write code that removes all instances of a certain character from a given string.

To remove all occurrences of a character from a string, one approach is to use the replace() method. This method replaces all occurrences of a given substring with another substring. So, to remove all occurrences of a certain character from a string, we can replace it with an empty string ("").

Here's an example:

```
string = "Hello, World!"
char_to_remove = "o"

new_string = string.replace(char_to_remove, "")
print(new_string)
```

This will output "Hell, Wrld!" because all occurrences of "o" have been removed from the original string.

It's worth noting that this method is case-sensitive, so if you want to remove both uppercase and lowercase instances of a character, you'll need to call replace() twice - once for the uppercase version and once for the lowercase version.

In summary, to remove all instances of a certain character from a string in CodeHS, you can use the replace() method and replace the character with an empty string.

To know more about replace() visit:

https://brainly.com/question/30456713

#SPJ11

Use the svd() function in matlab to compute a, the rank-1 approximation of a. clearly state what a, is, rounded to 4 decimal places. also, compute the root-mean square error (rmse) between a and a.
a=[1 2 2]
[ 3 4 5]
[ 6 7 8]

Answers

Using the knowledge in computational language in C code it is possible to write a code that organizes and calculates the value of the matrix of A*A and that is in up to 4 decimal places.

Writing the code in C is possible:

A=[1 2 2;3 4 5;6 7 8];

[u ,s ,v] = svd(A);

k = 1;

A1 = u(:,1:k)*s(1:k,1:k)*v(:,1:k)'; %'

RMSE = rms(sqrt(mean((A - A1).^2)))

See more about C code at brainly.com/question/17544466

#SPJ1

Use the svd() function in matlab to compute a, the rank-1 approximation of a. clearly state what a, is,

refer to the exhibit. what can be determined about the contents of the ite user home directory? the octal representation of the permissions for january is 755. the data files in this user directory contain no data. all users have read, write, and execute permissions to files within the directories. there are two data files and three directories contained in this user directory.

Answers

From the given exhibit, we can determine several things about the contents of the "ite" user home directory.Firstly, there are three directories present within the "ite" user home directory.

These directories are "Desktop", "Downloads", and "Documents". Additionally, there are two data files in this user directory, which are not specified by name or file type.

Secondly, the octal representation of the permissions for the "January" file is 755. This means that the owner of the file has full permissions, including read, write, and execute. The group associated with the file, as well as all other users, have read and execute permissions only.

Lastly, we are told that all users have read, write, and execute permissions to files within the directories. This indicates that the permissions for the directories within the "ite" user home directory are likely set to allow full access to all users.

Overall, we can infer that the "ite" user home directory contains several directories and files with relatively permissive access permissions. However, without additional information, we cannot determine the specific contents or purposes of the directories and files within the directory.

To know more about directory click this link -

https://brainly.com/question/30272812

#SPJ11

Some clues left on a drive that might indicate steganography include which of the following?
a. Graphics files with the same name but different file sizes
b. Multiple copies of a graphics file
c. Steganography programs in the suspect's All Programs list
D. All of the above

Answers

Some clues left on a drive that might indicate steganography include option D: All of the above.

a. Graphics files with the same name but different file sizes.

b. Multiple copies of a graphics file.

c. Steganography programs in the suspect's All Programs list.

What is steganography?

Steganography is a technique for concealing sensitive information within a regular, non-sensitive file or message so as to avoid detection; the sensitive information is then extracted at its intended location. To further conceal or protect data, steganography can be used in conjunction with encryption.

Hence, Steganography is the practice of enclosing openly available information inside of something that seems normal. Steganography is a technique used by cybercriminals to conceal malicious code or stolen data in media like images and audio files.

Learn more about Steganography from

https://brainly.com/question/13089179
#SPJ1

Other Questions
Gangs can be found in cities, suburbs, and rural areas. true or false? a community health nurse is working with a blended family after remarriage. assessment reveals that there are issues related to guilt and loyalty. the nurse determines that the family is in which phase? A pet shop has collected data from customers on pet preference. They have calculated that P(dog) = 0.8, P(cat) = 0.5, and P(dog or cat) = 0.7. Determine the P(dog and cat).0.30.60.70.5 determine the volume of the stock solution that should be diluted in order to make 200. ml of 0.069 m sodium benzoate. The declaration of independence declares that "all men are created equal." give an example of a modern linkage group that promotes or opposes this principle. give an example of how this principle has affected government policies in the modern era since 1945. which xxx base completes the algorithm to count the number of occurrences of a value in a list of numbers? Assume that the oil extraction company needs to extract Q units of oil (a depletable resource) reserve between two periods in a dynamically efficient manner. What should be a maximum amount of Q so that the entire oil reserve is extracted only during the 1st period if (a) the marginal willingness to pay for oil in each period is given by P = 33 - 0.5q, (b) marginal cost of extraction is constant at $3 per unit, and (c) discount rate is 1%? graph the line y = - 5x + 3 Number 9 I cant graph it its too confusing If ST=17 and RT=41, find RS. Use the number line below. Read the excerpt from A Long Walk to WaterSalva had never seen anything like the desert. Aroundhis village, Loun-Ariik, enough grass and shrubs grewto feed the grazing cattle. There were even trees. Buthere in the desert, nothing green could survive excepttiny evergreen acacia bushes, which somehow enduredthe long winter months with almost no water.Which detail from the excerpt best supports the ideathat some things can thrive in the harshest conditions?O The desert is like nothing Salva has seen before.O The evergreen acacia bushes survive winter in thedesert.O There are enough plants around Salva's village forcattle.O Almost nothing green can survive in the desert. The test statistic for goodness of fit has a chi-square distribution with k- 1 degrees of freedom provided that the expected frequencies for all categories are a. 2k. b. 5 or more. c. 10 or more d. k or more. identify two examples of audience adaptation in this speech and write them below. explain how this information was tailored to suit the audience. direct materials used $ 191,200 direct labor incurred (7,700 hours) 245,800 actual manufacturing overhead incurred 276,600 estimated manufacturing overhead 384,000 estimated direct labor hours 8,000 the company uses direct labor hours as the allocation base. how much overhead was applied during the year? multiple choice $384,000 $276,600 $369,600 $245,800 The easiest form of non-biological parenting may be the ____ Parent, who is legally connected to the child for life Suppose that a and b are nonzero vectors.a) Under what circumstances is compa b=compb ab) Under what circumstances is proja b=proj b aPart (a) seems relatively simple but I'm having trouble with part (b) The literature review is an integral part of the research process and make a valuable contribution to almost every operational step. Discuss the FOUR (4) purpose of literature review. Help me please.Whoever answers right gets brainliest Comment on each of the following statements: a. Salespeople are a thing of the past because buyers can learn all they need from the Internet. b. Salespeople should treat everyone with respect and courtesy. c. A successful salesperson never accepts no as the final decision by a buyer. d. A good salesperson can sell anything to anybody. holds that consumers will favor products that offer the most quality, performance, and innovative features. thus, an organization should devote energy to making continuous product improvements.