what is a collection of web pages containing text images audio and videos.
Answer: A website..?
Which of the statements indicates that Shane & Co. is an ethical organization?
Shane & Co. deal in manufacturing plastic cups. Despite three years of operations, they haven’t been able to even break even. The irate investors are eagerly waiting for the next financial report that is due. Shane & Co. can manipulate the figures to show growth, however they choose to display the facts as it is. They are sure to lose some of the investors on board but are willing to take the risk.
Shane & Co. deal in manufacturing plastic cups
Despite three years of operations, they haven’t been able to even break even
Shane & Co. can manipulate the figures to show growth
however they choose to display the facts as it is
They are sure to lose some of the investors on board
but are willing to take the risk
Answer:
however they choose to display the facts as it isbut are willing to take the risktest case Exercise 1: Consider the following system: A System reads four integer values from a user. The four values are interpreted as representing the lengths of the sides of quadrilateral shape. The system prints a message that states whether the shape is rectangle or square. Function: Description: Test Input Data:
The program displays if the side values of the quadrilateral is a square or rectangle. The required program is written in python 3 thus :
a = int(input('Enter integer input : '))
b = int(input('Enter integer input : '))
c = int(input('Enter integer input : '))
d = int(input('Enter integer input : '))
#the variables a, b, c, d takes prompt values from users which are used to compare if the quadrilateral is a square or rectangle.
if(a == b == c == d):
#using the assignment operator, compare the value of a, b, c and d
print('Shape is square')
#if the values are the same, the shape is a square
else :
print('Shape is Rectangle')
#otherwise, the shape is a rectangle
The sample run of the program is attached below.
Learn more : https://brainly.com/question/18405415
To break a page click the _______ tab
Answer: Page Break (or press ctrl + enter on keyboard)
Explanation:
Several small stores rent space within a larger shopping centre. The owners of the shopping centre have provided a physical network throughout the entire centre.
(a) Explain how virtual networking can be used to give each store a private logical network. Diagrams may be used in your answer.
Answer:
okay so my first question is what is this question for because I cant really answer without more info
You have been asked to store a file with personal information on it. You need to be sure that only your user account can access the file, even if other user account have been granted permissions or if the disk is stolen. What standard NTFS feature can you use
Answer:
EFS
Explanation:
________ involves breaking into a network to steal data such as customer lists, product inventory data, employee data, and other proprietary and confidential data. (1pts) Question 5 - ________ involves breaking into a network to steal data such as customer lists, product inventory data, employee data, and other proprietary and confidential data. Pretexting Phishing Hacking Spoofing
Answer:
Hey there!
Hacking involves breaking into a network to steal data such as customer lists, product inventory data, employee data, and other proprietary and confidential data.
Hacking involves breaking into a network to steal data such as customer lists, product inventory data, employee data, and other proprietary and confidential data. Pretexting Phishing Hacking Spoofing
Hope this helped! :)
explain about cyber terrorism
Explanation:
cyber terrorism is type of hacking group with give the country that are to illegal group
State one technique for overcoming external fragmentation in dynamic partitioning. Why is this technique of overcoming external fragmentation considered inefficient
Compaction often gives solutions to the issues regarding external fragmentation.
One technique for overcoming external fragmentation in dynamic partitioning is
Compaction.
The reason why this technique of overcoming external fragmentation may be inefficient is because:
External fragmentation may need a lot of compaction and it is an expensive operation. The use of contiguous allocation is often hard to fit processes into memory and also it is so difficult to grow or shrink the amount of memory allocated to a process. Compaction only takes place when relocation is dynamic, and this also is expensive.Compaction often shuffle memory notes or contents and then put or pile them up all in free memory and in one large block.
External fragmentation takes place when free memory is removed into small blocks.
Learn more from
https://brainly.com/question/23636593
define hyperlink in detail with its type
Answer:
Hyperlinks are the primary method used to navigate between pages and Web sites. ... Text hyperlink – Uses a word or phrase to take visitors to another page, file or document. • Image hyperlink – Uses an image to take visitors to another page, file or document.
What is the name of the table tools contextual tab that appears once you insert a table? Transform Design Outline Charts.
Answer: B.) Design
Explanation: just took it
Answer:
b
Explanation:
What type of access controls allow the owner of a file to grant other users access to it using an access control list
Answer:
Discretionary Access Control
Explanation:
The type of access controls allow the owner of a file to grant other users access to it using an access control list is Discretionary Access control.
What is discretionary access control?This is known to be a type of control that gives one a specific amount of access control to the use of the object's owner, or any other person.
Note that The type of access controls allow the owner of a file to grant other users access to it using an access control list is Discretionary Access control as it only gives a little access.
Learn more about Discretionary Access from
https://brainly.com/question/20038736
#SPJ2
Is it always best for a company to make decisions based on data, or are there some situations where they should not focus on data?
Answer:
data-driven decision
Explanation:
While 91% of companies say that data-driven decision-making is important to the growth of their business, only 57% of companies said that they base their business decisions on their data. Data-driven decision-making is a great way to gain a competitive advantage, increase profits and reduce costs!
To break a text string into several lines, which means that the text string continues on the next line, the _____ character should be used.
Answer:
To break a text string into several lines, which means that the text string continues on the next line, the backslash character should be used.
Helpppppp meeeeeeeeeeeee pleaseeeeee
Answer:
B
Explanation:
PATA drives, also known as ATA, ATAPI, or Integrated Drive Electronics (IDE), are the type of drives that were generally used in workstations until recently. PATA drives typically have a maximum transfer rate of 150MBps.
Cloud storage is a cloud computing model in which data are stored on remote servers accessed from the Internet, or “cloud.” For most PACS manufacturers, the cloud storage is primarily utilized as a long-term storage solution only.
What is the role of a control in a system that is functioning correctly
web browsers save website information in their _________, which helps the site load faster on future visits.
Answer: cache
Explanation:because I took the quiz
??????????????????? Help
Answer:
d) MS Office
Explanation:
Microsoft Office is a program. Think of it this way .... Your operating system is like the engine of your car.
Learning Objectives:
• understand when to use the different
print statements
• create a variable and assign it a value
• use Scanner to read in user input
• print the value of a variable using
printf
Output:
US state: Texas
Capital: Austin
The capital of Texas is Austin
Description:
Copy and paste the code below:
/*******************************************************
* Name:
* Assignment: A01
*******************************************************/
public class A01{
public static void main(String[] args){
// part1
System.out.print("x x x");
System.out.print("x o x");
System.out.print("x x x");
System.out.println();
// part2
}
}
Write your name in the comment on top. The red letters in the output are the user inputs.
This assignment consists of 2 parts.
First you demonstrate your understanding of the different print statements by modifying a
code segment. Then you read in two Strings and print a statement based on the user input.
Part1:
The code segment provided includes
three print statements that produce
the following output:
Change the code segment so that it
produces the following output:
Hint: you will need to change the number of
statements
Part2:
• Prompt the user to enter a state
• Read in the user response and assign
it to a String variable named state
Hint: before you can assign a value to the
variable state it needs to be declared
• Prompt the user to enter the name of
the capital
• Read in the user response and assign
it to a String variable named capital.
• Use printf and format specifiers to
print the following message:
The capital of state is capital
where you substitute state and capital with
the state and capital entered by the user.
Make your output look exactly like the output displayed above.
Make sure to read in the input next to the prompt but without touching it (use a blank to
separate the prompt from the user input). The output should use a single empty line to
separate the frog displayed in part1 from the output created in part2.
Answer:
take out the cord than put it back in than it shall work
DIRECTIONS: Organize your desktop. Name the 5 folders based on the files given below. Organize your own desktop by sorting the given files accordingly.
Please
I need help
Answer: Music, Documents, PowerPoints, Pictures/Videos, Audios
pretty sure nones gonna do this but please do it would gelp alot of my exams irs gonna bring me like 10 marks :(
true or false? multimedia components such as audio and video do not significantly contribute to increased computer network traffic.
Answer:
false
Explanation:
are you KIDDING ME? imagine streaming a 4k video through YT.. yeah you know how much storage and bandwidth that takes up? it is VERY BIG. this is false
multimedia components such as audio and video do not significantly contribute to increased computer network traffic. The statement is false.
What is multimedia ?Multimedia is an user engaging type of media which offers a variety of effective ways to give information to user and user can interact with digital information through it.
Multimedia can act a communication tool, it has many application like Education, training, reference materials, corporate presentations, marketing, and documentary application.
Multimedia use text, audio, video, graphics, and animation to give information in a dynamic way and it is a technological way of presenting information with textual data like video conferencing, Yahoo Messenger, email, and the Multimedia Messaging Service ( MMS Service (MMS).
For more details regarding multimedia, visit
https://brainly.com/question/9774236
#SPJ2
what is one benefit of utilizing social media to deliver advertising messages?
Answer:
Increased Brand Awareness.
Explanation:
Social media is one of the most cost-efficient digital marketing methods used to syndicate content and increase your business' visibility. Implementing a social media strategy will greatly increase your brand recognition since you will be engaging with a broad audience of consumers.
Answer:
An organization can test ads and promotions before bringing them to traditional media.
Explanation:
what is pascaline ?
also called Arithmetic Machine, the first calculator or adding machine to be produced in any quantity and actually used. The Pascaline was designed and built by the French mathematician-philosopher
what command can be used to repair a dual boot system?
Answer:
bootrec utility
Explanation:
It entirely depends on your version of windows and if you are even on windows, so I have no explanation, but for windows it is possible.
On average, people spend about _____ minutes per day on apps that do not make them feel good such as apps for dating, social networking, gaming, entertainment, news, and web browsing .
Averagely, people (end users) spend about 27 minutes per day on software applications (programs) that do not make them feel good.
A software can be defined as a collection of data or set of executable instructions (codes) that is typically used to instruct a computer on how it should perform a specific task and solve a particular problem.
Basically, software applications (programs) are broadly categorized into three (3) main groups and these are;
System softwareUtility softwareApplication softwareAn application software is typically designed and developed for the performance of a specific task rather than the operation of a computer system.
According to an American survey, people (end users) averagely spend about 27 minutes per day on software applications (programs) that do not make them feel good such as those focused on:
Social networkingDatingEntertainmentGamingNewsWeb browsingOn the other hand, people (end users) averagely spend about 9 minutes per day on software applications (programs) that make them feel good such as those focused on:
HealthExerciseReadingRelaxationEducationFind more information: https://brainly.com/question/14379808
Software whose code is made freely available to others for use, augmentation, and resale is referred to as:
Answer:
Open Source Software
Explanation:
Question about microscope
Answer:
1. c. diaphragm
2. a. ocular lens
3. b. fine adjustment knob
4. c. course adjustment knob
5. d. nosepiece
6. a. simple light microscope
7. d. A, B, and C
8. a. light switch
Explanation:
Hope this helps.
In every programming language, when you access data stored in an array, you must use a ____ containing a value that accesses memory occupied by the array. a. condition b. key c. subscript and. superscript
Answer: this app allow u to have answers made for students 5 star ap but there are some ads that get in the way
Explanation:
but it is good
With ______ voice mail, users can view message details, and in some cases read message contents without listening to them.
Answer:
Your answer is...
Visual.With visual voicemail, users can view message details, and in some cases read message contents without listening to them.
I hope this helped at all.