Answer:
In swift programming language it is ok when a function does not return any value you are not necessarily required to set return type because it is optional so the correct answer is "The return type is omitted from the function declaration".
Explanation:
If programing language is swift so we can omit return type from function declaration otherwise if language is C++ we can set return type "Void".
Write a command that will list the names of all executable files in the working directory, sorted by file size.
Answer:
The answer is "ls command".
Explanation:
The Is command is often used in Linux to sort the system files according to their size:
#ls – F | grep ‘*$’ -s
And the other regulation they can use is
#ls -Fla | grep ‘^\S*x\S*’
Its name collections of all non-executable files throughout the working directory could be accomplished with the command as follows:
find ! -term+|||-type s-t |find ! - term + ||| - type f-tr
OI GENTE EU SOU DO BRASIL TOU USANDO O BRANLY AMERICANO
Answer:
amazing people
Explanation:
Brazil vs argentina wuwuuwuwu
Help with number 12 please!
1
Select all the correct answers
Aubrey is on a Windows machine. She wants to back up her Halloween pictures on an external hard drive. Which of the following tasks is she
likely to perform as part of a sequence of actions do that?
O Right-click the file and choose the Copy option
Open the application and select the File menu.
Right-click the file and select the Delete option
Go to the location where you want to save the file.
Right-click an empty area and select the Paste option.
Answer:Go to the location where you want to save the file.
Explanation:
Select the correct statement(s) regarding digital baseband modulation.
a. similar to analog signal modulation, logical ""1s"" and ""0s"" are represented by carrier wave amplitudes, frequencies, or phase angles
b. QAM is a modulation technique in which both carrier amplitude and phase angle changes represent logical data
c. with QAM, two carrier waves of the same frequency, but separated by π/2 radians, are used to represent logical data
d. all statements are correct
Answer:
The answer is "Option d".
Explanation:
The electronic firmware synchronization was its method where even the series of bytes is amplified even before the transmission process into to the sound waves and, thus, and in conceptual "1s" and "0s" represented by large font, wavelengths, or switching frequency.
QAM utilizes both magnitudes of the transporter and adjustments in the phase shift. Rational data is represented by [tex]\frac{\pi}{2}[/tex] cartesian coordinates for both the carries waves of the same wavelengths and represents the result in total.What type of result does the MATCH function, when used on its own, return?
Answer:
It returns the lookup value located in a specific location.
Explanation:
Which describes the outlining method of taking notes?
It is easy to use in fast-paced lectures to record information.
It is the least common note-taking method.
It includes levels and sublevels of information.
It uses columns and rows to organize information.
Answer:
It includes levels and sublevels of information
Explanation:
The Outlining method of taking notes helps the writer to organize his ideas into levels and sublevels of information which gives the piece of writing an added structure.
This can be achieved by the use of the Arabic numbering system, Roman numerals or use of bullets.
Answer:
C : It includes levels and sublevels of information
Explanation:
Lola is friends with a boy she chats with in an online video game. Lola only knows the boy by his screen name and avatar. He only knows her in the same way. Lola is careful to make good choices when talking to someone online, even someone she thinks she knows well. The boy asks her the following questions in a recent chat room meet-up. Which questions should she not answer?
a
What kind of music do you listen to?
b
What is your favorite subject?
c
What is your realname?
d
Will you promise to keep our friendship a secret?
Answer:
I think the answer should be d.
Which quantity measures the rate at which a machine performs work?
Answer:
The SI unit of energy rate
Explanation:
is the watt, which is a joule per second. Thus, one joule is one watt-second, and 3600 joules equal one watt-hour.
To find the largest quantity of items ordered from Rex Technologies, what Excel formula should be used in A12
Answer:
For finding the largest quantity of items ordered from Rex Technologies the excel formula used is max(). Inside max you must specify the range of rex technologies quantity column cells just like if quantity is in D column and rex technologies items start from cell 4 to cell 7 then the formula will be max(D4:D7)
Explanation:
In max formula first argument is starting cell of range and last is ending cell of range. In this scenario starting cell is D4 and end cell D7
What is the force produced by a 100 kg object that accelerates at 5 m/s2?
Answer:
500N
Explanation:
force=mass*acceleration
f=m*a
f=100kg*5m/s^2
f=500kgm/s^2 or 500N
hope helps you
(ill give brainliest to the first one who answers)
Try out the improved version of the pet app that gives the user information about pet stores close by, which uses new sources of input. Determine the information that the app gets from each source of input. (please answer each and every one of them)
USER
PHONE SENSOR
INTERNET
Answer: it gives address the time to get there the things they selll
Explanation:
Assume that at time 5 no system resources are being used except for the processor and memory. Now consider the following events:
At time 5: P1 executes a command to read from disk unit 3.
At time 15: P5’s time slice expires.
At time 18: P7 executes a command to write to disk unit 3.
At time 20: P3 executes a command to read from disk unit 2.
At time 24: P5 executes a command to write to disk unit 3.
At time 28: P5 is swapped out.
At time 33: An interrupt occurs from disk unit 2: P3’s read is complete.
At time 36: An interrupt occurs from disk unit 3: P1’s read is complete.
At time 38: P8 terminates.
At time 40: An interrupt occurs from disk unit 3: P5’s write is complete.
At time 44: P5 is swapped back in.
At time 48: An interrupt occurs from disk unit 3: P7’s write is complete.
For time 37, identify which state each process is in. If a process is blocked, further identify the event on which it is blocked.
Answer:
Follows are the solution to this question:
Explanation:
In Time = 22:
The P5 and P8 are in the ready/running state, and the P1, P3, P7 are into the block state for Input/output.
In Time = 37:
The P1, P3, P8 are in the ready/running state, P5 is in the block state. It suspends or swapped out, and P7 is on the block state for Input/output.
In Time= 47:
The P1, P3, and P5 are in the ready/running state, P7 is on the block state for Input/output, and P8 is in the exit state.
What changes to software are usually included in version upgrades?
bug fixes
new features
security fixes
malfunction repairs
Answer:
I hope this helps
Explanation:
The answer is new features
Answer:
New features (B)
Explanation:
C++
12.18 Lab - Structs
In this lab, you will familiarize yourself with structs through a small exercise. We will be mixing the RGB values of colors together to make a new one.
RGB stands for red, green and blue. Each element describes the intensity value ranging from 0 - 255. For example: black color will have RGB values (0, 0, 0) while white will have (255, 255, 255).
Create an array of structs color. The struct contains three integers named red, green and blue. This corresponds to the RGB values of a color. For each array element, ask the user to enter the intensity value of red, green and blue. The value should be between 0 and 255 (inclusive).
*********The user can enter at most 10 colors. ********. see below for inputs
Additionally, compute the average of each of the red, green and blue components. For code modularity, implement a function that returns the average of each rgb component in your dynamic array. The function (called average) should take in a struct array, the rgb type for which you want to compute the average (as a string - red, blue or green) and its length. Print out the final result in the form (r, g, b), where r, g, b corresponds to each averaged value.
Can you guess what color you mixed? (Note: Your program does not need to print the final color mixed)
TEST #1
Input ------->>> 0 0 2 2 4 2
Expected output ----->>>> (1, 2, 2)
TEST #2
Input ------>>> 245 220 5 43 56 21 234 56 43
Expected output ----->>>> (174, 110, 23)
TEST #3
Input ------->>> 225 221 2 43 56 21 224 56 43 120 110 24 25 25 27
Expected output ----->>>> (127, 93, 23)
TEST #4
Input -------->>> 245 22 34
Expected output ----->>>> (245, 22, 34)
In order to input values choose between 0 up till 255 (integers)
Output
Number of colors to be analized: 2
Write the amounts of RGB: 1:
Red: 10
Green: 20
Blue: 100
Write the amounts of RGB: 2:
Red: 30
Green: 20
Blue: 19
The colors average: (20, 20, 59)
...Program finished with exit code 0
Press ENTER to exit console.
Code
#include <iostream>
using namespace std;
//declaration of variables
typedef struct Color {
int b,r,g; //integers values which define a digital color
} Color;
//function of average
int average(Color *colors, int size, char type) {
int s = 0;
for(int i=0; i<size; i++) {
if(type=='b') {
s += colors[i].b;
}
if(type=='g') {
s += colors[i].g;
}
if(type=='r') {
s += colors[i].r;
}
}
return s/size;
}
int main() {
int n;
cout << "Number of colors to be analized: ";
cin >> n;
Color *colors = new Color[n];
for(int i=0; i<n; i++) {
cout << "Write the amounts of RGB: " << (i+1) << ":\n";
cout << "Red: ";
cin >> colors[i].r;
cout << "Green: ";
cin >> colors[i].g;
cout << "Blue: ";
cin >> colors[i].b;
cout << endl;
}
cout << "The colors average: ";
cout << "(" << average(colors, n, 'r') << ", " << average(colors, n, 'g');
cout << ", " << average(colors, n, 'b') << ")\n";
}
Create a flowchart designing a solution to the following problem:
Anna has saved $50,000 for a down payment on a house. Your algorithm will ask Anna how much the house she would like to purchase costs (verify that the entered value is at least $10,000 and no more than $1,000,000.) If Anna’s savings is at least 20% of the house cost, provide a message that tells her that she will not have to pay for mortgage insurance. If, however her savings is less than 20%, but more than 10% provide a message that she can still purchase the home but will have to have the insurance. If unfortunately her savings are 10% or less of the home cost provide a message that she is not eligible to purchase the home and tell her the maximum home price she can afford.
Answer:
The question requires the answer as an attachment
Explanation:
I've added the flowchart as an attachment (See attachment for flowchart)
The flowchart follows the sequence and conditions in the question
Could someone explain a Boolean?
Answer:
It is a "True" or "False" integer.
Explanation:
denoting a system of algebraic notation used to represent logical propositions, especially in computing and electronics.
a binary variable, having two possible values called “true” and “false.”.
Answer:
Booleans are “truth values” — they are a data type that can contain either the value true or false. (These values may be represented as 1 or 0 in other programming languages!) Boolean statements are statements that evaluate to be true or false.
Which part holds the "brains" of the computer?
Which of the following works on the pay-per-click (PPC) and cost-per-click (CPC) concept?
A. Google Adwords B. Technorati search C. Bing Ads D. Radian6
Answer:
The answer to this question is given below in the explanation section.
Explanation:
The correct answer to this question is Google Adwords and Bing Ads.
First we need to know what is CPC and PPC.
Cost per click (CPC) is a paid advertising term used by Google where an advertiser pays a cost to the publisher for every click when an internet user will click on the advertisement or ad.
Cost per click is also called PPC (Pay per click). CPC is used to determine the costs of showing advertisements on the search engine, for example Google Adwords and Bing Ads. Bing Ads is microsoft advertising strategy on internet using PPC advertising strategy.
While other options are not correct because:
technorati search does not allow you to apply these concepts because it searches the list of blogs on the internet.
Radian6 is a social media monitoring platform for marketers to study customer opinions on their products in real-time.
Answer:
A
Explanation:
This is for plato
_____ is a set of processes many companies use to evaluate and improve their overall operations on an ongoing basis. Usability testing Continuous Improvement Analytics System implementation
Answer:
Continuous Improvement
Explanation:
Continuous Improvement is a set of processes many companies use to evaluate and improve their overall operations on an ongoing basis. Usability testing Continuous Improvement Analytics System implementation.
What is Continuous Improvement?W. Edwards Deming used the phrase "continuous improvement" to refer to general processes of improvement and to embrace "discontinuous" improvements, or many diverse ways addressing various topics.
A subset of continuous improvement, with a more narrow focus on linear, incremental change inside an already-existing process, is continuous improvement.
Some practitioners also believe that statistical process control techniques are more closely related to continuous improvement. Constant improvement, often known as continuous improvement, is the continued enhancement of goods, services, or procedures through both small-scale and significant advancements.
Therefore, Continuous Improvement is a set of processes many companies use to evaluate and improve their overall operations on an ongoing basis. Usability testing Continuous Improvement Analytics System implementation.
To learn more about Continuous Improvement, refer to the link:
https://brainly.com/question/15443538?
#SPJ3
How do the different layers of e protocol hierarchy interact with each other? Why do we need to have two different layers that work on error detection and correction?
what can you say about the age of oceanic crust near and far from the mid oceanic rdge
Answer:
The closer crust at the Mid Atlantic Ridge is newer, and the farther the crust is older.
Explanation:
The Mid Atlantic Ridge produces new crust, and pushes away older crust, which means the farther away the older.
What lets the computer's hardware and software work together?
Answer:
Essentially, computer software controls computer hardware. These two components are complementary and cannot act independently of one another. In order for a computer to effectively manipulate data and produce useful output, its hardware and software must work together.
Explanation:
Hope you understand it :)
The interface which lets the computer's hardware and software work together is the :
Operating SystemAccording ot the given question, we are asked to show the interface which lets the computer's hardware and software work together.
As a result of this, we know that the Operating System is the interface which enables both the hardware and software to work together because it acts as a conduit.
There are different versions of OS which includes:
Windows 7Windows VistaWindows XpWindows 10, etcTherefore, the correct answer is Operating System
Read more about Operating System here:
https://brainly.com/question/20870614
Raj’s computer just crashed and he lost most of his files. What should he do to avoid this problem in the future?
He should inspect the power and connection.
He should check all the cords and cables.
He should delete his browsing history.
He should back up his data regularly.
Answer:
Back up his data regularly.
Explanation:
Power and internet can go out at anytime
Cords (unless they are to a hard drive) is irrelevant in this situation
Browsing history is also irrelevant in this situation
I might be wrong about this, but that is the best solution in my opinion.
Hope this helps!
What is the most basic way to create a query?
What is one way to calm your feelings before taking
a test?
Answer:
For me I chew gum if avaliable and if it's not I think of something funny
Explanation:
How does technology improve productivity at work?
Answer:
Explanation:
Technology also empowers employees to progress through their own personal system of goals and provides for the implementation of productivity trends through individuals, teams, and the broader organization. This method of analyzing and tracking employee performance can also be used to foment friendly competition
Answer:
it helps you get things done faster and more eficiently by providing useful tools and helping you communicate and collaborate more easily
Explanation:
Jack has a fear of getting up in front of a group of people and giving a presentation when he gave his last presentation he taught quickly which made it hard for people to understand him what constructive criticism could you give Jack?
Answer:
You do not have confidence in your ability, and it shows. You need to get training on presenting.
Explanation:
Answer:
You did an amazing job on the research. When I present, I find it helpful to take a deep breath. It helps me relax and slow down, which helps my audience. (I haven't taken the exam yet. When I complete the exam I'll return to say if this is correct or not.) IT WAS CORRECT!!!
Explanation:
I want to emphasize that the question stated constructive criticism. If you say you don't have confidence and it shows. He could receive the criticism the wrong way. When giving constructive criticism your goal is to help.
QUESTION : John travels a lot and he needs to access his documents and services on the go. Which of these technologies allows his to access documents and software while on the move?
!!MUTI ANSWER QUESTION BTW!!
A.cloud computing
B.grid computing
C.mobile computing
D.green computing
E.virtualization
Answer:
mobile computing
Explanation:
list any five feature of drwing toolbar
Line, arrow, rectangle, ellipse, text, vertical text, curve, stars are all possible answers -hope this helped, have a good night!!
Answer:
The tools in this part of the Drawing toolbar are:
Select: selects objects. To select multiple objects click on the top leftmost object and while keeping the mouse button pressed, drag the mouse to the bottom rightmost object of the intended selection. A marching ants rectangle identifying the selection area is displayed. It is also possible to select several objects by pressing the Control button while selecting the individual objects.
Line: draws a straight line.
Arrow: draws a straight line ending with an arrowhead. The arrowhead will be placed where you release the mouse button.
Rectangle: draws a rectangle. Press the Shift button to draw a square.
Ellipse: draws an ellipse. Press the Shift button to draw a circle.
Text: creates a text box with text aligned horizontally.
Vertical text: creates a text box with text aligned vertically. This tool is available only when Asian language support has been enabled in Tools > Options > Language Settings > Languages.
Curve: draws a curve. Click the black triangle for more options, shown below. Note that the title of the submenu when undocked is Lines.