Answer: It's basically using operators to determine if the code (usually in an if statement) is true or false.
explain how communication managerial efficiency
Answer:
The efficiency of manager depends upon his ability to communicate effectively with the members of his organisation. It is only through communication that management conveys its goals and desires, issues instructions and orders, allocates jobs and responsibility and evaluates performance of subordinates.
pls tag me brainliest
Philip took pictures with his smartphone and save them into his computer unless you delete the photos from the computer they will remain strong because the a computer has a
Answer:
Storage drive
Explanation:
1. Philip took pictures on a smartphone; given
2. Philip saved pictures from smartphone onto computer; given
Philip saved the pictures onto the computer. This means that the data was transferred from the phone's storage drive onto the computer's storage drive. Storage drives are strong/hard storage mediums. This means that the storage drive will not be deleted on each start-up, unlike weak/soft storage of random access memory (RAM).
HDD = Hard Disk Drive; strong/hard medium (non-volatile); a mechanical actuator etches data into magnetic platters.
SSD = Solid State Drive; strong/hard medium (non-volatile); NAND logic gates on electronically erasable programmable read-only memory (EEPROM) chips are controlled through a SSD controller
RAM = Random Access Memory; weak/soft medium (volatile); Double Data Rate (DDR) Synchronous Dynamic Random Access Memory modules (SDRAM) are controlled most commonly through a central processor unit (CPU) or through a dedicated memory chip (specialized tasks most commonly).
What is printed when the following code has been executed?
int x = 15;
int y = 4;
System.out.println((2 * x + y) % x);
15
4
34
2
19
Please help. I don't know how to do this.
Answer: I need to know what the problem is tho.
Explanation: (0L0)
Which option is the output of the Functional Requirements of the SRS document?
A.
program modules
B.
data formats
C.
storage capabilities
D.
hardware interfaces
E.
communication interfaces
Answer:
E
communication interface
Please answer the following question in Verilog.
To test our functions we will generate a 3-bit vector that counts up by one every cycle which we will use as the inputs to the decoder. The decoder output will then be fed into the inputs of the encoder to produce an inverted version of the original 3-bit test vector. For every input vector you should toggle the enable signal to both the encoder and decoder function which can be easily done by using the clock waveform used to determine when to increment the input vector as the enable signal as well.
Answer:
345678909 my number
Explanation:
what is keyboard buffer tell me the answer nicely and I will give brainlitst
Answer:
A keyboard buffer is a very small partition of memory that is usually stored in the computer memory in random access memory (RAM) and captures all the keystrokes made on a keyboard.
Explanation:
If known vulnerabilities in software are entry points for an attacker, why are the software vulnerabilities not corrected before the software is released?
Answer:
we dont knoqw
Explanation:
The developer hasn't had enough time to address them, these flaws are referred to as "zero days." is the software vulnerabilities not corrected before the software is released.
What is software?Software is a set of instructions, information, or computer programs that are used to operate equipment and perform certain tasks. Hardware, which is a term for a computer's external components, is the opposite of it. In this usage, "software" refers to the running scripts, programs, and apps on a device.
The procedures and software that make it possible for a computer or other electrical equipment to operate are referred to as software. Examples of the processes and programs that make up a computer system are Excel, Windows, and iTunes.
System software consists of the programs and processes required to run the computer. System software, utility software, and application software are the three subcategories of software.
Thus, The developer hasn't had enough time to address them.
For more information about software, click here:
https://brainly.com/question/985406
#SPJ2
What is the purpose of a computer network needs assessment? to evaluate how to move from the current status to the desired goal to determine what steps employees can take to increase company revenue to analyze which workers need more training to improve their performance to compare worker productivity
Answer:
to evaluate how to move from the current status to the desired goal
Where do you place the logical test argument in an IF function formula?
O before the IF function
O the first argument listed after IF
the second argument listed after IF
O the third argument listed after IF
Intro
Don
Answer:
the first argument listed after IF
yw
how do you identify the active file if more than one has been opened simultaneously and are being displayed on the screen
Explanation:
On the View tab, in the Window group, click New Window.
On the View tab, in the Window group, click View Side by Side .
In the workbook window, click the worksheets that you want to compare.
To scroll both worksheets at the same time, click Synchronous Scrolling in the Window group on the View tab.
Note This option is available only when View Side by Side is turned on.
Tips
If you resize the workbook windows for optimal viewing, you can click Reset Window Position to return to the original settings.
To restore a workbook window to full size, click Maximize at the upper-right corner of the workbook window.
View two worksheets of different workbooks side by side
Open both of the workbooks that contain the worksheets that you want to compare.
On the View tab, in the Window group, click View Side by Side.
We know that February has either 28 or 29 days, but there is a year in the future, February will have 30 days
What exactly is this year?
Answer:
39 days is the offensive number
Explanation:
cuz calendar no have that numer
what is a program or collection of programs that enable a person to manipulate a visual images on a computer
IT professionals ensure servers connected to the network operate properly. (2 points) True False
Answer:
True
Explanation:
Thats one of their most important jobs
What is the relationship between the speed of an object in the amount of energy it has? explain
Advantages of communications
Answer:
promotes team building
creates better relationship
Answer:
➨It is quick in obtaining feedback once delivered. ➨It provides complete understanding of communication delivered and there is chance to make it more clear in case of doubts in interpretation of words or ideas. ➨It is more reliable method of communication. ➨It is flexible and effective for all.
which is used for making documentation file from microsoft office package
Answer:
the word is use for making docs
Answer:
Explanation:
To create a document, open Word, select a blank document or template, and start typing. Discover professionally designed templates for Microsoft Word.
Write a program in c++ to input a number print the sum of all the odd factors.
Answer:
#include <bits/stdc++.h>
using namespace std;
//calculate sum of odd factors
int sum(int n) {
int res = 1;
while (n % 2 == 0)
n = n/ 2;
for (int i = 3; i <= sqrt(n); i++)
{
int count = 0, total = 1 ;
int temp = 1;
while (n % i == 0) {
count++;
n = n / i;
temp *= i;
total += temp;
}
res = res*total;
}
if (n >= 2)
res *= (1 + n);
return res;
}
int main()
{
int n = 20;
cout<<"sum of odd factors is : ";
cout <<sum(n);
return 0;
}
Define cloud, and explain the three key terms in your definition. Compare and contrast cloud-based and in-house hosting using the comparison presented in Q6-1 as a guide. In your opinion, explain the three most important factors that make cloud-based hosting preferable to in-house hosting.
Cloud computing is making hardware, software and data available on demand via a network.
The cloud stands for a network that, with all the computers connected to it, forms a kind of 'cloud of computers', where the end user does not know how many or which computer the software runs on or where those computers stand exactly.
In this way, the user no longer needs to be the owner of the hardware and software used and is therefore not responsible for maintenance. The details of the information technology infrastructure are hidden from view and the user has his own virtual infrastructure, scalable in size and possibilities.
Learn more in https://brainly.com/question/8645052
Identify the following verb by number and person by checking on the appropriate boxes.
SHE WANTS!!
second person
singular
plural
same form for both singular and plural
third person
first person PLEASE HELP!!!!!! LAUNGUAGE ARTS
Answer:
Singular and third person
Explanation:
Second person: this answer is not correct as second person refers to pronouns such as “you, yourself” like in a recipe.
Singular: this is correct as a singular verb is when there is only one subject. You can also tell it’s a singular verb as the present tense ends with a “s”.
Plural: this is not plural because there is only one subject. Plus the present tense of the verb ends with an s so it’s not a plural verb. Plural verb’s present tense never ends with an s.
Third person: this is correct because the subject of the sentence is someone else. Third person pronouns include: “her, she, he, him, they, then” basically, third person is when you talk about someone else.
First person: this answer is not correct because first person refers to one’s self. So first person pronouns are: “I, me, myself”
12zener diode is connected in a series with resistance of 150ohms a load resistance of 1kiloohms is connected across the zener diode the maximum zener current should not exceed 20mA and the minimum zener current is nearly zero .calculate the operating range of the input voltage?
Answer:
please answer my question by visiting my profile please I want it urgently
(a) Distinguish between hyperlink and homepage.
For what purpose does a programmer use flowcharts and pseudocode?
A- to execute code
B- to translate code into assembly language
C- to communicate the steps needed to write a program
D- to communicate methods to test code
Types of cloud storag?
Answer:
There r 3 types of data storage: object storage, file storage, and block storage. Each offers their own advantages and have their own use cases: Object Storage - Applications developed in the cloud often take advantage of object storage's vast scalablity and metadata characteristics.
ctivity 2: irections: Convert the given value to unit asked. 1. 1 tb 2. 500 mb 3. 200 kb 4. 1,000,000 bytes 5. 500 gb mb gb byte gb mb
help please
Answer:elab
Explanation:
Number 1 is what part of an application
Title Bar
Ribbon
Quick Access Toolbar
Status Bar
Answer:
The correct answer is Quick acces tool bar. You litteraly probably don't even use brainly anymore lol.
Explanation:
I absolutly confirm this is correct.
The number 1 is the part of an application that is considerably known as the Quick Access Toolbar. Thus, the correct option for this question is C.
What does the Quick Access toolbar contain 1 point?The customizable Quick Access Toolbar contains a set of commands that are independent of the currently displayed tab on the ribbon. You can move the Quick Access Toolbar from one of the two possible locations, and you can add buttons that represent commands to the Quick Access Toolbar.
According to the context of this question, the quick access toolbar is located in the title bar of the application window but can be configured to display below the ribbon usually consisting of the number 1 part of an application.
Therefore, number 1 is the part of an application that is considerably known as the Quick Access Toolbar. Thus, the correct option for this question is C.
To earn more about Quick access toolbar, refer to the link:
https://brainly.com/question/13523749
#SPJ6
Hey all! How would you write write this code?
Write a C++ program using variables and loops in order to implement the Hi-Low strategy of card counting and keep a running count. The Hi-Low strategy of card counting assigns one of three values to a card, based on its face value. The table below breaks down these values. FACE VALUE ASSIGNEDVALUE 2, 3, 4, 5, 6 +1 7, 8, 9 0 10, J, Q, K, A -1 In a typical game of Blackjack, a card counter will start with a fresh deck and a count of 0. Each time a card is played, its assigned value is added (or subtracted) from what is known as the running count. The running count rolls over from hand to hand. For instance, if the first 7 cards of a game were: Queen, Jack, 4, 6, 7, Jack, 9, then the running count would be (0) -1 -1 + 1 + 1 + 0 –1 + 0 =-1
The program is an illustration of loops.
Loops are used to perform repetitive actions.
The program in C++ where comments are used to explain each line, is as follows:
#include <string>
#include <iostream>
using namespace std;
int main(){
//This declares all variables
int n, count = 0; string k;
//This gets input for the number of cards
cin>>n;
//The following is repeated n-times
for(int i = 0;i <n;i++){
//This gets input for the current card value
cin>>k;
//If the card is a digit
if(isdigit(k[0])){
//This checks if the card number is between 2 and 6 (inclusive)
if(stoi(k) >= 2 && stoi(k) <= 6){
//If yes the face value is increased by 1
count+=1;
}
//This checks if the card number is 10
else if(stoi(k) == 10){
//If yes the face value is decreased by 1
count-=1;
}
}
//This checks if the card number is J, Q, K or A
else if (k == "J" || k == "Q" || k == "K" || k == "A") {
//If yes the face value is decreased by 1
count-=1;
}
}
//This prints the face value
cout<<count;
return 0;
}
At the end of the program, the face value is printed.
Read more about similar programs at:
https://brainly.com/question/24578223
24. Describe the role of keyboard and mouse in computer? What are the fundamental similarity and differences between them?
Answer: They give input
Explanation: The keyboard and the mouse controll the computer, by giving inputs. Similarity - They both give inputs
Difference - They give inputs in different ways
What do you understand by the term input, output, processing and storage.
Explanation:
The hardware responsible for these four areas operates as follows: Input devices accept data in a form that the computer can use; they then send the data to the processing unit. ... Output devices show people the processed data-information in a form that they can use. Storage usually means secondary storage.
Answer:
input is any information that are given by user and output is the meaningful results that displays in screen and processing means the actions of computer to convert input into output and storage is the last stage where the data and information held for future. I hope you like the answer
how does communication promotes team building
Answer:
Effective communication within a team will build a common purpose among team members that will allow them to reach their goals. ... Strong group communication will create understanding and that understanding will create powerful relationships within a team.