Answer: Alignment
Explanation:
The principle of repitition indicates that some aspect of a design are repeated. This can be in form of bullet list, lines, color etc.
Balance has to do with how the weight is distributed.
The Principle of Alignment means that the pictures on a page should be connected visually to another thing.
Principle of Proximity simoly means that the items that are related on a page should be close to each other.
Therefore, the principles of page layout that Sam is planning to use in this artwork is alignment.
Answer:
D. alignment
Explanation:
HELP NOW PLS now now now
Answer:
6.enable data to pass between computers in a network to aid communication between users. As a network engineer, you'll have responsibility for setting up, developing and maintaining computer networks within an organisation or between organisations.
7.Sony
At times, what seems to be an effective value network can also be vulnerable to quickly losing effectiveness. At one time, Sony Corporation set up a value network designed to have a "one-stop" gaming experience for its customers. From 2003 to 2008, Sony designed an all-encompassing gaming portal. However, the network was disrupted when computer hackers began breaking into the system and retrieving sensitive banking data from the network users. As a result, the effectiveness of the network was severely compromised.
Explanation:
Telephone – Cable/ Radio -
Answer:
Telephone – Cable/ Radio - Wireless
binary calculation of 1110÷101
write a java program to input two double type numbers and by using suitable mathematical functions print the maximum and minimum numbers out of the two numbers.
[tex]java \: me \: likhna \: ok[/tex]
Answer:
The program in Java is as follows:
import java.util.Scanner;
public class Main{
public static void main(String[] args) {
Scanner input = new Scanner(System.in);
double n1, n2;
n1 = input.nextDouble();
n2 = input.nextDouble();
double Max = Math.max(n1,n2);
double Min = Math.min(n1,n2);
System.out.println("Max: "+Max);
System.out.println("Min: "+Min); }}
Explanation:
This declares the numbers
double n1, n2;
This gets input for n1
n1 = input.nextDouble();
This gets input for n2
n2 = input.nextDouble();
This gets the max of both using the max function
double Max = Math.max(n1,n2);
This gets the min of both using the min function
double Min = Math.min(n1,n2);
This prints the max
System.out.println("Max: "+Max);
This prints the min
System.out.println("Min: "+Min);
3. Why is human resource plan made
Answer: See explanation
Explanation:
Human Resource Planning refers to the process whereby the future human resource requirements of an organization is predicted and how the current human resources that the organization has can be used to fulfill the goals.
Human resources planning is made as it's useful helping an organization meet its future demands by supplying the organization with the appropriate people.
Human resource planning also allows organizations plan ahead in order to have a steady supply of effective and skilled employees. It also brings about efficient utilization of resources. Lastly, it leads to better productivity and organizational goals will be achieved.
Implement a class named MyArrayList that extends class the java.util. ArrayList. The class MyArrayList overrides the add(obj) method in the following way: it adds obj into the list if the object does not occur in the list or it occurs in the list only once; otherwise, if the object occurs in the list more than once, then the method does nothing.
Answer:
import java.util.ArrayList;
import java.util.Collections;
public class MyArrayList<T> extends ArrayList<T> {
public boolean add(T obj) {
if (Collections.frequency(this, obj) < 2) {
return super.add(obj);
}
return false;
}
}
Explanation:
According to the requirement, an element with the same value can occur at most twice in the list.
The Collections.frequency utility is useful to count the occurrances.
Sure, here's an implementation of the `MyArrayList` class that extends `java.util.ArrayList` and overrides the `add` method as described:
```java
import java.util.ArrayList;
import java.util.HashMap;
import java.util.Map;
public class MyArrayList<E> extends ArrayList<E> {
"ATTHERATE"Override
public boolean add(E obj) {
// Count occurrences of each element in the list
Map<E, Integer> countMap = new HashMap<>();
for (E element : this) {
countMap.put(element, countMap.getOrDefault(element, 0) + 1);
}
// Check if obj occurs in the list only once or not at all
if (!countMap.containsKey(obj) || countMap.get(obj) == 1) {
return super.add(obj);
}
// If obj occurs more than once, do nothing
return false;
}
}
```
In this implementation, the `add` method first counts the occurrences of each element in the list using a `HashMap`.
Then, it checks whether the given object `obj` occurs only once or not at all in the list. If so, it adds the object to the list using the `super.add(obj)` call.
If `obj` occurs more than once, the method does nothing by returning `false`. This way, the `MyArrayList` class ensures that duplicates are added only once, or not at all, as required.
Know more about java:
https://brainly.com/question/12978370
#SPJ5
In which SDLC step does the company translate broad, user-oriented systems requirements into the detailed specifications used to create a fully developed system
Answer:
Physical design.
Explanation:
Systems development life cycle (SDLC) is a strategic process that involves determining the overall system architecture, which is typically comprised of hardware, end users, physical processing components, software, and the communication channel that will effectively and efficiently satisfy the essential requirements of the system.
The system inputs and outputs is typically designed along with a plan of how the system's features will be navigated.
Basically, system design is divided into two (2) categories and these includes;
I. Logical design.
II. Physical design.
Furthermore, the design of service systems involves the process of planning, creating infrastructure, building communication, organizing staffs and standardization of a system so as to improve its quality and business relationships between the service provider and its clients.
In the physical design of systems development life cycle (SDLC), broad, user-oriented systems requirements are obtained from end users by companies and then translated into the detailed specifications that would be used to create a fully developed system.
1 convert (101011)2 ( )10 ? convert(596)10= ( )16 ? convert( 101011101)2 ( )16 ? convert(37)10= ( )2 ?
(a) convert (101011)₂ = ( )₁₀ ?
(b) convert(596)₁₀= ( )₁₆ ?
(c) convert( 101011101)₂ = ( )₁₆ ?
(d) convert(37)₁₀= ( )₂ ?
Answer:(a) (101011)₂ = ( 43)₁₀
(b) (596)₁₀= ( 254)₁₆
(c) ( 101011101)₂ = ( 15D)₁₆
(d) (37)₁₀= ( 100101)₂
Explanation:(a) convert (101011)₂ = ( )₁₀
This means that (101011)₂ be converted to base 10 (decimal).
To convert from binary to decimal, find the sum of the binary digits times their power of 2. i.e
(101011)₂ = 1 x 2⁵ + 0 x 2⁴ + 1 x 2³ + 0 x 2² + 1 x 2¹ + 1 x 2⁰
(101011)₂ = 1 x 32 + 0 x 16 + 1 x 8 + 0 x 4 + 1 x 2 + 1 x 1
(101011)₂ = 32 + 0 + 8 + 0 + 2 + 1
(101011)₂ = 43₁₀
Therefore, (101011)₂ = ( 43)₁₀
(b) convert(596)₁₀= ( )₁₆
This means that (596)₁₀ be converted to base 16 (hexadecimal).
To convert from decimal to hexadecimal,
i. start by dividing the decimal number by 16 taking note of the result and the remainder.
ii. divide the result obtained in (i) by 16 and take note of the new result and the remainder.
iii. repeat steps i and ii until the result is 0.
iv. the result is a combination of the remainders starting from the last.
16 | 596
16 | 37 r 4
16 | 2 r 5
| 0 r 2
Now combine the remainders starting from the bottom up. i.e
254₁₆
Therefore, (596)₁₀= ( 254)₁₆
(c) convert ( 101011101)₂ = ( )₁₆
This means that (101011101)₂ be converted to base 16 (hexadecimal).
To convert from binary to hexadecimal,
i. starting from the rightmost bit, group the binary digits into a group of 4 bits as follows
101011101 => 1 0101 1101
ii. the group that does not contain 4 bits is padded with 0s
101011101 => 0001 0101 1101
iii. using the hexadecimal table, convert each group to hexadecimal as follows.
0001 = 1
0101 = 5
1101 = D
iv. combine the result
15D
Therefore, ( 101011101)₂ = ( 15D)₁₆
(d) convert(37)₁₀= ( )₂
This means that (37)₁₀ be converted to base 2 (binary).
To convert from decimal to binary,
i. start by dividing the decimal number by 2 taking note of the result and the remainder.
ii. divide the result obtained in (i) by 2 and take note of the new result and the remainder.
iii. repeat steps i and ii until the result is 0.
iv. the result is a combination of the remainders starting from the last.
2 | 37
2 | 18 r 1
2 | 9 r 0
2 | 4 r 1
2 | 2 r 0
2 | 1 r 0
| 0 r 1
Now combine the remainders starting from the bottom up. i.e
100101₂
Therefore, (37)₁₀= ( 100101)₂
how you plan to deal with stress?
Please help it’s timed
Answer:
you are proooooooooooooooooooo
Explanation:
what are different between system and application software?
Answer:
System software is meant to manage the system resources. It serves as the platform to run application software. Application software helps perform a specific set of functions for which they have been designed. Application software is developed in a high-level language such as Java, C++, .Explanation:
Hope it helps ^-^
#CarryOnLearning
Advantages that excel have over paper and pen work
Answer:
You can use formulas to create systems on excel.
Explanation:
What security weaknesses/vulnerabilities exist in Wireless local area network device hardware and software?
Answer:
Explanation:
There are many weaknesses/vulnerabilities, some of which are the following...
Default Network Hardware, many individuals will go out and buy a new router and install it in their home. These devices come with a preset configuration including a preset security password which is many times a default password used for every router of the same model. This can be easily obtained by anyone who can then access the network.
Access Point hacking, an experienced individual can use a packet sniffer to detect the SSID that is frequently sent from the router in order to create an access point to be able to access the network.
WEP encryption is another vulnerability. These are very low security passwords that can be cracked using different software in a short period of time.
These are some of many vulnerabilities that wireless local networks have, but there are also many precautions and security measures that can be taken to prevent them.
User account
2. The system allows user to register and create the account
3. Users allowed by system to edit & modify the account
4. System allows users to view products
5. System allows users to comment on product
6. Perform sentiment analysis
7. Use APS to connect to product
8. Review website to collect comment of product
9. System dynamically analyze command of users
10. Matching keyword in database
11. system allots rank to product as good, bad and ugly
12. view product review
13. users can use system to view product
14. manage users account
15. all users account allowed to be added or modified , and deleted by administrator
Non Functional Requirements:
1. Efficiency
2. Interoperable
3. Portability
4. Security
Part A: Answer the following questions prefer to the previous requirements?
Question :
Three Use-Case Narrative. Choose one major use-case for each player (Customer, Shop Owner, and Administrator).
What tells the hardware what to do and how to do it?
Central Processing Unit (CPU)
Software
Hardware
Hard Drive (HDD)
Answer:
Software
Explanation:
The software tells the hardware what to do and how to do it.
Question # 18
Dropdown
A(n)
is the tool that will help you the most when developing the content you will use in your presentation.
Your answer is outline.
An outline is the tool that will help you the most when developing the content you will use in your presentation.
What is presentation?A presentation is a method of communicating information from a speaker to an audience.
Presentations are usually demonstrations, introductions, lectures, or speeches intended to inform, persuade, inspire, motivate, build goodwill, or introduce a new idea/product.
An outline is a list of the main topics and subtopics that you intend to cover in your presentation in a hierarchical order.
It can assist you in ensuring that your ideas flow logically and that no important points are overlooked.
A storyboard, on the other hand, is a visual representation of your presentation that shows the order of your slides, the images or videos you intend to use, and the text that will go with them.
Thus, the answer is outline.
For more details regarding presentation, visit:
https://brainly.com/question/938745
#SPJ7
tool that help to monitor the ongoing performance of the platform for Accenture
Answer:
MyConcerto
Explanation:
Accenture may be described as an industry leader which renders professional services capable of solving various business problems by leveraging the use technology involving data and business intelligence to proffer solutions to their clients needs. The MyConcerto firmly known as the Accenture Intelligence Enterprise platform is designed to continously help businesses measure performance, identify shortfalls and proffer solutions using data driven insight. It offered a fully automated platform with predefined solutions geared at accelerating business decisions and adaptive solution.
MyConcerto is a tool which helps to monitor the ongoing performance of the
platform for Accenture.
Myconcerto is a digital platform which brings together and incorporates
innovation and leadership qualities. It involves the use of technology and
solutions which results in exponential business outcomes.
These qualities help in the monitoring process of ongoing performance
which is available on Accenture.
Read more about Accenture here https://brainly.com/question/24937450
What is congnitive overload
Explanation:
is a situation where the teacher gives too much information or too much many tasks to Learners simmultaneously , resulting in the learner being unable to process this information
Answer:
Cognitive loadLanguageWatchEditIn cognitive psychology, cognitive load refers to the used amount of working memory resources. There are three types of cognitive load: intrinsic cognitive load is the effort associated with a specific topic; extraneous cognitive load refers to the way information or tasks are presented to a learner; and germane cognitive load refers to the work put into creating a permanent store of knowledge (a schema).Cognitive load theory was developed in the late 1980s out of a study of problem solving by John Sweller.[1] Sweller argued that instructional design can be used to reduce cognitive load in learners. Much later, other researchers developed a way to measure perceived mental effort which is indicative of cognitive load.[2][3] Task-invoked pupillary response is a reliable and sensitive measurement of cognitive load that is directly related to working memory.[4] Information may only be stored in long term memory after first being attended to, and processed by, working memory. Working memory, however, is extremely limited in both capacity and duration. These limitations will, under some conditions, impede learning. Heavy cognitive load can have negative effects on task completion, and it is important to note that the experience of cognitive load is not the same in everyone. The elderly, students, and children experience different, and more often higher, amounts of cognitive load.The fundamental tenet of cognitive load theory is that the quality of instructional design will be raised if greater consideration is given to the role and limitations of working memory. With increased distractions, particularly from cell phone use, students are more prone to experiencing high cognitive load which can reduce academic success.[5]Explanation:
Hope it helps ^-^
#CarryOnLearning
Write a program that allows the user to enter the last names of five candidates in a local election and the number of votes received by each candidate. The program should then output each candidate's name, the number of votes received, and the percentage of the total votes received by the candidate. Your program should also output the winner of the election.
i have this
#include
#include
#include
using namespace std;
int findMax(int votes[]);
void main()
{
int votes[20];
string name[10];
int total=0;
float percent[10];
int m, i, loc;
cout<<"Enter the names of candidates in local election and number of votes:"<
for(int i=0;i<5;i++)
{
cin>>name[i];
cin>>votes[i];
}
for(i=0;i<5;i++)
{
total=total+votes[i];
}
for(i=0;i<5;i++)
{
percent[i]=((votes[i]/total)*100);
}
cout<<"Candidate"<<'\t'<<"VotesReceived"<<'\t'<<"% of Total Votes"<
cout<
for(i=0;i<5;i++)
{
cout<
}
cout<<"Total:"<
m=findMax(votes);
cout<<"Winner of the election is"<
system("pause");
}
int findMax(int votes[])
{
int i,max,loc;
max=votes[0];
for(i=1;i<5;i++)
{
if(votes[i]>max)
{
max=votes[i];
loc=i;
}
}
return loc;
}
But, it is saying that loc is not initialized, and it is also not calculating % of total votes or the winner of the election and I don't what to do to fix it.
Answer:
The following fix were made to the program
Change void main() to int main(), then set a return value at the end of the main function; e.g. return 0Remove system("pause"); It's not neededFor each of the array, change their lengths to 5 i.e. int votes[5]; string name[5]; and float percent[5];Lastly, calculate the percentage using: percent[i]=((votes[i]*100.0/total))Explanation:
(1) void main implies that the main function will not return any value. So, you change it to int main() and then set the return value
(2) There is no need to pause the program, so system.("pause") is not necessary.
(3) The question says there are 5 candidates. So, we set the arrays to accommodate inputs for 5 values
(4) percent array is declared as float; 100.0 will ensure that it calculates the percentage as a float value.
See attachment for updated code
What lets you do many things, like write book reports and stories?
Application Programs
Antivirus Software
Email
Duct Tape
Does anyone know how to fix this? Everytime i make a new page it only types in the middle of the page. I want to type at the top
Answer:maybe start a new page or try hitting delete
Explanation:
explain 5 important of using a word processor
Answer:
Spelling
Word processors contain an electronic spell checker. The student writer has immediate feedback about misspelled words. Student must discern which of the computer-generated spellings is correct for the context. Teachers no longer have to red-ink spelling errors. They can focus on the few exceptions the spellchecker does not catch.
Security
Teachers and students gain a sense of security about losing assignments. When the student saves her work, she avoids the possibility of the assignment being lost or misplaced. If an assignment is ever misplaced, a replacement can be easily printed.
Legibility
Teachers benefit by receiving a readable copy that is easy to grade. Students with poor handwriting can increase their scores with better looking papers. Students should be instructed to turn in copies of work in a readable font.
Publishing
Work done on a word processor can easily published on a bulletin board. Teachers can create electronic anthologies of their students' writings. Each student can receive an electronic copy of published works with no printing costs.
Mobility
Work done on a word processor and saved on the Internet is highly portable and accessible from any computer with Internet access. Dogs do not eat papers in cyberspace. "I forgot it at home" is irrelevant. Just log onto the nearest computer and your work appears on the screen.
Explanation:
Answer:
1. they are faster creation of document.
2.document can be stored for future use.
3. quality document are created.
4. it has access to higher variation.
5. tiredness Is greatly reduced.
type of operating system used i handleheld device
Answer:
6
Explanation:
Palm OSPocketOSSymbianOSLinuxOSWindowsAndroidSoftware that enables the organization to centralize data is called A. Data Repository B. Data Base Management System C. Data Warehouse D. Data Mart E. Data File
Answer:
B. Data Base Management System
Explanation:
A database management system (DBMS) can be defined as a collection of software applications that typically enables computer users to effectively and efficiently create, store, modify, retrieve, centralize and manage data or informations in a database. Generally, it allows computer users to efficiently retrieve and manage their data with an appropriate level of security.
Generally, a database management system (DBMS) acts as an intermediary between the physical data files stored on a computer system and any software application or program.
A data dictionary can be defined as a centralized collection of information on a specific data such as attributes, names, fields and definitions that are being used in a computer database system.
In a data dictionary, data elements are combined into records, which are meaningful combinations of data elements that are included in data flows or retained in data stores.
This ultimately implies that, a data dictionary found in a computer database system typically contains the records about all the data elements (objects) such as data relationships with other elements, ownership, type, size, primary keys etc. This records are stored and communicated to other data when required or needed.
Hence, a software that enables the organization to centralize data, manage the data efficiently while providing authorized users a significant level of access to the stored data, is called a Data Base Management System (DBMS).
Which of the following class definition defines a legal abstract class Group of answer choices public class Rectangle abstract { public abstract double findArea ( ); } public abstract class Rectangle { public abstract double findArea ( ); } public class Rectangle { public abstract double findArea ( ); } public class abstract Rectangle { public abstract double findArea ( ); }
Which of the following class definition defines a legal abstract class Group of answer choices
(a)
public class Rectangle abstract {
public abstract double findArea ( );
}
(b)
public abstract class Rectangle {
public abstract double findArea ( );
}
(c)
public class Rectangle {
public abstract double findArea ( );
}
(d)
public class abstract Rectangle {
public abstract double findArea ( );
}
Answer:
(b)
public abstract class Rectangle {
public abstract double findArea ( );
}
Explanation:When a class is declared with the abstract keyword, the class is called an abstract class. Abstract classes cannot be instantiated and may include one or more abstract methods. If a class contains an abstract method, then it (the class) must be declared abstract.
In Java, abstract classes are defined using the following format:
[access_modifier] abstract class [name_of_class]
[access_modifier] specifies the access modifier of the class which could be public, private, e.t.c
abstract is the keyword that specifies that the class is an abstract class.
class is a keyword used for defining classes
name_of_class specifies the name of the class.
The only option that fulfils this format is option b where;
(i) The access modifier is public
(ii) The name of the class is Rectangle
Option a is not correct because the abstract keyword is supposed to come before the class keyword.
Option c is not correct because the keyword abstract is missing. In other words, the class must be declared abstract since it contains abstract method findArea();
Option d is not correct because the abstract keyword is supposed to come before the class keyword.
The term ________ refers to the use of a single unifying device that handles media, Internet, entertainment, and phone needs. Group of answer choices
The term [tex]\sf\purple{digital \:convergence}[/tex] refers to the use of a single unifying device that handles media, internet, entertainment, and phone needs.
[tex]\large\mathfrak{{\pmb{\underline{\red{Happy\:learning }}{\orange{.}}}}}[/tex]
Claire needs to make an SRS document. Help her identify the given section and subsection.
The ___ subsection mentions the list of factors that may influence the requirements specified in the SRS. This subsection is part of the section named ___
Blank 1:
A. Scope
B. Purpose
C. Assumptions
Blank 2:
A. Introduction
B. General Description
C. Specific Requirements
Answer:
C and B in that order
Explanation:
The following are three possible logon scenarios. Explain why option (c) below is preferable in terms of system security. a. Welcome to XYZ computing Enter username: jones Invalid username Enter username: b. Welcome to XYZ computing Enter username: smith Enter password: password Invalid access Enter username: c. Enter username: smith Enter password: password Invalid access Enter username: smith Enter password: FpQr56 Welcome to XYZ computing
Answer:
because the password being used is of high quality
Explanation:
Option C is the most preferable in terms of system security because the password being used is of high quality. Meaning that it contains lower case and capital case letters as well as numbers. It is also a random mix of all three and is not a common word or name. The length of the password is normal but could be longer for better safety. These things make it very difficult and time-consuming for a software program to guess the password, and nearly impossible for an individual to guess.
Using only AND, OR and inverter gates to implement the above Boolean equation, how many gates are needed
Answer: hello your question has some missing data attached below is the missing data
answer : 10 gates
Explanation:
Logic diagram Using only AND, OR and inverter gates
x = A ⊕ B ⊕ C
attached below is the require Logic diagram Using only AND, OR and inverter gates .
number of inputs > 2
number of gates needed = 10
What component can you use to open windows?
-A servomotor
-An LED
-A buzzer
-An ambient light sensor
Answer:
A servomotor.
Explanation:
Because you can only open the window with the force given by the servo motor.I am not sure tho