Write a program that:

Takes the list lotsOfNumbers and uses a loop to find the sum of all of the odd numbers in the list (hint: use Mod).
Displays the sum.
Situation B
Write a procedure that takes a positive integer as a parameter. If the number given to the procedure is no more than 30, the procedure should return the absolute difference between that number and 30. If the number is greater than 30, the procedure should return the number doubled.

Answers

Answer 1
Situation A:

#include <iostream>

#include <vector>

#include <string>

int main(int argc, char* argv[]) {

 //Fill it by own.

 std::vector<int> lotsOfNumbers = {0,1,2,3,4,5,6,7,8,9};

 //Loop to find odd numbers.

 for(int i=0;i<lotsOfNumbers.size(); i++) {

   if(lotsOfNumbers[i]%2!=0) std::cout << lotsOfNumbers[i] << std::endl;

   else continue;

 }

 return 0;

}

Situation B:

#include <iostream>

#define check(x) ((x>30) ? 2*x : 30-x)

int main(int argc, char* argv[]) {

 std::cout << check(15) << std::endl;

 std::cout << check(-2) << std::endl;

 std::cout << check(30) << std::endl;

 std::cout << check(78) << std::endl;

 

 return 0;

}

Write A Program That:Takes The List LotsOfNumbers And Uses A Loop To Find The Sum Of All Of The Odd Numbers
Write A Program That:Takes The List LotsOfNumbers And Uses A Loop To Find The Sum Of All Of The Odd Numbers

Related Questions

Which of the following parameters is optional?

sample(a, b, c, d=9)

Answers

The parameter that is optional from the sample (a, b, c, d=9) is d.

What are optional parameters?

An Optional Parameter is a useful feature that allows programmers to supply fewer parameters to a function while still assigning a default value.

This is a procedure made up of optional choices that do not require pushing or forcing in order to pass arguments at their designated time.

It is worth noting that the optional parameter D is said to be allocated an integer value of: 7 since it signifies that the call method can be used without passing any parameters.

Therefore, the optional parameter is d.

Learn more about Parameter from:

https://brainly.com/question/22565095

#SPJ1

Answer:

The optional Parameter is D as it is said to be assigned  an integer value of 7.

What are optional parameters?This is known to be a process  that  is made up of optional choices that one do  not need to push or force so as to pass arguments at their set time.Note that The optional Parameter is D as it is said to be assigned  an integer value of: 7 because it implies that one can use the call method without pushing the arguments.

While configuring a Windows 10 workstation for a new high priority project, you decide to mirror the operating system disk drive for redundancy. Which type of RAID (Redundant Array of Independent Disks) will you be configuring in Windows disk management

Answers

RAID1 type of RAID will be configuring in Windows disk management.

What do RAID 1 0 and 0 +1 mean?

Despite the similarities between RAID 1+0 and RAID 0+1, the numbers' reversed order implies that the two RAID levels are layered in the opposite direction. In RAID 1+0, two drives are mirrored together before being combined into a striped set. Two stripe sets are created and then mirror using RAID 0+1.

RAID 1 has how many drives?

With two drives, RAID 1 is most frequently used. Drive failure fault tolerance is provided by the replicated data on the disks. While write performance is reduced to that of a single drive, read performance is boosted. Without data loss, a single drive failure is possible.

To know more about RAID visit

brainly.com/question/14669307

#SPJ4

In an earlier assignment you modeled an inheritance hierarchy for dog and cat pets. You can reuse the code for that hierarchy in this assignment. Write a program that prompts the user to enter data (name, weight, age) for several Dog and Cat objects and stores the objects in an array list. The program should display the attributes for each object in the list, and then calculate and display the average age of all pets in the list using a method as indicated below:
public static double calculateAverage( ArrayList list )
{
... provide missing code ...
}
previous code
chihuahua
public class Chihuahua extends Dog
{
public void bark()
{
System.out.println("Bow wow");
}
}
dog
public class Dog
{
private String name;
private double weight;
private int age;
public String getname(String n)
{
name = n;
return n;
}
public double getweight(double w)
{
weight = w;
return w;
}
public int getage(int a)
{
age = a;
return a;
}
public void bark()
{
}
}
import java.util.Scanner;
public class DogCatTest
{
public static void main( String [] args)
{
Scanner scan = new Scanner(System.in);
System.out.println("Enter name");
String name = scan.nextLine();
System.out.println("Enter weight");
double weight = scan.nextDouble();
System.out.println("Enter age");
int age = scan.nextInt();
Dog [] dogCollection = { new Chihuahua(), new GoldenRetriever()};
for( int i = 0; i < dogCollection.length; i++ )
dogCollection[ i ].getname(name);
System.out.println(name);
for( int i = 0; i < dogCollection.length; i++ )
dogCollection[ i ].getweight(weight);
System.out.println(weight);
for( int i = 0; i < dogCollection.length; i++ )
dogCollection[ i ].getage(age);
System.out.println(age);
for( int i = 0; i < dogCollection.length; i++ )
dogCollection[ i ].bark();
System.out.println("Enter name");
String cname = scan.nextLine();
System.out.println("Enter weight");
double cweight = scan.nextDouble();
System.out.println("Enter age");
int cage = scan.nextInt();
Cat1 [] catCollection = { new SiameseCat(), new SiberianCat() };
for( int i = 0; i < catCollection.length; i++ )
catCollection[ i ].getname(cname);
System.out.println(cname);
for( int i = 0; i < catCollection.length; i++ )
catCollection[ i ].getweight(cweight);
System.out.println(cweight);
for( int i = 0; i < catCollection.length; i++ )
catCollection[ i ].getage(cage);
System.out.println(cage);
for( int i = 0; i < catCollection.length; i++ )
catCollection[ i ].meow();
}
}
public class GoldenRetriever extends Dog
{
public void bark()
{
System.out.println("Bow wow");
}
}
public class SiameseCat extends Cat1
{
public void meow()
{
System.out.println("Meow");
}
}
public class SiberianCat extends Cat1
{
public void meow()
{
System.out.println("Meow");
}
}
public class Cat1
{
private String name;
private double weight;
private int age;
public String getname(String n)
{
name = n;
return n;
}
public double getweight(double w)
{
weight = w;
return w;
}
public int getage(int a)
{
age = a;
return a;
}
public void meow()
{
}
}

Answers

Java program that shows the use of inheritance hierarchy, the code reuses the attributes of the class objects.

Importance of applying inheritance:

In this case of pets (dogs and cats), applying inheritance allows a much shorter and more structured code. Also, reusable since we can add classes of other pets such as birds, rabbits, etc., all of them also belonging to the Pet superclass.

Reserved words in a java code that enforces inheritance:

extendsprotectedSuper

Here is an example:

Java code

import java. io.*;

import java.util.ArrayList;

import java.io.BufferedReader;

public class Main

{

// ArrayList of Pet objets

 public static ArrayList < Pets > arraypets = new ArrayList < Pets > ();

 public static void main (String args[]) throws IOException

 {

   BufferedReader data =

     new BufferedReader (new InputStreamReader (System. in));

   //Define variables

   String aws;

   String str;

   double w;

   String n;

   int a;

   double average;

   do

     {

//Data entry System.out.println ("Pet species? ");

System.out.println ("(1) Cat ");

System.out.println ("(2) Dog ");

aws = data.readLine ();

System.out.print ("Enter name: ");

n = data.readLine ();

System.out.print ("Enter weight: ");

str = data.readLine ();

w = Double.valueOf (str);

System.out.print ("Enter age: ");

str = data.readLine ();

a = Integer.valueOf (str);

if (aws.equals ("1"))

  {

    Cat cat = new Cat (n, w, a);

      arraypets.add (cat);

      average = cat.averageAges (a);

  }

else

  {

    Dog dog = new Dog (n, w, a);

      arraypets.add (dog);

      average = dog.averageAges (a);

  }

System.out.print ("Enter more data? (y/n)");

aws = data.readLine ();

aws = aws.toLowerCase ();

     }

   while (!aws.equals ("n"));

//Calculate average of pets age

   average = average / arraypets.size ();

   average = Math.round (average * 100.0) / 100.0;

// Output

   System.out.println ("Attributes for each object in the list: ");

 for (Pets arraypet:arraypets)

     {

System.out.println (arraypet);

     }

   System.out.println ("Number of pets: " + arraypets.size ());

   System.out.println ("Average age of all pets in the list: " + average);

 }

}

class Pets

{

 protected String Name;

 protected double Weight;

 protected int Age;

 public Pets ()

 {

 }

 public Pets (String name, double weight, int age)

 {

   this.Name = name;

   this.Weight = weight;

   this.Age = age;

 }

 //Returning values formatted by tostring method

 public String toString ()

 {

   return "Nombre: " + this.Name + ", Peso: " + this.Weight + ", Edad: " +

     this.Age;

 }

 public void CalculateAverage ()

 {

 }

}

class Dog extends Pets

{

 public Dog ()

 {

   super ();

 }

 public Dog (String name, double weight, int age)

 {

   super (name, weight, age);

 }

//Adding the ages of the pets  double averageAges (double a)

 {

   a += a;

   return a;

 }

}

class Cat extends Pets

{

 public Cat ()

 {

   super ();

 }

 public Cat (String name, double weight, int age)

 {

   super (name, weight, age);

 }

//Adding the ages of the pets

 double averageAges (double a)

 {

   a += a;

   return a;

 }

}

To learn more about inheritance hierarchy in java see: https://brainly.com/question/15700365

#SPJ4

A(n) _______________ RFID tag uses a battery or external power source to send out and receive signals.

Answers

A battery is frequently the power source for an active RFID tag. an electronic identifying tool composed of an antenna and a chip. reads RFID (interrogator).

What is the practice of a hacker searching through trash for information known as?

Dumpster diving is the activity of searching through trash for data. The trash may be in a public dumpster or at a location that is off-limits and needs unauthorized entry. Dumpster diving takes use of a human weakness, namely a lack of security awareness.

A dream hacker is what?

Through audio and video samples, advertisers are putting advertisements into your mind. Whatever you want to call it—dream hacking, dream modification, dream intrusion—it has evolved into a marketing gimmick.

To know more about antenna visit:-

https://brainly.com/question/13068622

#SPJ4

When you identify the data elements in a new database, you typically subdivide data elements into __________.
1 makes maintenance easier
2 clustered
3 The column is frequently updated.
4 the smallest practical components

Answers

The smallest practical components

What tools are available for combining data from two or more tables into a single result set?

You may wish to combine records from one table or query with records from one or more other tables to generate a single set of records – a list including all of the records from the two or more tables. A union query in Access serves this function.

The most prevalent sort of relationship between tables in a database is one-to-many. A record in one table corresponds to zero, one, or many records in another database in a one-to-many (also known as many-to-one) connection.

To learn more about subdivide data to refer:

https://brainly.com/question/13261775

#SPJ4

__________ is sensitive data and unauthorized use could result in criminal prosecution or termination of employment. Junk mail SPAM CHRI Federal Law

Answers

FBI CJI data must be secured to prevent illegal access, use, or disclosure because it is sensitive information.

Is there sensitive data whose unauthorized access could lead to criminal charges or job termination?

Criminal charges and/or employment termination may arise from unauthorized requests for, receipt of, release of, interception of, publication of, or discussion of FBI CJIS Data/CHRI.

What are sensitive and unauthorized data?

Anything that should not be available to unauthorized access is considered sensitive data. Personal information that can be used to identify a specific individual, such as a Social Security number, financial data, or login credentials, is a type of sensitive data. enabling unauthorised access to FBI CJI at any time and for any purpose. Reminder: Unauthorized use of the FBI CJIS systems is forbidden and may result in legal action.

To know more about illegal access visit :-

https://brainly.com/question/3440038

#SPJ4

When using for loops and two-dimensional arrays, the outside loop moves across the ___________ and the inside loop moves across the ___________.

Answers

When using for loops and two-dimensional arrays, the outside loop moves across the rows and the inside loop moves across the columns.

In a two-dimensional array, how should each loop be used?

Improved for each loops or layered for loops can be used to iterate across 2D arrays. A 2D array's outer loop typically traverses the rows, whereas the inner loop often covers the columns in a single row. The length of a 2D array indicates the number of rows. length array for a row

Why do we use two for loops with two-dimensional arrays?

To better understand an array's contents, think of a two-dimensional array as a matrix with rows and columns. A 2D array can be looped over by first iterating through each row, followed by iterating through each column in each row. We require two loops that are nested inside of one another because of this.

To know more about array visit

brainly.com/question/14291092

#SPJ4

The common elements of an algorithm are: Group of answer choices induction, recursion, divide and conquer, greedy data, calculation, interfaces, features effectiveness, correctness, definiteness input, computation, selection, iteration, output, variables

Answers

Input, computation, selection, iteration, output, variables are the common elements of an algorithm.

What are an algorithm's characteristics?

Algorithm characteristics: Eventually, it ought to come to an end. It ought to generate at least one output. It ought should require no input or more. Deterministic systems produce the same results for the same input situation. The algorithm's steps must all be efficient, meaning they must all produce results.

What is the principal purpose of an algorithm?

Simply put, an algorithm is a series of actions taken to do a certain task. They are the fundamental units of programming, and they enable the operation and decision-making of devices including desktops, mobile devices, and websites.

To know more about algorithm visit

brainly.com/question/21172316

#SPJ4

Joe works with a client who has recently reported a problem with his Android smartphone. The client has only had the smartphone for a few weeks, but he has noticed that the phone has developed a very short battery life. The client acknowledges that he recently installed some new apps on the smartphone and that he attempted to remove some applications that were bundled with the phone. Based on this information, what would Joe suspect to be the cause of the client's problem?

Answers

Unlawful root access. Unauthorized access is any entry into a network or information system that goes against the owner's or operator's declared security policy.

What exactly is unapproved root access?

Rooting is the process of "unlocking" the Android operating system on your smartphone. By doing this, you can access your smartphone as a "superuser" or administrator and update its operating system without the consent of the phone's maker. When speaking of Apple devices, gaining root access is known as "jailbreaking".

What constitutes an unauthorized usage, exactly?

These prohibited actions can take many different forms, but some examples are as follows: obtaining, using, or making an effort to use another person's password. Without their express written consent, you are not allowed to view, copy, transfer, edit, or make public any of their files, printouts, or computer processes.

To know more about security policy visit :-

https://brainly.com/question/14618107

#SPJ4

Which part of project management involves determining the required materials? (5 points)
Money
Resources
Scope
Time

Answers

The part of project management that involves determining the required materials are known as resources. Thus, the correct option for this question is B.

What is Project management?

Project management may be characterized as the process that involves the discipline of applying specific processes and principles to initiate, plan, execute and manage the way that new initiatives or changes are implemented within an organization.

Project management is the application of knowledge, skills, tools, and techniques applied to project activities in order to meet the project requirements. The project's tasks and resource requirements are identified, along with the strategy for producing them. This is also referred to as “scope management.

Therefore, the part of project management that involves determining the required materials is known as resources. Thus, the correct option for this question is B.

To learn more about Project management, refer to the link;

https://brainly.com/question/16927451

#SPJ1

Which of the following is a Mini-HDMI connector used with portable devices such as camcorders and digital cameras

Answers

Answer:Type A

Explanation:

I am a non-volatile type of built-in memory. I store my contents long-term. My job is to store critical programs that the computer needs to access in order to boot up. What am I

Answers

In order to store and retrieve data fast, hard disks are nonvolatile storage devices.

Why would someone utilize non-volatile memory?

Non-volatile memory (NVM) is a category of computer memory with the capacity to retain stored data even after the power is switched off. NVM does not require the data in its memory to be refreshed on a regular basis, unlike volatile memory. For long-term reliable storage or secondary storage, it is frequently employed.

The kind of memory that is non-volatile?

8.3. 4 ROM. Memory is referred to as non-volatile if it can maintain its values even when the power is turned off. Various read-only memory types were among the earliest non-volatile memory types (ROM).

To know more about nonvolatile storage visit :-

https://brainly.com/question/29999255

#SPJ4

var w=20;
var h = 15;
rect (10, 10, w, h);
ellipse (10, 10, w, h);
How tall is each one of the shapes?

Answers

The rectangle is 20 units tall and the ellipse is 15 units tall.

How to calculate the height of each of the shapes?

The height of the rectangle is defined by the variable 'h' and is set to 15. The height of the ellipse is also defined by the variable 'h' and is set to 15. So the height of each shape is 15 units.

What is ellipse ?

An ellipse is a geometrical shape that is defined by the set of all points such that the sum of the distances from two fixed points (the foci) is constant. It can be thought of as an oval or a "squashed" circle. In the context of computer graphics and drawing, an ellipse is often used to represent the shape of an object or an area.

Learn more about ellipse in brainly.com/question/14281133

#SPJ1

With the _______________________________ as a Service model, the cloud provider owns and manages all levels of the computing environment.

Answers

The largest segment of the cloud market is cloud application services, or Software as a Service (SaaS), and it is still expanding swiftly. Applications that are managed by a third-party provider are delivered via the web using SaaS.

What does cloud computing's SaaS, PaaS, and IaaS mean?

Infrastructure-as-a-service (IaaS), platform-as-a-service (PaaS), and software-as-a-service are the three primary categories of cloud computing as-a-service alternatives, and each one offers a different level of management for you (SaaS).

What does cloud computing PaaS mean?

Platform as a Service (PaaS) is a full-featured cloud environment that has all the servers, operating systems, networking, storage, middleware, tools, and other components that developers need to create, run, and maintain applications.

To know more about SaaS visit:-

https://brainly.com/question/11973901

#SPJ4

Leat one entrepreneur in the Philippine. Read their life tory and how they tarted their buine

Answers

Mang Inasal creator Edgar Sia is widely regarded as the country's innovator of unlimited rice lunches. Sia, who is now 19 years old, left college to launch his own laundry and photo-developing company.

What does becoming an entrepreneur entail?

Entrepreneur: "A person who establishes a business and is prepared to take financial risks in order to succeed." The term "entrepreneur" is defined as follows by Merriam-Webster.

characteristics of successful entrepreneurs?

Entrepreneur refers to a person who has the skills, drive, and willingness to take the risks necessary to found, run, and succeed in a starting business. The best example of entrepreneurship is the beginning of a new business venture.

To know more about entrepreneur visit:

https://brainly.com/question/13897585

#SPJ4

In a SWOT analysis, potential internal strengths are helpful when they identify all key strengths associated with the competitive advantage including cost advantages, new and/or innovative services, special expertise and/or experience, proven market leader, improved marketing campaigns, and so on.

Answers

In a SWOT analysis, potential internal strengths are helpful when they identify all key strengths associated with the competitive advantage including cost advantages, new and/or innovative services, special expertise and/or experience, proven market leader, improved marketing campaigns, and so on is true.

What is SWOT analysis?A person or organization can discover Strengths, Weaknesses, Opportunities, and Threats (SWOT) relevant to business competitiveness or project planning using the SWOT analysis, a strategic planning and strategic management technique. It is also known as situational analysis or situational evaluation. Strengths, Weaknesses, Opportunities, and Threats, or SWOT, is an acronym. Your firm has internal strengths and weaknesses that you can improve and exert some control over. Examples include your team members, your patents and other intellectual property, and where you are. Strength, Weakness, Opportunity, and Threat is referred to as SWOT. A SWOT analysis helps you to determine the S-W of your firm as well as larger possibilities and threats (O-T). Greater situational awareness is beneficial for both strategic planning and decision-making.

To learn more about SWOT analysis refer to:

https://brainly.com/question/25066799

#SPJ4

PYTHON 3:
myprogramminglab
QUESTION 1 : Remove the smallest element from the set, s. If the set is empty, it remains empty.
QUESTION 2: Create a dictionary that maps the first n counting numbers to their squares. Associate the dictionary with the variable squares.

Answers

1. if len(s) > 0:  s.remove(min(s))     2. squares = { i:i*i for i in range(n)}

How Do You Python Remove That Smallest Element From A Set?

To determine the lowest and largest element in the list, we are utilizing the min() and max functions.The remove() method of Set removes/deletes the specified element from of the set.

How are set components removed?

The supplied element is eliminated from the set using the remove() method.The remove() method raises an error if the supplied object does not exist, whereas the discard() method does not. This is how this method differs from the discard() method.

To know more about  Python Remove visit:

https://brainly.com/question/28029439

#SPJ4

A busy clustered web site regularly experiences congested network traffic. You must improve the web site response time. What should you implement

Answers

Network load balancing should be implemented.

The operation of network load balancing is what?

The Network Load Balancing (NLB) capability uses the TCP/IP networking protocol to divide traffic among different servers. NLB gives web servers and other mission-critical servers stability and performance by joining two or more machines that are executing programmes into a single virtual cluster.

What makes network load balancing crucial?

By equally distributing network traffic, load balancing enables you to avoid failure brought on by overtaxing a certain resource. Applications, websites, databases, and other computing resources operate more efficiently and are more readily available as a result of this method. Additionally, it makes it easier to process consumer requests accurately and efficiently.

To know more about Network load balancing visit

brainly.com/question/13088926

#SPJ4

Which risk is most effectively mitigated by an upstream Internet service provider (ISP)?
A. Distributed denial of service (DDoS) B. Lost productivity C. Firewall configuration error
D. Unauthorized remote access

Answers

A. Distributed denial of service (DDoS). Upstream Internet service providers are best at reducing risk (ISP).

Which course of action will best safeguard the Internet of Things?

Which course of action, while still fulfilling business objectives, swiftly implementing security upgrades.

What online safety precautions are most crucial?

Don't share information like your mother's maiden name, birthday, or address online. Instead, secure your privacy settings.Be wary of calls for connection from strangers.your internet connection securely.Always use a password to secure your home wireless network.

To know more about  Internet service provider visit:

https://brainly.com/question/18000293

#SPJ4

A year in the modern Gregorian Calendar consists of 365 days. In reality, the earth takes longer to rotate around the sun. To account for the difference in time, every 4 years, a leap year takes place. A leap year is when a year has 366 days: An extra day, February 29th. The requirements for a given year to be a leap year are: 1) The year must be divisible by 4 2) If the year is a century year (1700, 1800, etc.), the year must be evenly divisible by 400 Some example leap years are 1600, 1712, and 2016. Define a function called OutputLeapYear that takes an integer as a parameter, representing a year, and output whether the year is a leap year or not. Then, write a main program that reads a year from a user, calls function OutputLeapYear() with the input as argument to determines whether that year is a leap year. coral code

Answers

The function OutputLeapYear() takes an integer as a parameter, representing a year, and prints whether the year is a leap year or not. The main program reads a year from the user, calls the OutputLeapYear() function with the input as an argument to determine whether that year is a leap year.

What is meant by coral code? Coral code, also known as CSS (Cascading Style Sheets), is a coding language used to create a visual presentation of webpages. It is used to design the layout, colors, and fonts of a website. CSS helps to create a unified look and style across a web page and website by controlling the overall presentation of the HTML elements. It allows web developers to easily style web pages without having to write complex HTML code. CSS is often used to create responsive websites, ensuring the website looks good on all devices and screen sizes. It can also be used to create animations, transitions and interactive elements on a website. In short, Coral code is a powerful and versatile language used to create visually appealing and interactive webpages.

To learn more about coral code refer to:

https://brainly.com/question/27921913

#SPJ4

Which step of the Department of Defense Risk Management Process consists of the activities to develop, implement, implement and document

Answers

The program's activities to create, put into practice, and record the procedures it will take to mitigate certain risks make up the risk management process planning process.

What are the steps in the risk management procedure for the Department of Defense?

The five key steps of the risk management process are planning, identification, analysis, mitigating risk, and monitoring.

Which of the following phrases describes the procedure of monitoring and evaluating risk as you get more knowledge about risk in projects?

The process of locating and evaluating potential problems that can adversely affect important corporate endeavors or projects is known as risk analysis. This process is used to help businesses avoid or reduce particular risks.

To know more about program's  visit:-

https://brainly.com/question/11023419

#SPJ4

Which of these is an example of the integrity principle that can ensure your data is accurate and untampered with :
Options of the questions are Given Below.
A: Using Encapsulating Security Payload
B: Using MACs (Message Authentication Codes)
C: Keeping a symmetric key secret
D: Implementing flood guards

Answers

(A). Using Encapsulating Security Payload

(B). Using MACs (Message Authentication Codes)

What kind of situation poses a threat to integrity?

A person using unauthorized access to a system to modify data in a file is an illustration of an integrity attack. Furthermore, the execution of unauthorized commands on a system could jeopardize the security of the entire system.

Which of these is a good illustration of how the confidentiality principle may protect your data?

Data is rendered illegible by encryption to all but those with the necessary password or key. You can guard sensitive files from being read or used by anyone who are not authorized to do so by encrypting them (for instance, using file passwords).

Which of the following can compromise the accuracy of information and data?

Human error, whether purposeful or inadvertent, can affect data integrity. Transfer mistakes, such as unwanted changes or data compromise, can happen when data is transferred from one device to another. bugs, malware/viruses, hacking, and other online dangers.

To know more about integrity visit:

https://brainly.com/question/14710912

#SPJ4

Help, this question is confusing. The hexadecimal equivalent of 22210 is DE. The binary equivalent of D7 is 11010011. The decimal of 1316 is 19. (Just if u can’t read it good. ) true or false

Answers

The hexadecimal equivalent of 22210 is DE is a True Statement. The binary equivalent of D7 is 11010011 is False Statement. The decimal of 1316 is 19 is a True Statement.

a) 22210 is DE

To do this, we use the product rule to convert DE from base 16 to base 10.

We thus have:

[tex]DE_{16} = D * 16^{1} + E * 16^{0}[/tex]

So hexadecimal

D = 13

E = 14

[tex]DE_{16} = 13 * 16^{1} + 14 * 16^{0}[/tex]

[tex]DE_{16} = 222_{10}[/tex] So the statement is True

b) D7 is 11010011

First, apply the product rule to convert D7 to base 10

[tex]D7_{16} = D * 16^{1} + 7 * 16^{0}[/tex]

D = 13

[tex]D7_{16} = 13 * 16^{1} + E * 7^{0}[/tex]

[tex]D7_{16} = 215_{10}[/tex]

So the statement is false

c) 1316 is 19

[tex]13_{16} = 1 * 16^{1} + 3 * 16^{0}[/tex]

[tex]13_{16} = 19[/tex]

Hence the option c statement is True

To learn more about hexadecimal

https://brainly.com/question/13041189

#SPJ4

1. What is the maximum achievable end-end throughput (in Mbps) for each of four client-to-server pairs, assuming that the middle link is fair-shared (i. E. , divides its transmission rate equally among the four pairs)

Answers

The greatest end-to-end throughput that can be achieved, according to the query, is 60 Mbps.

How come it's called a server?

They receive functionality from another laptop, device, or application known as a "client," for which they are referred to as such. Server software, file servers, network servers, and database servers are just a few of the several types of servers.

Is a server software or hardware?

A server is made up of hardware, software, or a mix of the two, and it serves as a hub for other computers or programmes to access resources, services, or data. In most cases, a network like the Internet is used to access the server system.

To know more about Server visit :

https://brainly.com/question/7007432

#SPJ4

Andrea purchased an Apple iPad and an extended warranty. She also purchased a gaming application specially developed for Apple iPad. The application purchased by Andrea, is an example of a(n) _____ product.

Answers

The application purchased by Andrea, is an example of an augmented product.

What are "augmented" and "real" products?

When clients buy a real product, they also get additional services or benefits, which is known as an augmented product. An actual product is anything that a business sells, and it comprises branding, packaging, and product design.

Why would one utilise augment?

Although the word "augmentation" is frequently used to describe an increase in size or quantity, it can also apply to other sorts of modifications, such improvements in quality. It usually suggests that whatever is being added to something will make it better. The word "augmentation" is normally employed in a neutral or positive context.

To know more about augmented product visit

brainly.com/question/30117927

#SPJ4

Which of the following is not one of the primary principles an organization should follow for successful agile software development

Answers

Option E. Rigid Scheduling is not a principle that should be followed for successful agile software development as it goes against the spirit of agility.

Agile development is all about adapting to change and embracing the unknown.

Successful Agile Software Development: The Primary Principles

The primary principles that should be followed for successful agile software development are adaptive planning, comprehensive documentation, self-organizing teams, and fast feedback loops.

Adaptive planning involves creating a plan that is flexible and can adapt to changes in scope or requirements. Comprehensive documentation ensures that all stakeholders are on the same page and that the project’s progress is easily tracked. Self-organizing teams are teams that are composed of individuals that can work together to solve complex problems and create innovative solutions.

Since the question is not complete, here's the full task:

Which of the following is not one of the primary principles an organization should follow for successful agile software development?

Choose the right option:

A. Adaptive Planning B. Comprehensive Documentation C. Self-Organizing TeamsD. Fast Feedback LoopsE. Rigid Scheduling

Learn more about Software: https://brainly.com/question/26872062

#SPJ4

write a summary 6-7 sentences on how cell phones work (include the EM spectrum and radio waves in your answer.

Answers

When a cell phone is used, it emits an electromagnetic radio wave known as a radio frequency, which is picked up by the antenna of the nearest cell tower.

What are radio waves?

Radio waves are the longest wavelengths in the electromagnetic spectrum and are a type of electromagnetic radiation.

Using the electrical signal, a microchip in the phone modulates (or varies) a radio wave.

Therefore, the radio wave travels through the air to a nearby cell tower, which sends your voice to the person you're calling, and the process is reversed so that the person on the other end can hear you.

To learn more about radio waves, visit here:

https://brainly.com/question/827165

#SPJ1

When looking over a written document, you should reread for meaning, add, rearrange, remove and replace. What process are you using

Answers

The revision process includes three rounds of editing: the structure edit, the copy edit, and proofreading. The structural edit is performed at the paragraph level and concentrates on the logic and thought flow.

Is editing or revision done first?

It's time to move on to editing your work when you've done rewriting it. Editing involves changing the way sentences are put together and how they are phrased, but rewriting entails making significant, comprehensive changes to your paper's overall structure and arrangement.

What happens during a document revision?

In order to ensure that the document fulfills its objective, revision entails examining the global level and paragraph level organization of the draft and making modifications at the global, paragraph, and sentence levels.

To know more about editing visit:-

https://brainly.com/question/21263685

#SPJ4

The process by which keys are managed by a third party, such as a trusted CA, is known as?
O Key escrow
O Key destruction
O Key renewal
O Key management

Answers

Key escrow is the procedure by which credentials are handled by the a third party, like a reliable CA.

What is the name of the entity that issuing digital certificates is a trustworthy third party?

A reputable organization that issues Security Socket Layer (SSL) certificates is known as a certificate authority (CA).These ssl signatures are data files that are used to link an entity cryptographically to a public key.

How are certificates issued by CAs verified?

A browser will acquire a series of certificates to validate a certificate, each of which has signed the certificate before it, linking the signing CA's base to a server's certificate.A certification path is the name given to this collection of credentials.

To know more about digital certificates visit:

https://brainly.com/question/29726262

#SPJ4

urn the ignition switch to start and release the key immediately or you could destroy the ___________.

Answers

Start the engine and, if necessary, be aware of the ignition positions. Release the key or button as soon as the engine begins. Aim for 1.5 to 2 seconds of idle time before you start the car. Ensure that all gauges show the vehicle systems are operating normally.

What occurs when you turn on your car's ignition?

The ignition switch activates the voltage from the battery to the ignition coil to produce the engine spark when triggered by the key or button press.

Why does my car's key need to be turned repeatedly to start?

This kind of issue is typically brought on by some form of electrical issue. The battery's and starter's wiring could become faulty or fall loose.

To know more about ignition visit:-

https://brainly.com/question/12866730

#SPJ4

Other Questions
Which term is best described as an organic compound containing a carbonyl group bound to two hydrogen atoms or to a hydrogen atom and an alkyl substituent Which of the following statements regarding depression is false? Need with this substitution method.. Select the correct answer from each drop-down menu. The boundary of a park is shaped like a circle. The park has a rectangular playground in the center and 2 square flower beds, one on each side of the playground. The length of the playground is /and its width is w. The length of each side of the flower beds is a. Which two equivalent expressions represent the total fencing material required to surround the playground and flower beds? Assume that the playground and beds do not overlap Based on information in The Evolution of Useful Things, what was the immediate cause of Richard Drew's work with cellophane A company is trying to figure out what products to offer, when to add new products, and when current products should be discontinued. What tool will assist the company in answering all of those questions 62/31513HitMiss2/5352152Not scoreScoreFind the probability that Ryan misses the target and does not score a goal,(2 marks)Not score niversal Containers created a new product line with a special sales team to sell the products. The sales process for the new line is more complex than the current sales process. The System Administrator added new picklist values to the Stage field for use by the new sales team. How should the System Administrator configure Salesforce to ensure only the appropriate stages are visible based on the product Line?Create a validation rule to display the appropriate Stages based on the Users role.Create a sales process and Opportunity record type for each product line.Create a validation rule to display the appropriate Stages based on product line.Create new Forecast categories and assign the new Stage picklist values to those categories. You are approaching an intersection at the posted speed limit when the signal turns yellow. You should: shown below PLEASE ANSWER FAST I ONLY HAVE 4 MORE MINUTES! What is the main message of the poem Ozymandias? In paragraph 4, Sandberg writes that it is pointless to tell someone to be fearless. Explain what you think she means by this. How does this belief reveal her tone? The relationship among the board of directors, top management, and (5 shareholders is referred to as A) corporate synergy. B) corporate management. C) corporate governance. D) corporate strategy. E) corporate responsibility. Which two ratios form a proportion?ResponsesA 12/15 and 5/4B 15/12 and 5/4C 6/5 and 4/5D 5/6 and 4/5 Who might Chief Justice Marshall be more likely to side with,Marbury or Madison? What are the goals or the objectives of an INS? 3 sentence The paid-off portion of your mortgage at any point in time is called the __________., a. equity, b. principal, c. down payment, d. line of credit sexual harassment at work occurs whenever ? on the basis of gender affects a person's job. true or false the sum of 1/4 a number and 5 is 3. What is the number? Part 1:Include your answers to questions 1-4 and any important facts about the cause and types of water erosion.Part 2:Include your answers to questions 1-7 and any important facts about the effects of water erosion through your research.Part 3:Include a visual display and any sources used when conducting your research.Use the space below to submit your research.