Assign a pointer to any instance of searchChar in personName to searchResult #include iostream» 2 #include 3 using namespace std; 4 5 int main() 6 har personName [190]"Albert Johnson" 7 char searchChar 1 test passed All tests passed char* searchResult nulipt r; 10 searchChar-J'; IYour solution goes here 12 13 if (sea rc h Result coutくく"character ! nullptr) { found." くく endl; 15 16 else 17 18 19 20 return 0; 21 cout << "Character not found." << endl; Run

Answers

Answer 1

Answer:

Following are the code to the given question:

#include <iostream>//header file

#include <cstring>//header file

using namespace std;

int main() //main method  

{

   char personName[100] = "Albert Johnson";//defining a char array  

   char searchChar;//defining char variable

   char *searchResult = nullptr;//use pointer type char variable to holding value as nullptr

   searchChar = 'J';//holding char value

   char *ptr = personName;//using pointer type char variable that holds a value

   while (*ptr) //defining while loop that checks *ptr value

   {

       if (*ptr == searchChar) //use if that check *ptr value is equal to searchChar

       {

           searchResult = ptr;//holding ptr value in searchResult

       }

       ptr++;//incrementing ptr value

   }

   if (searchResult != nullptr) //use if that checks searchResult value not equal to nullptr

   {

       cout << "Character found." << endl;//print message

   }  

   else //else block

   {

       cout << "Character not found." << endl;//print message

   }

   return 0;

}  

Output:

Character found.

Explanation:

In this code inside the main method, a char array is declared that holds values.  

In the next step, some char variable and pointer type char variable are declared that holds values.

Inside the while loop, the pointer variable is used, and in the if the block it checks its value and holds its values.

Outside the loop, it checks searchResult value not equal to nullptr and prints the value as per the given condition.

Answer 2

Answer:

deez lOL LOLOLOLOL

Explanation:


Related Questions

Will mark brainliest if correct!
Code to be written in python

A deferred annuity is an annuity which delays its payouts. This means that the payouts do not start until after a certain duration. Notice that a deferred annuity is just a deposit at the start, followed by an annuity. Your task is to define a Higher-order Function that returns a function that takes in a given interest rate and outputs the amount of money that is left in a deferred annuity.

Define a function new_balance(principal, gap, payout, duration) that returns a single-parameter function which takes in a monthly interest rate and outputs the balance in a deferred annuity. gap is the duration in months before the first payment, payout is monthly and duration is just the total number of payouts.

Hint: Note that duration specifies the number of payouts after the deferment, and not the total duration of the deferred annuity.

def new_balance(principal, gap, payout, duration):
# Complete the function
return


# e.g.
# test_balance = new_balance(1000, 2, 100, 2)
# result = test_balance(0.1)

Test Case:
new_balance(1000, 2, 100, 2)(0.1) 1121.0

Answers

Answer:

def new_balance(principal, gap, payout, duration):

   def calculate_balance(interest_rate):

       balance = principal

       for i in range(gap):

           balance *= (1 + interest_rate/12)

       for i in range(duration):

           balance *= (1 + interest_rate/12)

           balance -= payout

       return balance

   return calculate_balance

Explanation:

Answer:

def new_balance(principal, gap, payout, duration):

   # convert monetary amounts to cents

   principal_cents = principal * 100

   payout_cents = payout * 100

   

   def balance(rate):

       # calculate the interest earned during the deferment period in cents

       interest_cents = principal_cents * (1 + rate) ** gap - principal_cents

       # calculate the balance after the first payout in cents

       balance_cents = interest_cents + principal_cents - payout_cents

       # loop through the remaining payouts, calculating the balance after each one in cents

       for i in range(duration - 1):

           balance_cents = balance_cents * (1 + rate) - payout_cents

       # convert the balance back to dollars and round it to the nearest cent

       balance_dollars = round(balance_cents / 100)

       return balance_dollars

   return balance

test_balance = new_balance(1000, 2, 100, 2)

result = test_balance(0.1)

print(float(result))

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.

Answers

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

Consider the following instance variables and incomplete method that are part of a class that represents an item. The variables years and months are used to represent the age of the item, and the value for months is always between 0 and 11, inclusive. Method updateAge is used to update these variables based on the parameter extraMonths that represents the number of months to be added to the age.
private int years;
private int months; // 0 <= months <= 11
public void updateAge(int extraMonths)
{
/* body of updateAge */
}
Which of the following code segments shown below could be used to replace /* body of updateAge */ so that the method will work as intended?
I int yrs = extraMonths % 12;
int mos = extraMonths / 12;
years = years + yrs;
months = months + mos;
II int totalMonths = years * 12 + months + extraMonths;
years = totalMonths / 12;
months = totalMonths % 12;
III int totalMonths = months + extraMonths;
years = years + totalMonths / 12;
months = totalMonths % 12;
a. I only
b. II only
c. III only
d. I and II only
e. II and III

Answers

Answer:

e. II and III

Explanation:

Given

The above code segment

Required

Which can complete the updateAge() method

From the program we understand that the updateAge() will update the year and month based on the extraMonths passed to it.

For instance

[tex]years = 6[/tex] and [tex]months = 8[/tex]

updateAge(5) will update years to 7 and month 1

Having established that, next we analyze options I, II and III

Code I

1. This divides extraMonths by 12 and saves the remainder in yrs.

For instance: 15 months = 1 year and 3 months. So:

[tex]yrs = 3[/tex]

2. This divides extraMonths by 12 and saves the whole part in mos

For instance: 15 months = 1 year and 3 months. So:

[tex]mos = 1[/tex]

3. This updates the value of years by the result of 1 (i.e. the remaining months)

4. This updates the value of years by the result of 2 (i.e. the remaining years)

[tex]months = months + mos;[/tex]

Conclusion:, (I) is incorrect because years and months were updated with the wrong values

Code II

1. This converts years to months, then add the result of the conversion to extraMonths + month

For instance: [tex]years = 3; months = 6; extraMonths = 15[/tex]

[tex]totalMonths = 3 * 12 + 6 + 15 = 57\ months[/tex]

2. This calculates the number of years in totalMonths

[tex]years = totalMonths / 12;[/tex]

i.e [tex]years = 57/12 = 4[/tex]

3. This divides totalMonths by 12 and saves the remainder in months

[tex]months = totalMonths \% 12;[/tex]

i.e. [tex]months = 57\%12 = 9[/tex]

Rough Calculation

[tex]years = 3; months = 6; extraMonths = 15[/tex]

[tex]3\ years + 6\ months + 15\ months = 4\ years\ 9\ months[/tex]

Conclusion: Code II is correct

Code III

1. This calculates the total months

For instance: [tex]years = 3; months = 6; extraMonths = 15[/tex]

[tex]totalMonths = 6 + 15 = 21\ months[/tex]

2. This calculates the number of years in totalMonths, then add the result ot years

[tex]years = years + totalMonths / 12;[/tex]

i.e. [tex]years = 3 + 21/12 = 3 + 1 = 4[/tex]

3. This divides totalMonths by 12 and saves the remainder in months

[tex]months = totalMonths \% 12;[/tex]

i.e. [tex]months = 21\%12 = 9[/tex]

Rough Calculation

[tex]years = 3; months = 6; extraMonths = 15[/tex]

[tex]3\ years + 6\ months + 15\ months = 4\ years\ 9\ months[/tex]

Conclusion: Code III is correct

Suppose class Person is the parent of class Employee. Complete the following code:
class Person :
def __init__(self, first, last) :
self.firstname = first
self.lastname = last
def Name(self) :
return self.firstname + " " + self.lastname
class Employee(Person) :
def __init__(self, first, last, staffnum) :
Person.__init__(self,first, last) self.staffnumber = staffnum
def GetEmployee(self) :
return self.Name() + ", " + self.staffnumber
x = Person("Sammy", "Student")
y = Employee("Penny", "Peters", "805")
print(x.Name())
print(y.GetEmployee())

Answers

Answer:

Explanation:

There is nothing wrong with the code it is complete. The Employee class is correctly extending to the Person class. Therefore, the Employee class is a subclass of Person and Person is the parent class of Employee. The only thing wrong with this code is the faulty structure such as the missing whitespace and indexing which is crucial in Python. This would be the correct format. You can see the output in the picture attached below.

class Person :

   def __init__(self, first, last) :

       self.firstname = first

       self.lastname = last

   def Name(self) :

       return self.firstname + " " + self.lastname

class Employee(Person) :

   def __init__(self, first, last, staffnum) :

       Person.__init__(self,first, last)

       self.staffnumber = staffnum

   def GetEmployee(self) :

       return self.Name() + ", " + self.staffnumber

x = Person("Sammy", "Student")

y = Employee("Penny", "Peters", "805")

print(x.Name())

print(y.GetEmployee())

Select the correct answer.
Ergonomic principles suggest minimizing pressure points while working on a computer. What will help to minimize pressure points while doing
sedentary work?
O A. use handles on boxes
O B.
take regular breaks
O C.
use cushioning while sitting
arrange your work area
O
D.
Reset
Next

Answers

I think the third option C

The answer here is hh b

You can start Remote Desktop Connection from a command prompt by running mstsc.exe. Which option can be used with this command to prevent Remote Desktop Connection from saving information to the local computer?​

Answers

Answer:

You can start Remote Desktop Connection from a command prompt by running mstsc.exe. Which option can be used with this command to prevent Remote ...

(PYTHON)

The instructions will be shown down below, along with an example of how the program should come out when finished. Please send a screenshot or a file of the program once finished as the answer.

Answers

Using the knowledge in computational language in JAVA it is possible program should come out when finished.  

Writting the code:

package numberofcharacters;

import java.util.ArrayList;

public class App {

   public static void main(String[] args) {

       String toCalculate = "123+98-79÷2*5";

       int operator_count = 0;  

       ArrayList<Character> operators = new ArrayList<>();

       for (int i=0; i < toCalculate.length(); i++){

            if (toCalculate.charAt(i) == '+' || toCalculate.charAt(i) == '-' ||

                toCalculate.charAt(i) == '*' || toCalculate.charAt(i) == '÷' ) {

            operator_count++;  /*Calculating

                                 number of operators in a String toCalculate

                               */

            operators.add(toCalculate.charAt(i)); /* Adding that operator to

                                                   ArrayList*/

        }

    }

    System.out.println("");

    System.out.println("Return Value :" );

    String[] retval = toCalculate.split("\\+|\\-|\\*|\\÷", operator_count + 1);    

   int num1 = Integer.parseInt(retval[0]);

   int num2 = 0;

   int j = 0;

   for (int i = 1; i < retval.length; i++) {

       num2 = Integer.parseInt(retval[i]);

       char operator = operators.get(j);

       if (operator == '+') {

           num1 = num1 + num2;

       }else if(operator == '-'){

           num1 = num1 - num2;

       }else if(operator == '÷'){

           num1 = num1 / num2;

       }else{

           num1 = num1 * num2;

       }

       j++;            

   }

   System.out.println(num1);   // Prints the result value

   }

}

See more about JAVA at brainly.com/question/29897053

#SPJ1

The user is able to input grades and their weights, and calculates the overall final mark. The program should also output what you need to achieve on a specific assessment to achieve a desired overall mark. The program should be able to account for MULTIPLE COURSES as well.
I have done some pseudocode. So to double check, please provide pseudocode and python code.
I do plan to use homework, quizzes and tests for the grades portion and using the exam as part of the desired mark portion.

Please follow the instructions above. LISTS are allowed to be used.

Answers

Answer:

def calculate_final_mark(courses):

   final_mark = 0

   total_weight = 0

   for course in courses:

       final_mark += course['mark'] * course['weight']

       total_weight += course['weight']

   return final_mark / total_weight

def calculate_required_mark(courses, desired_mark):

   current_mark = calculate_final_mark(courses)

   total_weight = 0

   for course in courses:

       total_weight += course['weight']

   required_mark = (desired_mark - current_mark) / (1 - total_weight)

   return required_mark

# Example usage:

courses = [

   {'name': 'Math', 'mark': 80, 'weight': 0.4},

   {'name': 'Science', 'mark': 70, 'weight': 0.3},

   {'name': 'English', 'mark': 65, 'weight': 0.3},

]

final_mark = calculate_final_mark(courses)

print(f"Your final mark is {final_mark:.1f}")

desired_mark = 80

required_mark = calculate_required_mark(courses, desired_mark)

print(f"You need to score at least {required_mark:.1f} on your next assessment to achieve a final mark of {desired_mark}")

The importance of Information systems in hospitality industry?​

Answers

Answer:

This system helps in managing customer data effectively which organizations in tourism & hospitality industry can use to perform various promotional & direct marketing activities. Information provided by MIS helps an organization in management control, transaction processing, strategic planning and operational control.

##the role of info sys in hospital

it can facilitate the process of treating a patient by making the access to patient health record easier and more efficient. this in turn assure they get the right treatment and medicines. and if they need to be transferred to other hospital thier file can be also transferred in a matter of seconds.

The importance of Information systems in hospitality  and tourism industry is that it has aided by:

Lowering costs.Boast operational efficiency.Improve services.The importance of Information systems?

The use of Information system is one that helps us to save information in a database more easily.

Conclusively, the use of Information Technology in the hospitality and tourism sector is one that has span over a  decade and has helped to lower costs and boast operational efficiency.

Learn more about Information systems from

https://brainly.com/question/14688347

What type of light comes from reflections off other objects?

Answers

Light that comes from reflections off other objects is called reflected light.

Task Instructions
In cel E10, create a fomula by entering cell references
that adds cells B9 and B10, and then subtracts cell EB.

Answers

Answer:

= B9 + B10 - E8

Explanation:

Required

Create a formula in E10 that subtracts E8 from the sum of B9 and B10

The sum of B9 and B10 is represented with B9 + B10

When E8 is subtracted, the formula becomes B9 + B10 - E8

To write a formula in Excel, you start with " = " sign.

So, type the following in cell E10

= B9 + B10 - E8

The cell references in this case are the name of the cells; i.e. B9, B10 and E8

Which of the following components could you add to your network rec to help protect your servers from brown outdoor blackouts an ethernet switch patch panel

Answers

Assuming your local area experiences brownouts or blackouts during frequent electrical storms. A component which you could add to your network rack to help protect your servers from brownouts or blackouts include the following: A. UPS.

What is a UPS?

In Computer technology, UPS is an abbreviation for Uninterrupted Power Supply and it can be defined as a device that is designed and developed to with an enhanced battery system, in order to allow a computer and other electrical devices to keep running and functioning for at least a short time in the event of a power disruption or when the incoming (input) power is interrupted.

Generally speaking, a short-term decrease in electrical power availability is typically referred to as a ​brownout.

In order to protect a network equipment such as a router, server, or switch from brownouts or blackouts during frequent electrical storms, you must add an Uninterrupted Power Supply (UPS) to your network rack.

Read more on power here: https://brainly.com/question/23438819

#SPJ1

Complete Question:

Your local area experiences brownouts or blackouts during frequent electrical storms. Which of the following components could you add to your network rack to help protect your servers from brownouts or blackouts?

UPS

Ethernet switch

Patch panel

Wireless controller

An organization has hired a new remote workforce. Many new employees are reporting that they are unable to access the shared network resources while traveling. They need to be able to travel to and from different locations on a weekly basis. Shared offices are retained at the headquarters location. The remote workforce will have identical file and system access requirements, and must also be able to log in to the headquarters location remotely. Which of the following BEST represent how the remote employees should have been set up initially?

a. User-based access control
b. Shared accounts
c. Group-based access control
d. Roaming profiles
e. Individual accounts

Answers

Answer:

A

Explanation:

Ez put me as brainlist

Code to be written in python:

Correct answer will automatically be awarded the brainliest.

One of the senior wizards Yee Sian was trapped in a maze during a mission. The maze has n * m cells, labelled from (0, 0) to (n-1, m-1). Starting at cell (0, 0), each time Yee Sian can only take one step, either to the right or down. We wish to find out the number of possible paths to the destination (n - 1, m - 1). A sample path is shown in the figure below.

Having learnt the technique of speeding up the pascal function through memoization, you decide to apply it here. If Yee Sian can walk out by himself (number of paths > 0), tell him how many ways there are. Otherwise, report to Grandwizard and send a rescue team.

Write a function num_of_paths that takes in two integers representing the number of rows (n) and columns (m) in a maze and returns an integer value of number of paths from cell (0, 0) to cell (n - 1, m - 1). The table and skeleton code are given to you. Your table is essentially a dictionary that stores (i, j): val pairs which indicate the number of paths from cell (0, 0) to cell (i, j).

Note: You may assume that all inputs n and m are valid. i.e. n > 0, m > 0.

Incomplete Code:
table = {} # table to memoize computed values

def num_of_paths(n, m):
# your code here
pass


Test Cases:

num_of_paths(1, 100) 1
num_of_paths(123, 1) 1
num_of_paths(3, 3) 6
num_of_paths(10, 10) 48620
num_of_paths(28, 56) 3438452994457305131328

Answers

Here is the implementation of the num_of_paths function using memoization:


table = {}

def num_of_paths(n, m):
# base cases
if n == 0 or m == 0:
return 1
if (n, m) in table:
return table[(n, m)]
# number of paths is the sum of paths from top and left cells
paths = num_of_paths(n - 1, m) + num_of_paths(n, m - 1)
table[(n, m)] = paths
return paths

print(num_of_paths(1, 100)) # 1
print(num_of_paths(123, 1)) # 1
print(num_of_paths(3, 3)) # 6
print(num_of_paths(10, 10)) # 48620
print(num_of_paths(28, 56)) # 3438452994457305131328


This function uses the fact that the number of paths to a cell is the sum of the number of paths from its top and left cells. The base cases are when either n or m is 0, in which case there is only 1 path (by definition). The function also uses a table dictionary to store the computed values to avoid recalculating them.

Ideally, how often should you back up the data on your computer?

Answers

Answer:

not oftenly, but leave space for other things and important stuff.

You are photographing in a park. You notice that the backyard next to the park may have some interesting photograph possibilities. What should you do?

Answers

Answer:

If I were photographing in a park, and noticed that the backyard next to the park may have some interesting photograph possibilities, I would immediately find a way to bring my art to that place, to get the best possible shots there. To do this, I would evaluate the lighting of the place, the environment, the quantity and quality of elements that were in the place, so that the photographs that I could take there were of the best possible quality.

What is the main difference between a goal and an objective?



A goal is a broad-based projection, and an objective is a set of benchmarks.

A goal is a broad-based projection, and an objective is a specific accomplishment.

A goal is a broad-based projection, and an objective is a set of mini-goals.

A goal is a measurable projection, and an objective is a specific accomplishment

Answers

A goal is a desired outcome, but an objective is a targeted action that may be completed quickly and is frequently tied to a goal.

Give an example of each and explain the difference between an objective and a goal.

Objectives are specified in terms of measurable, tangible targets, whereas goals can be immaterial and unmeasurable. For instance, while "offering great customer service" is an intangible goal, "reducing the client wait time to one minute" is a tangible goal that contributes to the achievement of the primary goal.

What distinguishes educational goals from objectives?

Learning In contrast to aims, which convey a broad declaration of intent, objectives are specific, distinct intentions of student performance. Goals cannot be measured or seen; however, objectives can.

to know more about goals and an objective here:

brainly.com/question/28017832

#SPJ1

Encapsulation is a form of information hiding and an important characteristic of object-oriented programming. When a programmer accesses a property that has been encapsulated, he/she has no way of knowing how that property is implemented. All he/she knows is how to access that property via the public setter and getter methods. What are some examples of encapsulation or information hiding in the Bible

Answers

Answer:

There are a whole lot of encapsulation or information hiding examples in the Bible. Here are about 3 of them:

i. The parables of Jesus. Many times Jesus spoke in parables to teach His disciples and until He's explained they would not get the meaning.

ii. The interpretation of dreams by Joseph. A noticeable example is the one of the baker and the butler in Genesis 40. Each of them - the butler and the baker - both had a dream but the actual meaning and interpretation of those dreams were not known by them.

iii. Peter walking on water is yet another example of encapsulation. He was only following the instruction of the master. How he was able to walk on water was a mystery to him. Only Christ the master knew how. Encapsulation.

Can you identify one syntax error and one logic error in these lines? Why do you think a programmer might have made the logic error

Answers

Answer:

If there are no syntax errors, Java may detect an error while your program is running. You will get an error message telling you the kind of error, and a stack trace that tells not only where the error occurred, but also what other method or methods you were in. For example,

Exception in thread "main" java.lang.NullPointerException

       at Car.placeInCity(Car.java:25)

       at City.<init>(City.java:38)

       at City.main(City.java:49)

Explanation:

Apply _____ to help readers spot trends and patterns in data.Immersive Reader
(1 Point)

wide margins on a printout

conditional formatting

gridlines to the worksheet

a theme to the worksheet

Answers

Answer: conditional formatting

Explanation:

Conditional formatting is typically seen in spreadsheet applications and it enables one to be able to apply formatting to cells which meet s particular criteria.

It can be used to highlight data or information and also enable the readers to spot trends and patterns in data.

, emphasize, or differentiate among data and information stored in a

write a short note on pen drive​

Answers

Answer:

They are called "flash drive" because they use flash memory to store files. Other common names for a flash drive include pendrive, thumbdrive or simply USB. USB flash drives have some advantages over other portable storage devices.A pen drive is a portable Universal Serial Bus (USB) flash memory device for storing and transferring audio, video, and data files from a computer. A pen drive usually has a large storage capacity and provides quick data transfers.

I WILL GIVE BRAINLIEST

Part 1: Write Algorithm
Create an algorithm using pseudocode that someone else can follow. Choose one of the following options:

How to make a grilled cheese sandwich
How to do a load of laundry
How to tie a shoe
My Algorithm for: How To ____________________________________________



Write your instructions below: (use as many steps as needed to complete the task)
1.
2.
3.
4.
5.
6.
7.
8.
9.
10.


Part 2: Test Algorithm and Reflection
Read your algorithm to a friend or family member and ask them to review your steps. Then answer the following questions using complete sentences.

Did you forget to include any of the steps? What feedback did your friend or family member give regarding the steps?


Was your algorithm as detailed or clear as it should have been? What feedback did your friend or family member give you regarding the algorithm?



How could you improve your algorithm to get the expected results?

Answers

Answer:

i know but you to help me ok this answer b

The software that makes grilled cheese sandwiches using pseudocode is provided below. The first of three pseudocode applications created for a task for the Software Engineering Basics course is this one.

What is pseudocode?

Writing out the reasoning of answers to particular coding issues in pseudocode is a process. It is a quick technique to plan out all the code you will need to write before user start actually writing it.

Pseudocode is a simple language description of an algorithm or other system's processes used in computer science. Although pseudocode frequently employs standard programming language structure rules, it is meant to be read by humans rather than machines.

The detail program shall be enclosed in the attached file for the ready reference

Learn more about pseudocode:

https://brainly.com/question/13208346

#SPJ2

Who manages firewalls?

Answers

The network department take responsibility for installing the firewall and maintaining connectivity, and have the information security team handle all administrative tasks, since they're ultimately responsible for writing rules, enforcing policy and serving user requests.

which of the following are considered as bad data​

Answers

The answer is 1 I think

Answer:

where is the answer?????

see the explanation and find the answer

Bad data is an inaccurate set of information, including missing data, wrong information, inappropriate data, non-conforming data, duplicate data and poor entries (misspells, typos, variations in spellings, format etc).

Which of the following gives one reason that explains why computers can solve logic problems?
O Computers can executes steps repeatedly without error.
O Computers follow instructions in a random sequence.
O Computers evaluate criteria without direction.
O Computers are a good option for solving all problems.

Answers

Answer:

Option A

Explanation:

Computers are able to solve the questions based on defined steps again and again without any error. They are even capable of executing ill defined steps correctly. Thus, they can solve the logical problem.

Option C is incorrect because computers can work only in a set direction. Option D is incorrect because here the question is specifically asking about logical problems and not all problems.

Option B is incorrect as sequences cannot be random.

Thus, option A is correct

Option A, Computers can execute steps repeatedly without error. Making them useful when it comes to solving logic problems.

--

B, C, and D are all incorrect because, well usually you don't want a random sequence, you don't want criteria without direction, and they are not the best option for solving all problems, there are alternatives that may be better based off situation.

20. _________ is an example of a hardcore game, while ________ is thought of as a casual game.
a) Angry birds, uncharted
b) Tomb Raider, angry birds
c) Halo, world of warcraft
d) Tetris, Pokemon Go

Answers

Answer:

im about to be a pro mlg pog non sus gamer

Explanation:

the first blank is for C and the second is D

WoW is kinda boring ngl its just a ton of grinding and Halo is pog

What is one advantage that typing has compared to writing by hand?
•It can be done anywhere there's paper.

•Each person's typing has its own individual personality

•There's no special equipment needed.

•It's easier to make corrections.

Answers

Answer: Typing encourages verbatim notes without giving much thought to the information.

Answer: D its easier to correct mistakes

Explanation:

Write a Java program for user defined exception that checks the internal and external marks; if the internal marks is greater than 30 it raises the exception “Internal mark exceeded”; if the external marks is greater than 70 it raises the exception and displays the message “External mark exceeded”, Create the above exception and test the exceptions.

Answers

Answer:

class MarksException extends Exception {

   public MarksException(String message) {

       super(message);

   }

}

public class Main {

   public static void main(String[] args) {

       try {

           checkMarks(35, 80);

       } catch (MarksException e) {

           System.out.println(e.getMessage());

       }

   }

   public static void checkMarks(int internal, int external) throws MarksException {

       if (internal > 30) {

           throw new MarksException("Internal mark exceeded");

       }

       if (external > 70) {

           throw new MarksException("External mark exceeded");

       }

   }

}

Explanation:

Put the networks below in order according to the geographic distance they cover. Put a one next to the network that covers the largest area, a two next to the one that covers the second largest area, etc.

LAN

WAN

MAN

Answers

Answer:

LAN

MAN

WAN

Explanation:


A LAN (Local Area Network) typically covers a small geographic area, such as a single building or campus. A MAN (Metropolitan Area Network) covers a larger geographic area, such as a city or metropolitan region. A WAN (Wide Area Network) covers the largest geographic area, such as a country or the entire world.

Agreeing to third parties' terms of service
- you have removed your digital footprint

-means they can view your information

-means they will protect your information

-tends to result in free gifts

Answers

I think it’s the third one, I think by terms of service you they mean privacy policy so the answer is MEANS THEY WILL PROTECT YOUR INFORMATION.
I’m not sure it can either be b or c, the second or third one. I’m almost positive it’s c. Hope this helps.

Answer: the answer is c - means they can view your information i took the assignment for edgunity

Explanation: i took the assignment for edgunity

Other Questions
q significa I love you? The temperature is -5 degrees. Name the temperature that would make the sum of the two temperatures 0 degrees. EXPLAIN YOUR ANSWER(DO NOT SEND ANY LINKS, YOU WILL GET REPORTED) Given the answer for part D, write an expression that will tell you the direction the robot is going if, in the course of its journey, it turns left 21 times and turns right 22 times. Does the order the robot makes the turns in matter for the purpose of knowing the direction it is finally facing?The answer to part D is in the picture... (-2.04)(4.08) =A)8.3232B)2.04-2.04D)-8.3232 weather characteristics of convectional rainfall I have to do an argumentative essay for English.Please tell me what my essay is missing.The topic of extreme sports is crucial for determining and assessing their risk and knowledge before participating. The people most impacted are children interested in extreme sports and their parents, who are trying to assess the danger. Extreme sports are dangerous; they can result in a painful retirement, broken limbs, and permanently paralyzed body parts. You don't want to be paralyzed by extreme sports, do you?Extreme sports are not worth the risk. They often result in countless injuries with harrowing and surreal consequences. Many celebrities, such as Detroit Lions guard Mike Utley, became paralyzed from the chest down after hitting their heads on the artificial turf in the fourth quarter of a 1991 game, breaking their 6th and 7th cervical vertebrae. There are many examples of NBA players with broken limbs, like Anthony Davis of the Pelicans.Moreover, Vani Sabesan, M.D., an Associate Professor, states, "There is no adequate protection that can prevent accidents, falls, trips, broken bones, and concussions." Over 40,000 injuries related to extreme sports are head and neck injuries, which can be very serious and lead to lifelong disabilities.Landon's family says, "He broke his neck after participating in extreme sports activity." This quote confirms my claim. It shows the disastrous consequences correlated with extreme sports and the inability of children to assess the danger because the brain is still developing.The correlation between young people and sports is negative, and participating in them can have consequences. The outcome of abstinence from extreme sports is fewer injuries, fewer deaths, and less to mourn for. If Japan were regarded as the best electronics manufacturer in the world, what would be true?a. The United States would have a comparative advantage in electronics.b. Japan would have an absolute advantage in electronics production.c. Japan would have a positive balance of trade.d. Japan would have a comparative advantage in electronics manufacturing.e. Japan would have a trade deficit with the United States. Which equation represents a linear function that has a slope of 4/5 and a y-intercept of -6? y=-6x+4/5O y=4/5x-6O y=4/5x+6Oy=6x+ 4/5 What was the main vegetable crop grown by the Olmecs?A) maizeB) peasC) carrotsD) okra Can bacteria live in a wide range of environments? If you have 10 friends and make two equal teams, what fraction do you use?Its not 10/2 guys Who fought in the Crimean War ? You can right-click the target cell or cells and then select the option or press the keys to paste the copied data. solve 5/8 + 3/4 divided by -2/3 - 5/ Why were the borderstates important to bothsides in the Civil War? What are the negative effects of digital world? From "The Tyranny of Things" by Elizabeth MorrisOnce upon a time, when I was very tired, I chanced to go away to a little house by the sea. "It is empty," they said, "but you can easily furnish it." Empty! Yes, thank Heaven! Furnish it? Heaven forbid! Its floors were bare, its walls were bare, its tables there were only two in the house were bare. There was nothing in the closets but books; nothing in the bureau drawers but the smell of clean, fresh wood; nothing in the kitchen but an oil stove, and a few a very few dishes; nothing in the attic but rafters and sunshine, and a view of the sea. After I had been there an hour there descended upon me a great peace, a sense of freedom, of in finite leisure. In the twilight I sat before the flickering embers of the open fire, and looked out through the open door to the sea, and asked myself, "Why?" Then the answer came: I was emancipated from things. There was nothing in the house to demand care, to claim attention, to cumber my consciousness with its insistent, unchanging companionship. There was nothing but a shelter, and outside, the fields and marshes, the shore and the sea. These did not have to be taken down and put up and arranged and dusted and cared for. They were not things at all, they were powers, presences.And so I rested. While the spell was still unbroken, I came away. For broken it would have been, I know, had I not fled first. Even in this refuge the enemy would have pursued me, found me out, encompassed me.If we could but free ourselves once for all, how simple life might become! One of my friends, who, with six young children and only one servant, keeps a spotless house and a soul serene, told me once how she did it. "My dear, once a month I give away every single thing in the house that we do not imperatively need. It sounds wasteful, but I dont believe it really is. Sometimes Jeremiah mourns over missing old clothes, or back numbers of the magazines, but I tell him if he doesnt want to be mated to a gibbering maniac he will let me do as I like."The old monks knew all this very well. One wonders sometimes how they got their power; but go up to Fiesole, and sit a while in one of those little, bare, white-walled cells, and you will begin to understand. If there were any spiritual force in one, it would have to come out there.I have not their courage, and I win no such freedom. I allow myself to be overwhelmed by the invading host of things, making fitful resistance, but without any real steadiness of purpose. Yet never do I wholly give up the struggle, and in my heart I cherish an ideal, remotely typified by that empty little house beside the sea.Which central idea is not discussed in Morriss essay? aThe loss of things bThe beauty of things cThe passion for things dThe call for things Superior Segway Tours gives sightseeing tours around Chicago, Illinois. It charges a one-time fee of $40, plus $35 per hour. What is the slope of this situation? A: 80 B: 65 C: 40 D: 35 Suppose your college or organization is considering a new project to develop an information system that would allow all employees, students, and customers to access and maintain their own human resources information, such as address, marital status, and tax information. The main benefits of the system would be a reduction in human resources personnel and more accurate information. For example, if an employee, student, or customer had a new telephone number or email address, he or she would be responsible for entering the data in the new system. The new system would also allow employees to change their tax withholdings or pension plan contributions. Identify five potential risks for this new project and be sure to list some negative and positive risks. Required:Provide a detailed description of each risk and propose strategies for addressing each risk. Giving brainly to who ever answers first.