Answer:
The term "word processor" is used to describe software that allows us
documents.
O TrueO False
Explanation:
You're welcome.
Do you think GE will become one of the top 10 U.S. software companies? Why or why not?
Answer: I do belive GE will be one of the top 10 software companies because each year the software side of GE is growing 20 perecnt per year which is a big deal!
Explanation:
There are different kinds of firms. I think GE will become one of the top 10 U.S. software companies. The world is gradually turning to the production of electric cars and much more appliances and with this, I believe they would grow to the top 10 in no time.
General Electric Company (GE) is known to be one of the top American multinational conglomerate that is seen in New York State.It has its headquartered in Boston and thy have been ranked 33rd in the 2020 ranking, among the Fortune 500 in the United States using their gross revenue.
Learn more about General Electric Company from
https://brainly.com/question/26379157
Complete this truth Table. Write a program that you can enter from the keyboard, a 1 or 0 into three Boolean variables, A,B,C. Write an if statement that tests the condition ( (A or B ) and C ). Run the program 8 separate times, testing each of the following 8 combinations. Write the results below in the following truth table.
Module 9-Alternative Sequences and Complex logical Criteria v17 (1).pdf. Adobe Acrobat Reader DC
File Edit View Window Help
Home Tools Module 9 - Altema...X
A B C (A or B ) (A or B ) and C
0 0 0
0 0 1
0 1 0
0 1 1
1 0 0
1 0 1
1 1 0
1 1 1
Answer:
Following are the code to this question:
#include<stdio.h>//defining header file
int AND(int x,int y) //defining a method AND that hold two variable in its parameter
{
if(x==1 && y==1)//defining if block to check x and y value is equal to 1
{
return 1;//return value 1
}
else //defining else block
{
return 0;//return value 0
}
}
int OR(int x,int y)//defining method OR that hold two variable in its parameter
{
if(x==0&&y==0)//defining if block to check x and y value is equal to 1
{
return 0;//return value 0
}
else //defining else block
{
return 1;//return value 1
}
}
int main()//defining main method
{
int a,b,c;//defining integer variable
int k=1;//defining integer variable k that holds a value 1
while(k<=8)//defining while loop for 8 time input
{
printf("Please insert 3 numbers in (0 0r 1):\n ");//print message
scanf("%d%d%d", &a, &b, &c);//input value
k++;//increment the value of k by 1
printf("value: %d\n",AND(OR(a,b),c));
}
return 0;
}
Output:
please find the attachment.
Explanation:
In the above-given C language code two methods "AND and OR" is declared, holds two integer variable "x and y" in its parameters, inside the method a conditional it used that can be defined as follows:
In the AND method, inside a conditional statement, if block check x and y both value is same that is 1 it will return 1 or it will goto else block in this it will return value 0. In the OR method, inside a conditional statement, if block check x and y both value is the same, that is 0 it will return 0 or it will goto else block in this it will return value 1.In the main method, four integers "a,b,c, and k" is declared in which variable "a, b, c" is used in the loop for 8 times input values from the user and print method is used to call the method and prints its return values.What is an example of conditional formatting? Cells in a row have a yellow background. Cells in a range with values under 10 have a red background. Cells in a column have green text. Cells in a worksheet have borders around their edges.
Answer:
Cells in a range with values under 10 have a red background.
Explanation:
Just took it :)
Answer:
A. Cells in a range with values under 10 have a red background.
Explanation: edge 2022
a. If the value in the Elected column is equal to the text "Yes", the formula should display Elected as the text.
b. Otherwise, the formula should determine if the value in the Finance Certified column is equal to the text "Yes" and return the text Yes if true And No if false.
=IF(Election="Yes","Election",IF(Finance Certified="Yes","Yes","No")) You can accomplish this by nesting one IF function inside of another IF function. The outer IF function determines whether "Yes" or "No" is the value in the Elected column.
How do you utilize Excel's IF function with a yes or no decision?In this instance, cell D2's formula reads: IF
Return Yes if C2 = 1; else, return No.
As you can see, you may evaluate text and values using the IF function. Error evaluation is another application for it.
What does Excel's between function do?You can determine whether a number, date, or other piece of data, such text, falls between two specified values in a dataset using the BETWEEN function or formula. A formula is employed to determine whether.
To know more about function visit:-
https://brainly.com/question/28939774
#SPJ1
1. Software that is designed to intentionally cause harm to a device, server, or network is A. outware B.loggerware C.
attackware D. malware Answer:
2. Some examples of malware include: A. robots, viruses, and worms B. trojans, worms, and bots C. computerware,
worms, and robots D.worms, system kits, and loggerware Answer:
3. Viruses and worms can affect a system by A. deleting hard drives B. slowing down the system C. improving system
functions D. producing fake applications Answer:
4. One tool that hackers use to get sensitive information from victims is/are A. loggerware B. keyloggers C.robots D.
phishing Answer:
5. One key feature of malware is that it A. can only work individually B. can only work on certain operating systems C.
can work jointly with other malware types D. can always be stopped by anti-malware software Answer:
6. One vulnerability that makes computers susceptible to malware is A. using anti-malware software B. using password
protection C. using old versions of software D. using encryption on sensitive files Answer:
7. Malware could A. cause a system to display annoying pop-up messages B. be utilized for identity theft by gathering
personal information C. give an attacker full control over a system D. all of the above Answer: -
8. Malware is a combination of which two words? A malevolent and software B. malignant and software C.
maladapted and software D. malicious and software Answer:
9. The most common way that malware is delivered to a system is through the use of A USB sticks B. damaged
hardware C. emails/attachments D.updated software Answer:
10. Mobile malware is A. malware that moves from one device to another B. malware that moves to different areas in
one system C. malware that deactivates after a period of time D. malware that infects smartphones and tablets
Answer:
Answer:
Explanation:
1. D Malware causes harm, the other answers seem irrevelant.
2. B Because they all can cause harm to a server, device or network. (trojan for device, worm for device and bots for networks)
3. B I haven't heard of viruses deleting hard drives, but lots of viruses do slow
down your computer.
4. D Phishing is a way to obtain data so yes.
5. ? This one is wierd... We can rule out D because that's not always true but you have to decide this on your own.
6. Obviously C? Using old versions can make your computer more
susceptible to malware.
7. D Because all of those can be uses.
8. D Malicous software
9. This is a hard one... Not D, Most likely not B and C is probably more
common.
10. D It's MOBILE malware
what do you type in the terminal then? for c++ 4-4 on cengage
In this exercise we have to use the knowledge of computational language in C++ to write a code that write my own console terminal in C++, which must work .
Writting the code:int main(void) {
string x;
while (true) {
getline(cin, x);
detect_command(x);
}
return 0;
}
void my_plus(int a, int b) {
cout << a + b;
}
void my_minus(int a, int b) {
cout << a - b;
}
void my_combine(string a, string b) {
?????????????;
}
void my_run(?????????) {
???????????;
}
void detect_command(string a) {
const int arr_length = 10;
string commands[arr_length] = { "plus", "minus", "help", "exit" };
for (int i = 0; i < arr_length; i++) {
if (a.compare(0, commands[i].length(), commands[i]) == 0) {
?????????????????????;
}
}
}
See more about C++ at brainly.com/question/19705654
#SPJ1
which of the following best explains the relationship between the internet and the world wide web? responses both the internet and the world wide web refer to the same interconnected network of devices. both the internet and the world wide web refer to the same interconnected network of devices. the internet is an interconnected network of data servers, and the world wide web is a network of user devices that communicates with the data servers. the internet is an interconnected network of data servers, and the world wide web is a network of user devices that communicates with the data servers. the internet is a local network of interconnected devices, and the world wide web is a global network that connects the local networks with each other. the internet is a local network of interconnected devices, and the world wide web is a global network that connects the local networks with each other. the internet is a network of interconnected networks, and the world wide web is a system of linked pages, programs, and files that is accessed via the in
The World Wide Web is a collection of connected documents, software, and files that can be accessed through the Internet.
What connection exists between the Internet and the World Wide Web?The pages you view while online at a device are known as the world wide web, or simply the web. However, the internet is the collection of interconnected computers that powers the internet and facilitates the transfer of information and emails. Consider the internet as the highways that link cities and towns.
What connection exists between the Internet and this quiz about the World Wide Web?A public, interconnected worldwide network of computer networks, the internet. - A graphical user interface to information stored on the web on internet-connected PCs operating web servers. An element of the internet is the web.
To know more about world wide web visit:-
https://brainly.com/question/20341337
#SPJ4
Evaluate when to use Object Oriented design methodology
Answer:
yes
Explanation:
it's very interesting
How technology works?
First of all, technology refers to the use of technical and scientific knowledge to create, monitor, and design machinery. Also, technology helps in making other goods.
5 Major of computer application
Answer:
Basic Applications of Computer
1 ) Home. Computers are used at homes for several purposes like online bill payment, watching movies or shows at home, home tutoring, social media access, playing games, internet access, etc.
2 ) Medical Field.
3 ) Entertainment.
4 ) Industry.
5 ) Education.
Explanation:
Hope it helps you
Mark my answer as brainlist
have a good day
Which of the following is the MOST important reason for creating separate users / identities in a cloud environment?
Answer:
Because you can associate with other
Answer:
Explanation:
To avoid cyberbully
What is the Output of this qbasic program
Answer:
The output will be: 10
Explanation:
Let us look at the code line by line
CLS
This line will clear the screen before output.
LET A = 10
This line will assign the value 10 to A
LET B=20
This line will assign the value 20 to B
LET C = (A+B)/3
This line will first calculate the value of sum of A and B, divide it by 3 and then store it in C.
\(A+B = 10+20 = 30\\(A+B)/3 = 30/3 = 10\)
The value 10 will be stored in C
LET D = C^2
This line will calculate the square of value of C and store it in D
So the value in D will be: 10^2 = 100
PRINT C
This will print the value of C on screen.
The output will be: 10
edhesive, 8.6 code practice question 2
Answer:
what's the question though
Answer:
What are the questions? I cannot answer you without you adding them.
Based on the projected revenue in column I, you want to determine each room's projected room classification.
In cell J6, using a lookup function, enter a formula to determine the projected room classification based on the projected quarterly revenue after renovations in cell I6. Use the named range RoomClassification when entering this formula.
Copy this formula through cell J10.
To get the expected room classification based on the quarterly revenue in cell I6, use the VLOOKUP function in cell J6 with the RoomClassification designated range. Formula copy through J10.
Does VLOOKUP check the last column in the chosen range for the lookup value?Keep in mind that for VLOOKUP to function properly, the lookup value must always be in the range's first column. For instance, if cell C2 contains the lookup value, your range should begin with C. the range's column number where the return value is located.
To utilise the VLOOKUP function in the table array, which column should lookup value be placed in?The entry in a list's first column that you're looking for is represented by the Lookup value parameter. The list is the Table array argument.
To know more about function visit:-
https://brainly.com/question/28939774
#SPJ1
use the drop-down menus to complete the statements about using column breaks in word 2016
1,2,1,3
Explanation:
layout
section
number
more options
The complete statement can be columns and column break are layout feature. Column breaks can be inserted into a section of the document. Under layout tab, one can change the number of columns, and by clicking more options, one can open the column dialog box.
What is layout?Layout is the process of calculating the position of objects in space under various constraints in computing. This functionality can be packaged as a reusable component or library as part of an application.
Layout is the arrangement of text and graphics in word processing and desktop publishing. The layout of a document can influence which points are highlighted and whether the document is visually appealing.
The entire statement can be divided into columns, and column breaks are a layout feature.
A section of the document can have column breaks. The number of columns can be changed under the layout tab, and the column dialog box can be opened by clicking more options.
Thus, these are the answers for the given incomplete sentences.
For more details regarding layout, visit:
https://brainly.com/question/1327497
#SPJ5
if you want to assign a user the permission to create schema and run ALTER or any user, what role should you assign to that user?
A. dp_backupoperator
B. db_accessadmin
C. db_securityadmin
D. db_datawriter
As a database administrator, if you want to assign a user the permission to create schema and run ALTER or any user, the role should you assign to that user is "db_accessadmin" (Option B)
What does it mean to run ALTER?In SQL, the ALTER command is used to modify a table, view, or the whole database. The ALTER command in SQL allows us to add, change, and delete constraints, columns, and indexes.
It is to be noted that SQL is a computer language developed for managing data in a relational database management system or for stream processing in a relational database management system.
Learn more about database administrator:
https://brainly.com/question/13040754
#SPJ1
HELP
What are glue languages?
A) coding languages
B) C++
C) Java
D) scripting languages
Answer:
First of all, A programming language known as "glue language" is created especially for managing and writing code that joins various software components.
Explanation:
The answer would be Option number "A" because it says coding languages.
please give me a crown for this pleaseee
What is the purpose of saving code snippets?
A stores code for later re-use
B provides the application users more flexibility
C allows you to make the application available in different languages
D makes the application more accessible
Answer:
A stores code for later re-use
Explanation:
To find - What is the purpose of saving code snippets?
Solution -
Code Snippet" is used to describe a small portion of re-usable source code, machine code, or text.
They allow a programmer to avoid typing repetitive code during the course of routine programming.
So,
The correct option is - A stores code for later re-use
Need help with Exercise 5 (JAVA)
Using knowledge in computational language in JAVA it is possible to write a code that install java and set java home to point to the java installation directory.
Writting the code:
For Maven I tried :
1. open cmd
2. type mvn -version
3. Error appeared :
C:\Users\Admin>mvn -version
ERROR: JAVA_HOME is set to an invalid directory.
JAVA_HOME = "C:\Program Files\Java\jre7\bin"
Please set the JAVA_HOME variable in your environment to match the
location of your Java installation
For ANT I tried and worked :
1. open cmd
2. type mvn -version
3. Apache Ant(TM) version 1.9.1 compiled on May 15 2013
There are multiple ways to copy elements from one array in Java, like you can manually copy elements by using a loop, create a clone of the array, use Arrays. copyOf() method or System. arrayCopy() to start copying elements from one array to another in Java.
See more about java at:
brainly.com/question/12975450
#SPJ1
Which of the following redirection operators appends a program's standard output to an existing file, without overwriting that file's original contents?
|
2>
&>
>
>>
The ">>" operator is the correct answer when it comes to the following redirection operators that append a program's standard output to an existing file without overwriting that file's original contents. Therefore the correct option is option E,
Output redirection is the process of directing the output of a command or script to a file instead of the screen. This could be useful for preserving output data for future reference or for processing by other programs, among other reasons.
The '>' operator: This redirection operator overwrites a file's current content with the command's output. The operator does not append to the end of a file but instead replaces it with the current command's output. In general, this redirection operator creates a new file if the specified file does not exist.
In other words, it can be used to capture all errors generated by a command so that they can be saved for later analysis.>> operator: This redirection operator is used to append output from a command to the end of a file rather than overwriting the entire contents of the file, as the '>' operator does.
This redirection operator appends to the file specified in the argument rather than replacing it.
For such more question on operator:
https://brainly.com/question/28968269
#SPJ11
Which of the following statements is a possible explanation for why open source software (OSS) is free? A. OSS makes money by charging certain large corporations for licenses. B. OSS is typically lower quality than proprietary software. C. The OSS movement wants to encourage anyone to make improvements to the software and learn from its code. D. The OSS movement is funded by a private donor so it does not need to charge for its software licenses.
The statement that represents a possible explanation for why open-source software (OSS) is free is as follows:
The OSS movement is funded by a private donor so it does not need to charge for its software licenses.Thus, the correct option for this question is D.
What is open-source software?Free and open-source software (FOSS) is a term used to refer to groups of software consisting of both free software and open-source software where anyone is freely licensed to use, copy, study, and change the software in any way, and the source code is openly shared so that people are encouraged to voluntarily improve.
Open-source software (OSS) is computer software that is released under a license in which the copyright holder grants users the rights to use, study, change, and be marked by the user for a specific purpose in order to perform particular functions.
Therefore, the correct option for this question is D.
To learn more about Open-source software, refer to the link:
https://brainly.com/question/15039221
#SPJ1
Look at the picture, list down the things you must do to make it more organize
Answer:
The electrical cable
Explanation:
The most dangerous is the electrical cable to be organised as much as you can as in case any damage or not double insulation could cause a harm to the people.
What situations might call for nontraditional presentation distribution methods? Check all that apply. web-based training VOIP (Voice over IP) meetings e-books on-the-job training distance education O e-learning informal learning
Answer:
I. Web-based training
II. VOIP (Voice over IP) meetings
III. Distance education
IV. e-learning
Explanation:
PowerPoint application can be defined as a software application or program designed and developed by Microsoft, to avail users the ability to create various slides containing textual and multimedia informations that can be used during a presentation.
Some of the features available on Microsoft PowerPoint are narrations, transition effects, custom slideshows, animation effects, formatting options etc.
A nontraditional presentation distribution method typically involves the use of digital based platforms for the presenting informations to the audience.
Hence, the situations that might call for nontraditional presentation distribution methods include;
I. Web-based training
II. VOIP (Voice over IP) meetings
III. Distance education
IV. e-learning
Answer:
(A)
(B)
(E)
(F)
Explanation:
web-based training
VOIP (Voice over IP) meetings
distance education
e-learning
Please Help 50 points
10. The amount of risk involved in driving is determined by (1 point)
O the level of control you have.
the insurance premium you pay.
O the type of vehicle you drive.
O the probability of collision.
Answer: The amount of risk involved in driving is determined by the probability of collision.
Explanation:
The driver fitness check does NOT normally involve ________.
A. checking the vehicle's odometer
B. checking you are mentally alert
C. ensuring you are emotionally stable
D. preventing potential distractions
Answer:
A
Explanation:
The fitness check checks how prepared the driver is not what how far the car has gone.
Answer:
A
Explanation:
Just got it right on drivers ed
Read string integer value pairs from input until "Done" is read. For each string read, if the following integer read is less than or equal to 45, output the string followed by ": reorder soon". End each output with a newline.
Ex: If the input is Tumbler 49 Mug 7 Cooker 5 Done, then the output is:
Mug: reorder soon
Cooker: reorder soon
The program to Read string integer value pairs from input until "Done" is read. For each string read, if the following integer read is less than or equal to 45, output the string followed by ": reorder soon" is given below.
Here's a Python program solution to your problem for given input:
while True:
# Read string integer pairs from input
try:
name = input()
if name == "Done":
break
value = int(input())
except ValueError:
print("Invalid input format")
continue
# Check if the value is less than or equal to 45
if value <= 45:
print(name + ": reorder soon")
Thus, this program reads string integer pairs from input until "Done" is read. For each pair, it checks if the integer value is less than or equal to 45.
For more details regarding programming, visit:
https://brainly.com/question/11023419
#SPJ1
how many jobs can you get without a college degree
A virus is NOT a software * True or False
Answer:
false
Explanation:
website is a collection of (a)audio files(b) image files (c) video files (d)HTML files
Website is a collection of (b) image files (c) video files and (d)HTML files
What is websiteMany websites feature a variety of pictures to improve aesthetic appeal and provide visual substance. The formats available for these image files may include JPEG, PNG, GIF, or SVG.
To enhance user engagement, websites can also introduce video content in their files. Web pages have the capability to display video files either by embedding them or by providing links, thereby enabling viewers to watch videos without leaving the site. Various formats such as MP4, AVI and WebM can be utilized for video files.
Learn more about website from
https://brainly.com/question/28431103
#SPJ1
Help me with this ……..
Answer:
So is this talking about this pic?