1answer.
Ask question
Login Signup
Ask question
All categories
  • English
  • Mathematics
  • Social Studies
  • Business
  • History
  • Health
  • Geography
  • Biology
  • Physics
  • Chemistry
  • Computers and Technology
  • Arts
  • World Languages
  • Spanish
  • French
  • German
  • Advanced Placement (AP)
  • SAT
  • Medicine
  • Law
  • Engineering
Misha Larkins [42]
3 years ago
8

List the operating system you recommend, and write a sentence explaining why.

Computers and Technology
1 answer:
Andrei [34K]3 years ago
7 0

Answer:

The type of operating system I reccommend really depends on how you use computers

Explanation:

If you want strict productivity/gaming: Windows

If you are a programmer/pen tester: Linux

If you want an easy interface: MacOS X

If you believe in God's third temple: Temple OS

Windows is probably the best for most users due to its balance of a simple interface and its many capabilities. It is also the best OS for gaming due to lack of support in many other OS's.

Linux is pretty much terminal-based with an interface if you need help. Only use this if you know your way around computers well. However, this OS allows you to use many tools that are impossible to use on another OS. This is the OS that many programmers, hackers, and other computer people use due to its coding-oriented environment.

If you like simple then use MacOS. The only problem is that it's only available on apple devices, so you have to pay a pretty penny to use it. This is also a unix-based OS meaning it has SOME linux capabilities.

RIP Terry A. Davis. Temple OS was designed to be the 3rd temple of God prophesized in the bible and created by Terry Davis ALONE over a bunch of years. He made this OS after receiving a revelation from God to make this. According to Davis, all other Operating Systems are inferior and Temple OS is the OS that God uses.

You might be interested in
Order the steps needed to design a relational database.
tia_tia [17]

Answer:

1. List the fields needed to gain information

2. Break down the date into smaller parts

3. identify the fields holding stored data

4.distribute the fields into tables by subject

5. identify the common fields for linking tables

Explanation:

edge 2021

5 0
3 years ago
What is it called when memory that is stored on chips located near the mother board
Paul [167]
This is referred to as Random Access Memory (RAM), and is used when the computer needs to recall tasks quickly, as opposed to more slowly when it uses the hard drive.
5 0
3 years ago
Read 2 more answers
The game begins with the player having 20 POINTS
kompoz [17]

Answer:

Following are the code to this question:

import random#import package for using random method  

def rolling_dice(): #defining method rolling_dice that uses a random number to calculate and add value in dice1 and dice2 variable

   dice1 = random.randint(1,6)

   dice2 = random.randint(1,6)

   return dice1 + dice2

def rolling(): # defining method rolling

   n_roll = 0  # defining num variable that initial value that is 0.

   p = 20 # defining variable p for looping, that points in between 1 and 59

   while p > 0 and p < 60: # defining loop that counts value dice value two times  

       d = rolling_dice()#defining d variable that hold method value

       n_roll+= 1 #defining n_roll that increment n_roll value by 1

       if d == 7 or d == 11:# defining if block that uses the d variable that checks either 7 or 11, player won d in p variable

           p+= d   # use p variable that adds d variable

       elif d == 2 or d == 3 or d == 12:#defining elif block to that checks d variable by using or operator  

           p-= d#defining d variable that decreases d variable variable

       else: # defining else block

           p1 = d # using p1 variable that store d value  

           while True:# defining loop that calculates values

               d = rolling_dice()#defining d variable that holds method values

               n_roll += 1 #increment the n_roll value by 1

               if d == 7:#defining if block that checks d value equal to 7

                   p -= p1#subtract the value of p1 in p variable  

                   break # exit loop

               elif d == p:#defining elif block to check d value is equal to p

                   p += p1#adds the value of p1 in p variable  

                   break#using break keyword

   if p<= 0:#defining if block that checks p-value is less then equal to 0  

       print('Player lost')#using print method

   elif p>= 60:#defining else block that checks p-value is greater than equal to 60

       print('Player won')#using print method to print the value

   print('number of dice rolls:', n_roll)#use print method to print n_rolls value

rolling()

Output:

Player lost

number of dice rolls: 38

Explanation:

In the above-given python code, a method "rolling_dice" is declared, inside the method two-variable "dice1 and dice2" is declared, that uses the random method to calculate the value in both variable and use the return keyword to add both values.

  • In the next step, another method the "rolling"  is declared, inside the method "n_roll and p" is declared that assigns the values and use the two while loop, inside the loop if block is defined that calculates the values.
  • In the next step, a condition block is used that stores value in the p variable and use the print method to print the "n_roll" value.  
8 0
3 years ago
In the code segment below, assume that the int variable n has been properly declared and initialized. The code segment is intend
Daniel [21]

Answer:

Option a is the correct answer for the above question.

Explanation:

The question wants the output of "one more than the double of n".It is also called as "2n+1".Then the value of n will be multiplied by 2 and then 1 will be added on it.

It is formed by the option 'a' which have two statements. The first statement multiplies the value of n by 2 and stores it into result and the value becomes twice of n and then the second statement adds the 1 value to the result value and again store the value in the result. So the result variable stores the (2*n) +1 value. Hence Option a is correct while the other is not because--

  • Option b gives the result value as "2(n+1)", which can be 2*n+2.
  • Option c gives the result value as same as the option b.
8 0
4 years ago
Write a C++ program which prompts user to choose from the two alternative funtions specified below, each of which passes a rando
melomori [17]

Answer:

#include <iostream>   //header file

#include <stdlib.h>    

#include <time.h>      

using namespace std;       // using namespace

string call_by_value(int num)    // call by value

{

  if(num==1)

  return "hello sir!";

  if(num==2)

  return "what's going on?";

  if(num==3)

  return "howz you master?!";

  if(num==4)

  return "i m fine!";

}

string call_by_reference(int *num)       //call by reference

{

  if(*num==1)

  return "hello sir!!";

  if(*num==2)

  return "what's going on?";

  if(*num==3)

  return "howz you master?";

  if(*num==4)

  return "i m fine";

}

int main() {                      //main function

  int n,v,r;

  string str;

  srand (time(NULL));

  cout<<"enter a value 1 and 2 for choice and -1 for exit : ";

  cin>>n;

  while(n!=-1)

  {

      if(n==1)

      {

          int num = (rand()%(4)) + 1;

          str=call_by_value(num);

          cout<<str<<endl;

      }

      else if(n==2)

      {

          int num = (rand()%(4)) + 1;

          str=call_by_reference(&num);

          cout<<str<<endl;

      }

      else

      cout<<"invalid input !"<<endl;

      cout<<"enter a value 1 and 2 for choice and -1 for exit :";

      cin>>n;

  }

  return 0;

}

Explanation:

Firstly, we declare three header files, then use namespace

Then, create the module of call by value and then call by reference.

Then we define the main() function in which we call both the modules.

3 0
3 years ago
Other questions:
  • Which of the following values is an example of a floating point number?
    12·1 answer
  • The c++ operator _______________ is used to destroy dynamic variables.
    5·1 answer
  • A packet analyzer is a program that can enable a hacker to do all of the following EXCEPT ________. Select one: A. assume your i
    6·1 answer
  • An example of negative self-talk is:
    13·2 answers
  • Identify the type of error described
    6·1 answer
  • A network manager is interested in a device that watches for threats on a network but does not act on its own, and also does not
    7·1 answer
  • Which of the following correctly describes the reason for quality customer service?
    9·1 answer
  • How to run angular project from github.
    7·1 answer
  • How do I fix when it hits the second session it skips scanf..
    14·1 answer
  • Data erasure software uses standards that are called.
    5·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!