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
Lunna [17]
3 years ago
13

Lesson 1 (4.0 points)

Computers and Technology
2 answers:
sesenic [268]3 years ago
8 0


3. Hold down the CTRL, ALT, and DELETE keys simultaneously, click Task Manager option, then right-click the frozen program's name, and finally click the end task button.


KATRIN_1 [288]3 years ago
6 0

1. What is code?

text that is written in a human-readable programming language that a computer can also interpret.

2. What does the Python(command line) interpreter’s command prompt look like? (0.5 points)

It looks like this: >>>

3. Name at least one way to deal with a frozen window. (0.5 points)

If the Python (command line) window freezes, select the  

Close button to force the window to close, and then reopen the window and repeat any steps that were lost.

4. What does the reset() command do? (1.0 points)

erases everything drawn by the turtle and moves the turtle back to its starting position.

5. What is an argument? (1.0 points)

 a letter, number, word, or combination of those that a command needs in order to work.

Lesson 2

1. What is the radius of a circle? (1.0 points)

is the distance from the center of the circle to the line of the circle. The larger the radius, the larger the circle drawn by the turtle will be.

2. In the circle() command, what is the steps argument? (1.0 points)

If the circle() command has a positive number argument, the turtle will draw a circle moving forward counterclockwise from its starting place.

3.In the forward() command, what does the number argument inside the parentheses do? (1.0 points)  (NOT 100% sure about this one but was on the same line in content and said same thing so went with it ^w^)

This number describes the radius of the circle that should be drawn.

all ive got for now

You might be interested in
Sending a busy manager a long email represents a problem in which area of the communication process
FromTheMoon [43]
Time management,they wouldn’t have enough time to read it and they would become more stressed out
3 0
4 years ago
A/An _______ occupies a continuous block of multiple pieces of data.
Ulleksa [173]
The answer to your question is A group
5 0
3 years ago
Read 2 more answers
After class a student asked why you would ever use a heap instead of a binary search tree. Provide a good explanation for why an
sertanlavr [38]

Answer:

Heap is useful when you want to find max/min element in the given list

BinarySearchTree is used if you need sorted elements of the list

Explanation:

Heap is Good at finding Min/Max and it's time complexity is  (O(1)), while BST is good at all finds (O(logN)). Insert is O(logN) for Heap and BSTstructures..

Max Heap ensures that elements on higher levels are greater than elements at lower level

MinHeap ensures that elements on higher levels are lesser than elements at lower level

BST gives sorted elements by following order (left,root,right).If we want sorted elements we can go with BST

5 0
3 years ago
Design a class called NumDays. The class’s purpose is to store a value that represents a number of work hours and convert it to
pickupchik [31]

Answer:

Check the explanation

Explanation:

#include <iostream>

#include <string>

using namespace std;

//class declaration

class NumDays{

private:

   double hours;

   double days;

public:

   //constructor

   NumDays(double h = 0){

       hours = h;

       days = h/(8.00);

   }

   //getter functions

   double getHours(){

       return hours;

   }

   double getDays(){

       return days;

   }

   //setter functions

   void setHours(double h){

       hours = h;

       days = h/(8.00);

   }

   void setDays(double d){

       days = d;

       hours = d*(8.00);

   }

   //overload + operator

   double operator+ (const NumDays &right){

       return hours+right.hours;

   }

   //overload - operator

   double operator- (const NumDays &right){

       //check if subtraction will give negative value

       if(hours < right.hours){

           cout << "ERROR! Cannot subtract! Now terminating!\n";

           exit(0);

       }

       return hours-right.hours;

   }

   //overload prefix ++ operator

   NumDays operator++(){

       //pre-increment hours member

       ++hours;

       //update days member

       days = hours/(8.00);

       //return modified calling object

       return *this;

   }

   //overload postfix ++ operator

   NumDays operator++(int){

       //post-increment hours member

       hours++;

       //update days member

       days = hours/(8.00);

       //return modified calling object

       return *this;

   }

   //overload prefix -- operator

   NumDays operator--(){

       //pre-decrement hours member

       --hours;

       //update days member

       days = hours/(8.00);

       //return modified calling object

       return *this;

   }

   //overload postfix -- operator

   NumDays operator--(int){

       //post-decrement hours member

       hours--;

       //update days member

       days = hours/(8.00);

       //return modified calling object

       return *this;

   }

};

int main()

{

   //create first object

   cout << "Creating object with 12 hours...\n";

   NumDays obj1(12);

   cout << obj1.getHours() << " hours = " <<obj1.getDays() << " days.\n";

   //create second object

   cout << "\nCreating object with 18 hours...\n";

   NumDays obj2(18);

   cout << obj2.getHours() << " hours = " <<obj2.getDays() << " days.\n";

   //test overloaded + operator

   cout << endl << "Adding hours... " << obj1 + obj2 << " hours.\n";

   //test overloaded - operator

   cout << endl << "Subtracting hours... " << obj2 - obj1 << " hours.\n\n";

   //test overloaded ++ operators

   cout << "Pre- and post-incrementing first object...\n";

   ++obj1;

   cout << obj1.getHours() << " hours = " <<obj1.getDays() << " days.\n";

   obj1++;

   cout << obj1.getHours() << " hours = " <<obj1.getDays() << " days.\n";

   //test overloaded -- operators

   cout << "\nPre- and post-decrementing second object...\n";

   --obj2;

   cout << obj2.getHours() << " hours = " <<obj2.getDays() << " days.\n";

   obj2--;

   cout << obj2.getHours() << " hours = " <<obj2.getDays() << " days.\n";

   return 0;

}

7 0
4 years ago
Read 2 more answers
In Windows-based systems, a value that specifies the rights that are allowed or denied in an access control entry (ACE) of an ac
blsea [12.9K]

Answer:

C. Access mask discretionary.

Explanation:

Access_Mask is the value that defines the rights used in access control entries (ACE), this value identifies if the trustee is allowed to access a secured object.

It can define rights in three categories: Standard, specific and generic rights.

4 0
3 years ago
Other questions:
  • After a suspected identity fraud case has been resolved, you should: AContinue to monitor your credit reports and accounts. BKee
    12·2 answers
  • Difference between query and filter<br><br>​
    12·1 answer
  • Blank determines the overall brightness or darkness of an entire image
    5·1 answer
  • Which of the following representations in two's complement notation represents the largest value?
    12·2 answers
  • When you leave your computer for a short period of time, why should you put your computer into Standby mode?
    5·2 answers
  • All NATE specialties are offered at two levels, A. journeyman and master. B. installation and service. C. apprentice and journey
    7·1 answer
  • Write a partial class that shows a class constant and an instance method. Write an instance method that converts feet to inches
    9·1 answer
  • WILL GIVE BRAINLIEST!!!!
    14·2 answers
  • Which validation method would you use for first name on a data form
    15·1 answer
  • Reality and computer-generated simulations can solve a lot of problems
    14·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!