Answer:
Custom Affinity audiences .
Explanation:
Amy recently developed the latest product for the following training materials of the corporation. She understands that many corporations educate them, so it's a common activity, however she admits that this is a small market.
She decides to use the Google Display Advertising program for increase knowledge of her latest product. Custom Affinity audiences will allow Amy to increase recognition in her target market.
I'M StartUP Corp. issued and sold 2,500,000 common voting shares during its first public stock sale. What is the minimum number of shares needed to be able to elect a new director to the Board
Answer:
1,250,000 (1.25 million)
Explanation:
Given
Common Voting Shares = 2,500,000
First, we need to understand what common voting shares is.
Common voting shares are such that the ownership interest in a company and entitle their purchasers to a portion of the profits earned.
To be able to elect a new director to the Board, only ½ or 50% of the total Common voting shares is needed.
i.e.
Minimum number of shares = 50% of 2,500,000
Minimum number of shares = 1,250,000
Hence, the minimum number of shares required to be able to elect a new director to the Board is 1,250,000
Declare a multidimensional array of ints, westboundHollandTunnelTraffic that can store the number of vehicles going westbound through the Holland Tunnel on a particular hour on a particular day on a particular week on a particular year. The innermost dimension should be years, with the next being weeks, and so on.
Answer:
The multidimensional array is declared as
int westboundHollandTunnelTraffic [ ] [ ] [ ] [ ];
Explanation:
int is the type of the array which is short for integer as the given type of data to be stored is all integers.
westboundHollandTunnelTraffic is the name of the array which is as given in the question.
[ ] [ ] [ ] [ ] are the dimensions of the array which are 4 in number for the innermost being for year, the next one for weeks, the further one for days and the outermost for hours.
A highly agitated client paces the unit and states, "I could buy and sell this place." The client’s mood fluctuates from fits of laughter to outbursts of anger. Which is the most accurate documentation of this client’s behavior?
Answer:
"Agitated and pacing. Exhibiting grandiosity. Mood labile."
Explanation:
The extremely frustrated user paces that system and remarks that he can purchase and trade this spot. His behavior vacillate through laughing sessions to rage outbursts. So the Pacing and Agitated. Displaying grandiosity. Behavior labile becomes the best reliable documentation of the actions of this corporation
As a digital strategist, Jared wants to add something extra to his ads to give users more incentive to click and convert. He's considering using the two optional field paths in the URL component of the ad, but needs to be certain his messaging will fit.How many total characters can he use in each of these optional paths?A) Up to 15 characters in eachB) Unlimited number of characters in eachC) Up to 10 characters in eachD) Up to 10 characters in one and 5 in another, for a total of 15
Answer:
A) Up to 15 characters in each.
Explanation:
Total characters he can use in each of these optional paths are up to 15 characters in each.
13) What are the benefits and detriments of each of the following? Consider both the systems and the programmers’ levels. a. Symmetric and asymmetric communication b. Automatic and explicit buffering c. Send by copy and send by reference d. Fixed-sized and variable-sized messages
Answer:
Automatic and Explicit Buffering.
In the case of explicit buffering, the length of the queue is provided while in automatic buffering the queue size needs to be indefinite. In automatic buffering there is no need to block the sender while coping the message. While in explicit buffering the sender is blocked for the space in queue.
No memory is being wasted in explicit buffering.
Send by Copy and Send by Reference.
By using the send by copy method, the receiver is not able to change the state of parameter while send by reference allow. The advantage of using the send by reference method is that it allows to change a centralized application to its distributed version.
Fixed-sized and Variable-sized Messages.
In fixed size messaging refers, the buffer size is fixed. This means only a particular number of messages can only be supported by the fixed size buffer. The drawback of the fixed size messages is that they must be a part of fixed size buffer. These are not a part of variable size buffer. The advantage of variable size message is that the length of the message is variable means not fixed. The buffer length is unknown. The shared memory is being used by the variable size messages.
Explanation:
The inquiry covers the benefits and detriments of symmetric/asymmetric communication, automatic/explicit buffering, send by copy/reference, and fixed/variable-sized messages. Each approach has its own set of advantages, like fairness and efficiency, and disadvantages, such as the potential for bottlenecks and complexity in management.
Explanation:Benefits and Detriments of Communication and Buffering Systems
The question pertains to the advantages and disadvantages of various communication and buffering systems at both system and programmer levels. When discussing symmetric and asymmetric communication, symmetric systems allow equal participation in communication, promoting fairness and balance, but may not scale well as the number of participants grows. Asymmetric systems can handle scaling by designating different roles (such as sender/receiver or client/server), but can introduce bottlenecks or points of failure.
Regarding automatic and explicit buffering, automatic buffering simplifies programming by abstracting buffer management, yet could lead to inefficiencies if not optimally managed by the system. Explicit buffering gives programmers control to optimize resource usage, but requires careful management to avoid errors such as buffer overflows.
Send by copy ensures that the receiver gets a local copy of the data, enhancing security and avoiding data consistency issues, but increases bandwidth usage. Send by reference reduces bandwidth and memory usage by passing a reference to the data, though it introduces the risk of unexpected data modifications and requires a shared memory space.
Messages that are fixed-sized simplify design and parsing, leading to potentially faster processing and less overhead. However, they lack flexibility and may waste resources when the data does not fill the fixed size. On the other hand, variable-sized messages accommodate data of any size, offering flexibility but making parsing more complex and potentially introducing more overhead for delimiting message sizes.
Which software product release category is "generally feature complete and supposedly bug free, and ready for use by the community?" Question 19 options: A) Alpha. B) Release candidate. C) Continuous beta. D) Beta.
Answer:
B) Release candidate
Explanation:
The release candidate is the last stage or final stage of software testing by vendors before it can be officially released to be sold commercially. The release candidate is usually carried out by a very large community of customers.
Some vendors may have to bring out just more than one release candidate if problems are discovered in the first RC.
Release candidate generally feature complete and supposedly bug free, and ready for use by the community.
You have just installed a new sound card in your system, and Windows says the card installed with no errors. When you plug up the speakers and try to play a music CD, you hear no sound. What is the first thing you should do? The second thing?
Answer:
1. Volume check
2. Manage Device
Explanation:
1. Verify the volume is turned up in Windows and on the speakers. This can be done easily by going to the volume control icon on the computer.
2. Check Device Manager to see if the sound card is recognized and has no errors. This can be done by navigating thus:
My PC (Right click) > Manage > Device manger
Cheers
What is wrong in the following code? class TempClass { int i; public void TempClass(int j) { int i = j; } } public class C { public static void main(String[] args) { TempClass temp = new TempClass(2); } }
Answer:
In the given program, a parameterized constructor declaration is wrong, which can be described as follows:
Explanation:
Code:
class TempClass //defining class TempClass
{
int i; //defining integer varaible i
TempClass(int j)//defining parameterized constructor
{
i = j; //variable holds a value
System.out.print(i); //print value
}
}
public class Main //defining class Main
{
public static void main(String[] aw) //defining main method
{
TempClass temp =new TempClass(2); //creating class Object and call parameterized constructor.
}
}
Description:
In the given java code, two classes "TempClass and Main" is defined, inside the TempClass class an integer variable "i" and a parameterized constructor is declared, inside the constructor integer variable "i" hold constructor parameter value, the use print method to prints its value. Then the main class is defined, inside this main method is declared, in this method, the TempClass object "temp" is defined, that call the parameter constructor.True or False: Unity can apply multiple textures to a single object or terrain
Answer:
True
Explanation:
A(n) ____________________ is a hardware device or software utility designed to intercept and prevent unauthorized access to a computer system from an external network.
Answer:
hardware device
Explanation:
The ________ of the operating system enables users to communicate with the computer system. Select one: A. user interface B. modem C. network adapter card D. window
You realize your computer has been infected with malware. The program has been copying itself repeatedly, using up resources. What type of malware might you have?
The program has been copying itself repeatedly, using up resources. The type of malware that might have is a worm.
What is malware?Malware assaults are specific kinds of system attacks that are known to penetrate systems, crack weak passwords, proliferate over networks, and interfere with daily corporate activities.
Malware comes in a variety of forms that can slow down your computer, spam you with adverts, lock up crucial files, and more. Keep in mind that a cyber threat known as malware frequently tries to attack a system on purpose.
Software that is meant to harm the host computer or a network of computers is referred to as "malware," which is a combination of the two words "malicious software."
Therefore, worms are one sort of malware that could be present.
To learn more about malware, refer to the link:
https://brainly.com/question/8544487
#SPJ5
When you have to make a long-distance call, dialing an unfamiliar area code plus a seven-digit number, you are likely to have trouble retaining the just-looked-up number. This best illustrates the limited capacity of ________ memory.
Answer:
c. short-term
Explanation:
According to a different source, these are the options that come with this question:
a. long-term
b. implicit
c. short-term
d. explicit
This best illustrates the limited capacity of short-term memory. Short-term memory is the most recent information that a person holds in his head. Usually, this corresponds to events that occurred in the last 30 seconds to the last few days. This type of memory stores recent events, as well as sensory data such as sounds.
Tiffany is writing a program to help manage a bake sale. She writes the following code which prompts the user to enter the total number of items a person is buying and then a loop repeatedly prompts for the cost of each item. She wrote the code but there is a problem: it runs in an infinite loop. How can Tiffany change her code so it doesn't loop forever?
Answer:
Add the following code after the line 3 that is:
numItems = numItems - 1;
Explanation:
In the following question, some information in the question is missing that is code block.
0 var numItems = promptNum("How many items?");
1 var total = 0;
2 while (numItems > 0){
3 total = total + promptNum("Enter next item price");
4 }
5 console.log("The total is" + total);
In the following scenario, Tiffany is developing a program to help with the handling of bake sales and she not write that part which is essential.
There would become an incorrect condition that requires any increment/decrement operations stating that perhaps the condition variable will be incorrect. Because there has to be the variable "numItems" operation because it engages in the while loop condition.
You currently use the Exchange email client on your desktop PC. You use it to connect to an email server provided by a service provider using the IMAP and SMTP protocols. You recently purchased an iPad, and you want to configure its Mail app to connect to your email server.
Answer:
Yes, he can configure the Mail application on the iPad to link to an e-mail server by using the IMAP and SMTP protocols.
Explanation:
A user recently uses that mail client Exchange through his desktop computer. Which used the IMAP and SMTP protocols he uses it only to link to such an email server operated by a network provider. He then just bought an iPad as well as decided to set up the mail application to link to his mail client.
So, through the IMAP and SMTP protocols, he should customize the Mail software on the iPad to link to such an e-mail server.
A security administrator is testing the security of an AP. The AP is using WPA2. She ran an automated program for several hours and discovered the AP's passphrase. Which of the following methods was she MOST likely using?
A. IV attack
B. Disassociation attack
C. WPS attack
D. Evil twin attack
Answer:
WPS attack
Explanation:
WiFi protected setup (WPS) is a convenient feature that allows the user to configure a client device against a wireless network by simultaneously pressing a button on both the access point and the client device (the client side “button” is often in software) at the same time. Since it has access to the Access point, it can get the passphrase.
When you declare an array, _____________________ You always reserve memory for it in the same statement You might reserve memory for it in the same statement You cannot reserve memory for it in the same statement The ability to reserve memory for it in the same statement depends on the type of the array
Answer:
the ability to reserve memory for it in the same statement depends on the type of the array.
Explanation:
When you declare an array, the ability to reserve memory for it in the same statement depends on the type of the array.
What is IaaS? For this service model, what are the resources the cloud vendor will provide/manage and what are the resources the cloud user will have a control? What basic question is it essentially addressing for a cloud user? Know that Amazon is the pioneer to officially offer IaaS to the public.
Answer:
Iaas means Infrastructure as a service.
IaaS is one of the three categories of cloud computing services.
Others are software as a service (SaaS) and platform as a service (PaaS). Iaas is faster and easier to operate. It is also more cost-efficient
IaaS provides virtualized computing resources over a wide area network (WAN) such as the internet.
Examples of independent IaaS providers are Amazon Web Services (AWS) and Google Cloud Platform (GCP). These Iaas providers are organizations that sell IaaS.
What feature new to Windows Server 2012 provides the ability to find identical sets of data on a SAN based storage array and reduce the identical sets to a single instance, in order to reduce space
Answer:
Data Deduplication
Explanation:
In computing, data deduplication is a technique for eliminating duplicate copies of repeating data. This is also called single-instance storage.
Only applicable to Windows Server 2012 and newer versions, Data deduplication techniques ensure that only one unique instance of data is retained on storage media, such as disk, flash or tape.
Cheers
Given the definition of the function one_year_older:def one_year_older(name, age): print('Name:', name) age = age + 1 print('Your age next year:', age) print()Which of the following statements will invoke the function one_year_older successfully?A. one_year_older(27, 'John')B. one_year_older()C. one_year_older('John', 27)D. one_year_older('John')one_year_older(27)
Answer:
The answer is "Option C".
Explanation:
Method Definition:
In the given python code, a method "one_year_older" is defined, which accepts two parameters "name and age", in which name accepts string value and age accepts integer value. Inside the method the print method is used, that print name variable value then increments the value of age variable by 1 and print its value, in this question except "Option C" all were wrong, which can be described as follows:
In option A, In method calling first, it passes integer value, then string value that's why it is wrong. In option B, In this method calling there is no parameter is used. In option D, This type of method calling is illegal.The three tasks within data harmonization, namely: data consolidation, data cleansing, and data formatting use techniques called harmonization rules that implement those tasks. True False
The three tasks within data harmonization, namely: data consolidation, data cleansing, and data formatting use techniques called harmonization rules that implement those tasks -The statement is true
Explanation:
Data harmonization refers to the process of combining the data of varying files and formats ,name conventions and columns and transforming the same into one data set.
Data harmonization refers to the process of integrating multiple data source into a single data set.
By adopting the Data harmonization technique we can reduce the problem of redundant data and conflicting standard
The name harmonization is an analogy to the process to harmonizing discordant music.
The goal of data harmonization is to find commonalities, identify critical data that need to be retained, and then provide a common standard.
Final answer:
The statement regarding the use of harmonization rules in data consolidation, data cleansing, and data formatting tasks within data harmonization being true is correct. These rules are essential for integrating, analyzing, and utilizing data effectively.
Explanation:
The statement that the three tasks within data harmonization, namely: data consolidation, data cleansing, and data formatting use techniques called harmonization rules that implement those tasks is true. Data harmonization is a critical process in ensuring that data from various sources can be effectively integrated, analyzed, and utilized for decision-making.
The process involves several key steps, including data consolidation, which is the merging of data from different sources; data cleansing, which involves identifying and correcting errors or inconsistencies; and data formatting, which ensures that data from different sources adhere to a common format for seamless integration.
Harmonization rules are sets of guidelines or algorithms that help automate these tasks, ensuring accuracy and efficiency in the data harmonization process.
To estimate the percentage of defects in a recent manufacturing batch, a quality control manager at Sony selects every 14th music CD that comes off the assembly line starting with the eighth until she obtains a sample of 100 music CDs. What type of sampling is used? A. Cluster B. Stratified C. Systematic D. Convenience E. Simple random
Answer:C. Systematic Sampling
Explanation:
Systematic sampling is a type of probability sampling method in which sample members from a larger population are selected according to a random starting point but with a fixed, periodic interval. This interval, called the sampling interval, is calculated by dividing the population size by the desired sample size.
Systematic sampling involves selecting items from an ordered population using a skip or sampling interval. The use of systematic sampling is more appropriate compared to simple random sampling when a project's budget is tight and requires simplicity in execution and understanding the results of a study.
True or False: Gameplay and level design are unrelated aspects of game development
Gameplay and level design are unrelated aspects of game development is a FALSE statement.
Explanation:
Level design, or environment design, is a discipline of game development involving creation of video game levels—locales, stages, or missions. This is commonly done using a level editor, a game development software designed for building levels.Level design is a game development discipline that involves the creation of video game levels, locales, missions or stages. This is done using some sort of level editor - software used in game development to construct digital environments. Level design is also known as environment design or game mapping.Gameplay is the specific way in which players interact with a game, and in particular with video games. Gameplay is the pattern defined through the game rules, connection between player and the game, challenges and overcoming them, plot and player's connection with it.Playability is the ease by which the game can be played or the quantity or duration that a game can be played and is a common measure of the quality of gameplay.Some smartphones use ______ text, where you press one key on the keyboard or keypad for each letter in a word, and software on the phone suggests words you may want.
Answer:
The answer is "predictive".
Explanation:
The statement lacks some details, which can be answered by the choice of the question:
A. Presumptive .
B. suggestive .
C. interpretive.
D. predictive.
Predictive text is considered to be auto-correct text as well. It is an input technique, which allows people to type words onto a smartphone throughout the text field. It's focused on both the significance of the words and letters in the message, and certain choices were wrong, which can be defined as follows:
Option B and Option D both were wrong because it provides the synonyms of the words. In option C It is wrong because it is a text version.You are adding new wires in your building for some new offices. The building has a false ceiling that holds the lights and provides an air path for heating and air conditioning. You would like to run your Ethernet cables in this area.
Answer:
Plenum rate cable.
Explanation:
The Plenum rated cable has an unique coating with the low fire resistance and smoke. The main reason to used the Plenum rate cable in the office because it allowing the intense cooling of the servers also for the safety purpose we used the Plenum rate cable.
In the office we used Plenum rate cable wires because The house has a false ceiling housing the lights and supplying air-conditioning and ventilation routes.
A problem is listed below. Identify its type. Tammy wishes to purchase a new laptop in 4 years. She makes quarterly deposits of $100 into an account that pays 3% per year compounded quarterly for 4 years. How much will she have towards the purchase of a new laptop in 4 years?
At the end of 4 years, she will have $54933
Explanation:
Given-
Time to buy a new laptop, n = 4years
Quarterly deposit, C = $100 X 4 = $400 per year
Pays 3% per year compounded quarterly
We have to find the future value of Annuity
[tex]FV = C * [\frac{(1 + i)^n - 1}{i} ][/tex]
Where, C = cash flow
i = interest rate
n = number of deposits
[tex]FV = 400 [ \frac{(1 + 3/400)^4}{3/400} ]\\\\FV = 400 [ \frac{1.03}{0.0075} ]\\\\FV = 400 * 137.33\\FV = 54933[/tex]
At the end of 4 years, she will have $54933
QUESTION 1 _____ is a type of data encryption that enables users of the Internet to securely and privately exchange data through the use of a pair of keys that is obtained from a trusted authority and shared through that authority. a. Secret key encryption b. A public key infrastructure c. A private key infrastructure d. Open key encryption
Answer:
The correct answer to the following question will be Option B (Public key infrastructure).
Explanation:
This seems to be a program that allows an individual to deliver an encrypted message or file through some kind of public key that can be unlocked by the intended receiver using another key or code, almost always a private or personal key.
This is a collection of functions, rules, equipment, applications, and methods required to develop, maintain, deliver, utilize, save, and withdraw digital credentials, and handle encryption with the public key.This safeguards against hacking or interference with customer information or data.Given the definition of the function one_year_older:def one_year_older(name, age): print('Name:', name) age = age + 1 print('Your age next year:', age) print()Which of the following statements will invoke the function one_year_older successfully?A. one_year_older(27, 'John')B. one_year_older()C. one_year_older('John', 27)D. one_year_older('John')one_year_older(27)
Answer:
C. one_year_older('John', 27)
Explanation:
The correct call to the function one_year_older() is the option C which is one_year_older('John', 27). This is because in the definition of the function, it was defined with two parameters name and age, so when this function is invoked, the argument for name and age must be passed to it in the function call. Hence option C which passes a string John (as the first argument name) and an int 27 (as the second argument age)
Which of the main value components are contained in the value proposition "SportsAde offers serious athletes a great-tasting way to stay hydrated during exercise"?
Answer:
Explanation:unique difference/benefits
- "a great-tasting way to stay hydrated during exercise" this is the benefit statement
2. product/service category or concept is
- the drink
3. target market
- "serious athletes" is the target market
4. offering name or brand is
- SportsAde
7. Consider the following code segment: (10pts) pid t pid; pid = fork(); if (pid == 0) { /* child process */ fork(); thread create( . . .); } fork(); (15pts) a.How many unique processes are created? b. How many unique threads are created?
Answer:
a) 6 processes
b) 2 threads
Explanation: