It is a characteristic of an effective master that Knowledgeable. The exceptional Masters have the technical, market, or precise expertise to assist the group in its goal.
What are the traits of the Master?This is a given, in any role. However, as you're listening, comprehending, repeating, summarizing, energizing, observing, writing, simplifying, critiquing, suggesting, asserting, , presenting - all in one.
A powerful Master is a group-primarily based totally servant chief who: Exhibits leadership – Exhibits the behaviors of a Leader with a Mindset. Helps the group embody Core Values, undertake and follow Principles, and put in SAFe practices.
Read more about the master:
https://brainly.com/question/4763588
#SPJ1
2. Why do old video games have large pixels and images with jagged edges?
Because that was the style at the time.
Because it allowed for larger files.
Because it allowed for smaller files.
Because smaller pixels didn't exist.
Answer:
A
Explanation:
cuz yea
The layer of the ISO/OSI responsible for source to destination delivery.
Options:
(a) transport
(b) network
(c) data-link
(d) session
Answer:
(b) network
Explanation:
The Network Layer is the OSI Model's third layer. It is in charge of packet transport from source to destination or host to host across various networks. The layer receives data from the transport layer, adds a header to it, and sends it to the data link layer.
The layer of ISO/OSI that enables someone to access network is
Options:
(a) application
(b) data-link
(c) physical
(d) session
Answer:
The network layer essentially enables a user to connect to the internet or any available network. From what I understand, the session layer should be the answer since it primarily means establising a connection with a server which only takes place over a network.
Explanation:
changing the ___ sometimes can help you find a contact information more quickly
Numerous engineering and scientific applications require finding solutions to a set of equations. Ex: 8x + 7y = 38 and 3x - 5y = -1 have a solution x = 3, y = 2. Given integer coefficients of two linear equations with variables x and y, use brute force to find an integer solution for x and y in the range -10 to 10.
Ex: If the input is:
8
7
38
3
-5
-1
Then the output is:
x = 3 , y = 2
Use this brute force approach:
For every value of x from -10 to 10
For every value of y from -10 to 10
Check if the current x and y satisfy both equations. If so, output the solution, and finish.
Ex: If no solution is found, output:
There is no solution
Assume the two input equations have no more than one solution.
Note: Elegant mathematical techniques exist to solve such linear equations. However, for other kinds of equations or situations, brute force can be handy.
The brute strength method determines if each x and y value satisfies both conditions. To do this, we must iterate through each result in the specified range and insert them into both models.
What are Elegant mathematical technique?ALGORITHM :
1. Take the values of all coefficients and SET flag = FALSE
2. Run a FOR loop for x in range (-10, 11). 11 won't be included.
2a. Inside the first FOR, start the y FOR loop in range(-10,11). 11 won't be included
2b. Inside the y FOR loop, check IF for a particular value of x and y both the equations satisfied.
2c. If yes, set flag TRUE and print values of x and y.
2d. ELSE the flag stays FALSE.
END FOR Y
END FOR X
3. Check if flag = FALSE, then print NO SOLUTION
PYTHON CODE :
a=int(input()) #taking input for each coefficient
b=int(input())
c= int(input())
a1= int(input())
b1= int(input())
c1= int(input())
flag = False
for x in range(-10,11): #checking for all values of x in range -10 to 10
for y in range(-10,11): #checking for all values of x in range -10 to 10
if (a x + b y – c == 0) and (a1*x + b1*y - c1 == 0) : #checking if the x and y values satisfy the equation
flag = True #setting the flag if solution is found
print('Solution : x = {-10, 10}, y = {-10, 10}'.format(x,y)) #if they satisfy print x & y
if flag = False : #if flag stays false, that means there is no solution
print('No solution')
OUTPUT : The output is given below.
More about the Elegant mathematical technique link is given below.
https://brainly.com/question/27934739
#SPJ1
4.24 LAB: Exact change
Write a program with total change amount as an integer input, and output the change using the fewest coins, one coin type per line. The coin types are Dollars, Quarters, Dimes, Nickels, and Pennies. Use singular and plural coin names as appropriate, like 1 Penny vs. 2 Pennies.
Ex: If the input is:
0
or less than 0, the output is:
No change
Ex: If the input is:
45
the output is:
1 Quarter
2 Dimes
The Exact change program is an illustration of conditional statements;
Conditional statements are used to make decisions
The Exact change programThe Exact change program written in java programming language, where comments explain each action purposes
import java.util.*;
public class Money{
public static void main(String [] args){
Scanner input = new Scanner(System.in);
// Declare Variables
int amount, dollar, quarter, dime, nickel, penny;
// Prompt user for input
System.out.print("Amount: ");
amount = input.nextInt();
// Check if input is less than 1
if(amount<=0) {
System.out.print("No Change"); }
else {
// Convert amount to various coins
dollar = amount/100; amount = amount%100;
quarter = amount/25; amount = amount%25;
dime = amount/10; amount = amount%10;
nickel = amount/5; penny = amount%5;
// Print results
if(dollar>=1) {
if(dollar == 1) { System.out.print(dollar+" dollar\n");}
else { System.out.print(dollar+" dollars\n"); }
}
if(quarter>=1){
if(quarter== 1){System.out.print(quarter+" quarter\n");}
else{System.out.print(quarter+" quarters\n");}
}
if(dime>=1){
if(dime == 1){System.out.print(dime+" dime\n");}
else{System.out.print(dime+" dimes\n");} }
if(nickel>=1){
if(nickel == 1){System.out.print(nickel+" nickel\n");}
else{System.out.print(nickel+" nickels\n");}}
if(penny>=1){
if(penny == 1) {System.out.print(penny+" penny\n");}
else { System.out.print(penny+" pennies\n"); }}}}}
Read more about conditional statements at:
https://brainly.com/question/11073037
#SPJ1
Why do we need to connect computers"
Answer:
batteries cant last connected to nothing forever probably
Write short notes on the following:
I. keyboard ii.Control unit iii.printer
Answer:
- the Keyboard:
The keyboard is a handheld device used to input alphabet, numbers, symbols and characters to a monitor. It also houses the special manipulative and function keys.
- the Control Unit:
The control unit is a component of the CPU which directs the operation of the processor.
- the Printer:
The printer is an external hardware output device which takes electronic data stored on a device and creates a hard copy.
A square QR code contains 40×40 tiny squares (pixels) where each tiny square represents a 0 or a 1. Calculate how many bytes of data can be stored on the QR code
Answer:
Explanation:
QR Codes are made of multiple rows and columns. The combination of these rows and columns makes a grid of modules (squares). There can be a maximum of 177 rows and 177 columns which means the maximum possible number of modules is 31,329. With the eye, these are just small squares and mean very little, but the exact arrangement of those modules allows the QR Code to encode its data. This means that, unlike traditional barcodes which are 1 dimensional and use 1 row of lines, QR Codes use 2 dimensions which allows them to store a lot more data in the same area of space.
When does if(x==y) execute?
A. when x is equal to y
B. when x does not equal y
C. never, it is just a check to see if x is equal to y
Answer:
A. When x is equal to y
When an AC voltage is being measured
across a 15-ohm resistor which is carrying
a current of 12 amps,
the selector switch should be set to the AC voltage position of __volts.
A. 1000 B.2 C. 20 D. 200
Answer:
D.
200
Explanation:
what was the first computer system that used color display?
Answer:
Year Event
1977 The Apple II, released in June 1977, allowed for colour display on a CRT monitor.
Explanation:
How are charts useful in Excel worksheets? Name three types of charts available in Excel and describe with an example how each might be used. What are some things you can do with a chart to make the information clearer to a reader? What are some things you can do with a chart to make it more visually appealing?
Answer:
Spread sheets
Explanation:
Charts are employed to display series of numeric data in a graphical format to help people understand large amounts of data and the relationships between them.
What is a worksheet?A worksheet is a sheet that is used as a guide in doing some work to make preliminary plans, supplementary computations, notes, or comments.
Charts are used to display a series of numeric data in a graphical format in order to help people understand large amounts of data and their relationships.
Good graphs allow for precise estimation of the quantities represented. The reader must understand the scale used to represent quantity on the graph in order to estimate quantities.
Create your graph with as few elements as possible. Color can help distinguish data sets in a graph, but avoid glaring color combinations (such as chartreuse and violet), as these can be distracting.
Vertical bars are used to describe information in column charts. They can work with a wide range of data, but they are most commonly used for information comparison. Line charts are excellent for displaying trends.
Thus, by using some things like this, one can make charts clearer.
For more details regarding worksheets, visit:
https://brainly.com/question/13129393
#SPJ2
Explain how cache (SRAM) can support CPU pipelining.
Answer:
The Pipeline Burst Cache is basically a storage area for a processor that is designed to be read from or written to in a pipelined succession of four data transfers. As the name suggests 'pipelining', the transfers after the first transfer happen before the first transfer has arrived at the processor.
When evaluating an OR operator, what is necessary for execution.
A. Only one condition can be true
B. One condition must be true
C. Both conditions must be true
Answer:
B
Explanation:
What is an operating system on an IBM computer?
a. GUI
b. Microsoft Windows
c. Mac OSX
Answer:
Microsoft Windows
Explanation:
what is processing device? write the name of processing devices
Answer:
processing device is the devise which process each And every command and run the whole system. and give instructions to various other units
CPU is the processing device.
Answer:
processing device is any device inside computer that interprets and manipulates incoming data during this stage. its name is cpu
Select the items below that are a computer
Pocket Watch
Server
Calculator
Piano
Laptop
Tablet
Answer:
Laptop is the answer.. .....
Which statement is true about the energy of electromagnetic radiation?
A.
The frequency of the emitted radiation is inversely proportional to its energy.
B.
The frequency of the emitted radiation is directly proportional to its energy.
C.
The wavelength of the emitted radiation is directly proportional to its energy.
D.
The amplitude of the emitted radiation is inversely proportional to its energy.
Answer:
b
Explanation:
b
True or False?
With search advertising, you should have a landing page with long content (around 2,000 words).
HELPPPPP
The given statement is True.
What is Search Advertising?Search Advertising is also known as search engine marketing which is an marketing technique used to place the advertisement in the search engine so that customers can review it.
The Companies who runs the business of the advertising in the search engine get a small amount of pay for such one click.
There is long content on the page of the websites containing the search advertising long with it. Therefore the statement given in the question is true.
Learn more about Search Advertising here:
https://brainly.com/question/8132328
#SPJ1
program that initialises a vector with the following string values: “what” “book” “is” “that” “you” “are” “reading”.
A program that initializes a vector with the following string values: “what” “book” “is” “that” “you” “are” “reading” are the usage of namespace std;int main().
What is a vector software program?Vector images software program permits customers to layout and manages pc photos the usage of geometric and mathematical commands, instead of clicks and strokes as utilized in drawing software program. Vector photos created the usage of those applications may be scaled indefinitely with out dropping quality.
#include #include #include the usage of namespace std;int main(); vector::iterator it; for (it = vs.begin(); it != vs.end(); it++) string tmp; while (cin.get()!='n') for (it = vs.begin(); it != vs.end(); it++) }Read more about the vector :
https://brainly.com/question/25705666
#SPJ1
1.- Make a program that loops and perform powers of 5 on each loop.
In each lap the operator is asked IF YOU WISH TO CONTINUE (1 or 0) if the operator enters a zero it will no longer continue to spin. IN CODE C++
A program that loops and performs powers of 5 on each loop.In each lap the operator is asked IN CODE C++ the C++ Program for the given hassle announcement is as follows:#include the use of namespace std.
What is the energy of a variety of?The energy of a variety of says how usually to apply the range in a multiplication. Powers also are known as Exponents or Indices. For example, eight^2 might be known as “eight to the energy 2” or “eight to the second one energy”, or simply “eight square.
C++ Program for the given hassle announcement is as follows:#include the use of namespace std;int main() > base;cout << "nEnter the exponent: "; //asks the user for keyboard input for exponent cin>>exponent; for (int i = 1; i <=exponent; i++) //iterate {through|thru|via">via 1 until exponent { num=num*base; //base is multiplied (e.g. 2*2*2.....n) until n, wherein n is exponent } cout <<"n"<strength of "<go back 0;}Sample Output:Stdin InputsRead more about the loops :
https://brainly.com/question/26497128
#SPJ1
You add a filter by condition, and set the condition to [Weight]>50. How will this affect your data? in tableau
It will only show items whose weight is over 50 is the way it will this affect data. When the computed field is utilized in the filter, only items with a weight greater than 50 are kept.
How do the person filter by condition in Tableau?There are five steps involved in it that are given below-
In the Filter Window, go to the 'Condition' tab.Select the 'By field' radio button.From the drop-down list, choose the name of the filtered field.Choose an aggregation type from the drop-down menu, such as Sum, Average, or Median.From the drop-down menu, select the operator.Thus, It will only show items whose weight is over 50
For more details about person filter by condition in Tableau, click here:
https://brainly.com/question/25531734
#SPJ1
work done by computer as per the instructions is called
Answer:
The process of storing and then performing the instructions is called “running,” or “executing,” a program. By contrast, software programs and procedures that are permanently stored in a computer's memory using a read-only (ROM) technology are called firmware, or “hard software.”
Explanation:
hope it helps you and give me a brainliest
Answer: A computer obeying its orders
Explanation:
The process of storing and then performing the instructions is called “running,” or “executing,” a program. By contrast, software programs and procedures that are permanently stored in a computer's memory using a read-only (ROM) technology are called firmware, or “hard software.”
➪ How many types of Engineering are there in the world ?
⛄
Answer:
in bohot terms engineering can be divided into four main categories chemical civil electrical and mechanical enginearing each of these types of require different skills and engineer education
There are mainly five types of engineers found in the world. Each of them has a different set of skills and knowledge concerning their relative field.
Who is called an Engineer?An Engineer may be defined as an individual who formats, designs, modifies, and creates machinery or technical equipment like software programs, construction buildings, bridges, etc.
The five types of Engineers are as follows:
Civil Engineers. Chemical Engineers.Electrical Engineers. Mechanical Engineers. Computer Engineers.Civil engineers deal with the construction of buildings, bridges dams, airports, etc. Chemical engineers are associated with developing the products such as medicines, petrochemicals, plastics, etc.
Electrical engineers design and develop the manufacturing of electrical equipment like navigation systems, radar, communication systems, electric motors, etc.
Mechanical engineers always maintain their focus on manufacturing power-producing and power-using machines like electric generators, gas turbines, refrigerators, air-conditioners, etc.
Computer engineers deal with designing, manufacturing, and examining all software operated within an institution's computer system.
All such types of engineers work in their respective fields for designing, and manufacturing products and their delivery which makes the life of an individual easy, efficient, and reliable.
Therefore, it is well described above.
To learn more about Engineers, refer to the link:
https://brainly.com/question/17169621
#SPJ1
What is wrong with this case statement -> case 2:
A. cases must be capitalized
B. cases must use a ; and not a :
C. nothing
Answer:
C: Nothing
Explanation:
Assuming this case is acting upon a switch on an integral value, there is nothing wrong with this case header.
var x = 10;
switch (x)
{
case 2:
Console.WriteLine("The value of 'x' is 2!");
}
Question 7 * What is the default powerpoint standard layout A Blank B Title slide C Title only D. Comparison
Answer:
B. Title slide layout is the default PowerPoint standard layout.
What is the result of the following code?
int x = 1;
switch(x)
{
case 1: printf( "Help" );
case 0: printf( "Me" );
break;
case 2: printf( "Hello World" );
}
A. HelpMe
B. Help
C. Help Me
D. Hello World
Answer:
B: Help
Explanation:
During the execution of this switch statement, it will print "Help" because that's the only case that matches the value of x, it will not print "Me" because that case does not match, so it will fall through that case into the break statement.
15. How many PC’s can be connected to a UPS?
Answer: Depends on the power of the computer /computers and the UPS
Explanation: For someone who had a big connected network of computers and printers we would plug the computer or server into the UPS as well as the monitor and sometimes a printer sometimes the monitor was plugged into the wall
When you get a UPS you must plug it in for a certain time could be hours or even a day. A USP has a big battery in it and you must charge it (sometimes it comes semi-charged but you must plug it in to strengthen it. )
there are two connector wires that you affix to the battery and you must put a lot of strength into it to make it secure.
So in closing, you can get away with two like a desktop and a laptop.
Read your documentation that comes with the UPS
What federal law requires manufacturers to put care labels on their garments and fabrics sold by the yard?