if you have two folders open on your desktop and you want to move a file from one folder to the other, simply ___ the file.

Answers

Answer 1

if you have two folders open on your desktop and you want to move a file from one folder to the other, simply Drag and Drop the file.

What are the different ways to move or copy a file or folder?

By dragging and dropping with the mouse, using the copy and paste commands, or by utilizing keyboard shortcuts, a file or folder can be transferred or relocated to a new location.

Note that in Drag & drop, Just like you would with a file on your desktop, you can move a file or folder from one folder to another by dragging it from its present location and dropping it into the destination folder.

Learn more about copying files from

https://brainly.com/question/17019048
#SPJ1


Related Questions

The main issues covered by IT law are: Hardware licensing Data privacy Department security True False

Answers

The main issues covered by IT law are: Hardware licensing, Data privacy, Department security is a true statement.

What topics are addressed by cyber law?

There are three main types of cyberlaw:

Human-targeted crimes (e.g.: harassment, stalking, identity theft) Vandalism of property (e.g.: DDOS attacks, hacking, copyright infringement) The theft from the govt (e.g.: hacking, cyber terrorism)

Cyber law includes provisions for intellectual property, contracts, jurisdiction, data protection regulations, privacy, and freedom of expression. It regulates the online dissemination of software, knowledge, online safety, and e-commerce.

Note that some Internet security issues that must be considered are:

Ransomware Attacks. IoT Attacks. Cloud Attacks. Phishing Attacks.Software Vulnerabilities, etc.

Learn more about IT law from

https://brainly.com/question/9928756
#SPJ1  

4. A piece of wire of cross-sectional area 2 mm² has a resistance of 300.Find the resistance of a wire of the same length and material if the cross-sectional area is 5 mm². the cross-sectional area of a wire of the same length and material of resistance 750.​

Answers

The resistance of a wire of the same length is 750Ω.The cross-sectional area of a wire is 5mm².

What is cross-sectional area?

The area of a two-dimensional shape obtained when a three-dimensional object, such as a cylinder, is sliced perpendicular to some defined axis at a point is known as the cross-sectional area. A cylinder's cross-section, for example, is a circle when sliced parallel to its base.

The solution of the question will be:

A= 2mm²

= 2 × 10⁻⁶m

R= 300Ω

Let, the resistance= R¹

A¹ = 5mm²

= 5 × 10⁻⁶m.

(R= lA/l)/(R¹= lA¹/l)

⇒ R/R¹ = A/A¹

⇒R¹/R = A¹/A

R¹ = A¹/A × R

    = (5×10⁻⁶/2×10⁻⁶) × 300

    = 750Ω

Let, the area be A¹¹

A¹¹ = ?, R¹¹ = 750Ω

R¹¹/R = A¹¹/A

(750/300) = (A¹¹/2 × 10⁻⁶)

⇒A¹¹ = (750/300) × (2 × 10⁻⁶)

=5 × 10⁶

=5mm²

To learn more about cross-sectional area

https://brainly.com/question/12820099

#SPJ13

which type of infrastructure service stores and manages corporate data and provides capabilities for analyzing the data?

Answers

Services for managing and storing corporate data as well as giving users the tools to analyze it.

VoIP, also known as IP telephony, enables users to place or receive phone calls through a broadband internet connection. In this regard, VoIP serves as the foundational technology for the online transmission of speech and other multimedia material. The services offered by all the software and hardware are the main emphasis of IT infrastructure. IT infrastructure is a group of company-wide services that management budgets for and consists of both technical and human resources. SaaS offers on-demand or recurring delivery of software programs through the internet. The cloud service providers host, control, and manage the software program as well as look after the supporting infrastructure.

Learn more about Services here-

https://brainly.com/question/12096912

#SPJ4

Select the three main repetition structures in Java.

Answers

The three main repetition structures in Java are while loops, do-while loops and for loops.

What is java?

Java is a high-level, class-based, object-oriented programming language with a low number of implementation dependencies. It is a general-purpose programming language designed to allow programmers to write once and run anywhere (WORA), which means that compiled Java code can run on any platform that supports Java without the need for recompilation. Java applications are usually compiled to bytecode which can run on any Java virtual machine (JVM), regardless of computer architecture. Java's syntax is similar to that of C and C++, but it has very few low-level facilities than either of them. The Java runtime supports dynamic capabilities that traditional compiled languages do not have.

To learn more about java

https://brainly.com/question/25458754

#SPJ13

A high school has 1000 students and 1000 lockers, one locker for each student. On the first day of school, the principal plays the following game: She asks the first student to go and open all the lockers. She then asks the second student to go and close all the even-numbered lockers. The third student is asked to check every third locker. If it is open, the student closes it; if it is closed, the student opens it. The fourth student is asked to check every fourth locker. If it is open, the student closes it; if it is closed, the student opens it. The remaining students continue this game. In general, the nth student checks every nth locker. If the locker is open, the student closes it; if it is closed, the student opens it. After all the students have taken their turn, some of the lockers are open and some are closed. Write a C++ program that prompts the user to enter the number of lockers in a school. After the game is over, the program outputs the number of lockers that are opened.

Answers

#include <bits/stdc++.h>

static int counter=0;

int check_locker(int num) {

 //Pass the first student. All lockers are open.

 std::vector<int> lockers(num,1);

 //Second student. Close the even locker(s).

 for(int i=1;i<=lockers.size();i++) {

   if(i%2==0) {

     lockers.at(i-1)=0;

   } else {

     ;;

   }

 }

 //Each n. student will check.

 for(int j=3; j<=lockers.size();j++) {

   for(int m=j; m<=lockers.size();m+=j) {

     if(lockers.at(m-1)==1) lockers.at(m-1)=0;

     else lockers.at(m-1) = 1;

   }

 }

 //Count 1's

 for(auto& c:lockers) {

   if(c==1) counter++;

   else ;;

 }

 /*For debug purposes, if you want to print the locker's status, activate!

   for(auto& p:lockers) {

   std::cout << p << " ";

 }

 

 */

 return counter;

}

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

 //Get the amount of lockers from user.

 std::cout << "How many lockers does the school have?: ";

 int idx; std::cin>>idx;

 //Waiting..

 std::cout << "Evaluating..\n";

 std::this_thread::sleep_for(std::chrono::milliseconds(1000));

 //Send data into check_locker()

 std::cout << "There is/are " << check_locker(idx) << " open locker(s)." << std::endl;

 return 0;

}

Chris is unfamiliar with the word processing program he is using. He wants to find
the drop-down text-driven options for the document view because he does not yet
recognize the icons at the top of the window. Where can Chris find these drop down
options?

Answers

Answer:

Explanation:

Chris is unfamiliar with the word processing program he is using. He wants to find the drop-down text-driven options for the document view because he does not yet recognize the icons at the top of the window. Where can Chris find these drop down options?

Question 4 options:

Options bar

Scroll bar

Toolbar

Menu bar

Driving is expensive. Write a program (in Python) with a car's miles/gallon and gas dollars/gallon (both floats) as input, and output the gas cost for 20 miles, 75 miles, and 500 miles.


Output each floating-point value with two digits after the decimal point, which can be achieved as follows:

print('{:.2f} {:.2f} {:.2f}'.format(your_value1, your_value2, your_value3))

Answers

x=float(input("How many miles can your vehicle travel on 1 gallon of gasoline?: "))

y=float(input("How much does 1 gallon of gasoline cost?: "))

print('20 miles: {:.2f}$\n75 miles: {:.2f}$\n500 miles: {:.2f}$'.format((20/x)*y, (75/x)*y, (500/x)*y))

I don't know who to do this assignment
An employee’s total weekly pay equals the hourly wage multiplied by the total number of regular hours plus any overtime pay. Overtime pay equals the total overtime hours multiplied by 1.5 times the hourly wage. Write a program that takes as inputs the hourly wage, total regular hours, and total overtime hours and displays an employee’s total weekly pay.

Answers

Python:

wage=int(input("What the hourly wage?: "))

total_reg_hours=int(input("Enter total regular hours: "))

total_over_hours=int(input("Enter total overtime hours: "))

#Calculate the weekly pay.

print("The weekly pay of this employee is ",(total_reg_hours*wage)+(total_over_hours*(1.5*wage)))

C++:

#include <iostream>

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

   int wage,t_reg,t_over;

   std::cout << "Enter wage: "; std::cin>>wage;

   std::cout << "\nEnter total regular hours: "; std::cin>>t_reg;

   std::cout << "\nEnter total overtime hours: "; std::cin>>t_over;

   

   //Calculate the weekly pay.

   std::cout << "The weekly pay of this employee is " << (t_reg*wage)+(t_over*1.5*wage) << std::endl;

   return 0;

}

Ali receives an email from a person posing as a bank agent, who asks Ali to share his bank account credentials. Which type of network attack does this scenario indicate?
The network attack in this scenario is . This attack can occur .

Answers

Phishing is the type of network attack which this scenario indicates. This type of attack can take place via electronic messages.

What is network attack?

Network attacks are illegal activities on digital assets within an organization's network. Malicious parties typically use network assaults to change, destroy, or steal private data. Network attackers typically target network perimeters in order to obtain access to interior systems. In a network attack, attackers aim to breach the business network perimeter and obtain access to internal systems. Once inside, attackers frequently combine different forms of assaults, such as compromising an endpoint, propagating malware, or exploiting a weakness in a system within the network.

To learn more about network attack

https://brainly.com/question/14980437

#SPJ13

Summary
In this lab, you add a loop and the statements that make up the loop body to a C++ program that is provided. When completed, the program should calculate two totals: the number of left-handed people and the number of right-handed people in your class. Your loop should execute until the user enters the character X instead of L for left-handed or R for right-handed.

The inputs for this program are as follows: R, R, R, L, L, L, R, L, R, R, L, X

Variables have been declared for you, and the input and output statements have been written.

Instructions
Ensure the source code file named LeftOrRight.cpp is open in the code editor.

Write a loop and a loop body that allows you to calculate a total of left-handed and right-handed people in your class.

Execute the program by clicking the Run button and using the data listed above and verify that the output is correct.

Answers

The loop on the statement regarding the program is illustrated below.

How to illustrate the loop?

A loop is used to repeatedly execute a specific block of code. For loops and while loops are the two major forms of loops.

A loop is a set of instructions in computer programming that is repeatedly repeated until a given condition is met. Typically, a process is performed, such as retrieving and modifying data, and then a condition is verified, such as whether a counter has reached a predetermined number.

This will be:

// LeftOrRight.cpp - This program calculates the total number of

//left-handed and right-handed

// students in a class.

// Input: L for left-handed; R for right handed; X to quit.

// Output: Prints the number of left-handed students

//and the number of right-handed students.

#include <iostream>

#include <string>

using namespace std;

int main()

{

// L or R for one student.

string leftOrRight = "";

// Number of right-handed students.

int rightTotal = 0;

// Number of left-handed students.

int leftTotal = 0;

// This is the work done in the housekeeping() function

cout << "Enter an L if you are left-handed, a R if you are right-handed or X to quit: ";

cin >> leftOrRight;

//Use while loop repeat the loop until X is found

while (leftOrRight != "X")

{

//if the above input is R increment

//rightTotal by 1

if (leftOrRight == "R")

rightTotal++;

//if the above input is L increment

//leftTotal by 1

else if (leftOrRight == "L")

leftTotal++;

//read the move again

cin >> leftOrRight;

}

// This is the work done in the detailLoop() function

// Write your loop here.

// This is the work done in the endOfJob() function

// Output number of left or right-handed students.

cout << "Number of left-handed students: " << leftTotal << endl;

cout << "Number of right-handed students: " << rightTotal << endl;

return 0;

}

Learn more about loop on:

https://brainly.com/question/16922594

#SPJ1

You read an interesting article about data analytics in a magazine and want to share some ideas from the article in the discussion forum. In your post, you include the author and a link to the original article. This would be an inappropriate use of the forum.

Answers

It is FALSE to state that if one read an interesting article about data analytics in a magazine and wants to share some ideas from the article and a discussion forum, that if one in their your post, includes the author and a link to the original article, that this would be an inappropriate use of the forum.

Why is the above assertion false?

The above assertion is false because:

One will be sharing relevant information in the group;One will also be referencing the owner of such information.

An Internet forum, often known as a message board, is a website where individuals may have conversations in the form of posted messages. Unlike discussion rooms, messages are frequently longer than one line of text and are at least briefly stored.

The nature of discussion forums is reflective. They require pupils to study opposing viewpoints and carefully evaluate their reactions. Many students find the social parts of the face-to-face classroom difficult, particularly ESL speakers, new students, and those who are plain shy or quiet.

Learn more about the Use of Forum:

https://brainly.com/question/13707619

#SPJ1

Full Question:

TRUTH or FLASE: You read an interesting article about data analytics in a magazine and want to share some ideas from the article and a discussion forum. In your post, you include the author and a link to the original article. This would be an inappropriate use of the forum.

answer the following questions in 1 minute
actuator
connector
sensor

Answers

Answer: sensor

Explanation:

Which option determines the number of pages, words, and characters in a
document?
View Print Layout
File > Properties
Tools > AutoCorrect
Tools Word Count

Answers

View>print layout because it just makes sense


LEDS produce light using a:

Answers

LEDs produce light using a process called electroluminescence.

What is LED?

When current travels through a light-emitting diode (LED), it emits light. Electrons recombine with electron holes in the semiconductor, producing energy in the form of photons.

A light-emitting diode (LED) is a semiconductor diode that emits light when an electric current passes through it. An effect is a form of electroluminescence. The energy required for electrons to pass the semiconductor's band gap determines the hue of the light (equivalent to the energy of photons). Multiple semiconductors or a coating of light-emitting phosphor on the semiconductor device are used to generate white light.

To learn more about LED

https://brainly.com/question/24506043

#SPJ13

How should companies incorporate Agile methodology into their initiatives?

Answers

Answer:

down below

Explanation:

be more carful with things double checking because we are not perfect mistakes can be made , and shipping and packaging needs to better jobs with delivering items and for the not to be broken or box damaged

Stem assessment 4: divisible by

Answers

Explanation:

4 IS DIVISIBLE BY 2,4,1

IF MY ANSWER IS USEFUL MARK ME AS BRILLINT

Palindrome.java

Question:
Write an application that determines whether a phrase entered by the user is a palindrome. A palindrome is a phrase that reads the same backward and forward without regarding capitalization or punctuation. For example, “Dot saw I was Tod”, “Was it a car or a cat I saw”, and “Madam Im Adam” are palindromes. Display the appropriate feedback: You entered a palindrome or You did not enter a palindrome.

CODE:
import java.util.*;
public class Palindrome {
public static void main(String[] args) {

Scanner sc = new Scanner(System.in);
System.out.println("Enter phrase : ");
String phrase = sc.nextLine();
phrase = phrase.replace(" ", "").toLowerCase();
phrase = phrase.replaceAll("[^a-zA-Z0-9]", "");
int i = 0, j = phrase.length() - 1;
boolean ispalindrome= true;
while (i < j) {
if (phrase.charAt(i) != phrase.charAt(j)) {
ispalindrome = false;
}
i++;
j--;
}

if(ispalindrome)

{
System.out.println("you entered a palindrome.");
}
else
{
System.out.println("you did not enter a palindrome.");
}



}
}

RESULTS:

50% good

pls help

Answers

Ok, where is the phrase that we are trying to determine to see if it’s a palindrome. I can help you with this, I just need the provided phrase that was given with the question as well. All I see is transcripts below

hr has just informed you that jessica jones has recently gotten married and changes her name to jessica smith. she has requested that her jjones username be changed to jsmith. what command would accomplish this?

Answers

The command to accomplish this would be: usermod -l jsmith jjones.

What is command?

A command in computing is a request to a computer programme to complete a specified task. It can be issued using a command-line interface, such as a shell, as input to a network service as part of a network protocol, or as an event in a graphical user interface triggered by the user picking an item from a menu. The term command is used specifically in imperative computer languages. The name comes from the fact that sentences in these languages are typically written in an imperative mood, which is common in many natural languages.

To learn more about command

https://brainly.com/question/27986533

#SPJ4

Data for each typeface style is stored in a separate file.
a. True
b. False

Answers

Data for each typeface style is stored in a separate: a. True.

What is a typeface?

In Computer technology, a typeface can be defined as a design of lettering or alphabets that typically include variations in the following elements:

SizeSlope (e.g. italic)Weight (e.g. bold)Width

Generally speaking, there are five (5) main classifications of typeface and these include the following:

SerifSans serifScriptMonospacedDisplay

As a general rule, each classifications of typeface has its data stored in a separate for easy access and retrieval.

Read more on typeface here: https://brainly.com/question/11216613

#SPJ1

Eunice Lee likes technology and video games, so she is thinking of pursuing a career as a video game designer. Research the requirements of a video game designer. What kinds of interests, skills, and courses do you need? What is a typical career path for someone in the video game field

Answers

In order to be a video game designer, one must have:

Creativity.A love of video games.Storytelling talent.Broad understanding of game trends.Strong analytical abilities.Outstanding programming abilities.Capability to collaborate as part of a team.

How can a typical career path for someone in the video game field be described?

A popular job path is to begin as a game artist before progressing to lead artist and finally creative director. This is an excellent profession for anybody wishing to develop their creative muscles, and no two projects are ever the same.

A bachelor's degree in art and design, multimedia design, or a similar discipline is required for the majority of video game designers. Some colleges provide a degree in video game design. Software engineering, 2D and 3D animation, computer languages, and computer design are common courses.

Learn more about Video Game Designer:
https://brainly.com/question/14788186
#SPJ1



some websites and organizations organize card drives, sending thousands of cards to u.s. troops overseas. besides the support these cards express, what else do they provide through the power of language?

Answers

Besides the support these cards express, identity provide through the power of language.

What do you mean by power of language?

The power of language is comprised of two main components: the power to talk and be understood, and the ability to listen and comprehend. Individuals with high language skills can communicate effectively in social situations. When non-native speakers participate in oral communication, native speakers of that language identify sufficiently well-formed speech, in the sense that it is sufficiently 'native' or close to what they know as 'their language' to be totally understood. Non-native speakers must be capable of comprehending and digesting words delivered at real-world rates of speech in the manner spoken by native speakers of that language when listening to a secondary language.

The card drives that send thousands of cards to US troops deployed around the world also establish identity through the power of language.

To learn more about power of language

https://brainly.com/question/28275319

#SPJ4

Answer: comfort

Explanation:

word feature that allows you to copy all the format settings applied to selected text to the other text that you want to format in a similar way is called

Answers

Select the full paragraph, such as the paragraph mark, if you wish to duplicate the text and paragraph formatting. Within the Clipboard group is Format Painter. In the Clipboard group of the Message tab, select Format Painter. Format Painter stands alone.

What is Format Painter?
Use Format Painter to swiftly apply the same formatting to numerous pieces of text or pictures, such as colour, font style and size, and border style. Think of it as pasting and copying for formatting. With format painter, you may copy all of the formatting from one object then apply it to another. Character and paragraph formats can be copied and pasted into text using the Format Painter tool. The Format Painter tool is located on the Home tab of a Microsoft Word Ribbon and can be used in conjunction with styles to organise and reformat documents more quickly and easily. Format Painter can be found in earlier versions of Microsoft Word on the toolbar above the menu bar at the top of the programme window.

To learn more about format painter
https://brainly.com/question/10869688
#SPJ4

Which menu option allows you to change the display to close-up, single, or multiple pages?

Question 3 options:

Insert


Edit


View


File

Answers

The menu option that allows you to change the display to close-up, single, or multiple pages is view. The correct option is C.

What is menu option?

A menu is a set of options presented to a computer application user to assist them in finding information or performing a function.

Menus are common in graphical user interfaces (GUIs) provided by operating systems such as Windows and MacOS. They're also used in speech recognition and on websites and web pages on the internet.

The View menu, located at the top of the screen, contains the following commands: Sheets: Upon selection, a cascade menu appears, displaying a list of all sheets used in the document, sorted from left to right.

View is the menu option that allows you to switch between close-up, single, and multiple page displays.

Thus, the correct option is C.

For more details regarding menu option, visit:

https://brainly.com/question/3507017

#SPJ1

Variance for accumulator. Validate that the following code, which adds the
methods var() and stddev() to Accumulator, computes both the mean and variance
of the numbers presented as arguments to addDataValue():
public class Accumulator
{
private double m;
private double s;
private int N;
public void addDataValue(double x)
{
N++;
s = s + 1.0 * (N-1) / N * (x - m) * (x - m);
m = m + (x - m) / N;
}
public double mean(

Answers

Using the knowledge of computational language in JAVA it is possible to write a code that Validate that the following code, which adds the methods var() and stddev() to Accumulator, computes both the mean and variance of the numbers presented as arguments to addDataValue()

Writting the code:

import java.util.*;

public class Accumulator {  

private static double m;  

private static double v;  

private static double st;  

private static  double s[]=new double[5];

private static int N;

private static int count =0;

public static void main(String[] args) {

// TODO Auto-generated method stub

Random r = new Random();

System.out.println("hello world");

for(int i=0;i<5;i++) {

   double randomvalue = r.nextDouble();

addDataValue(randomvalue);

}

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

   System.out.println("dataValue:"+s[i]);

}  

mean();

System.out.println("mean:"+m);

var();

System.out.println("variance:"+v);

stddev();

System.out.println("standard deviation:"+st);

}

public  static void addDataValue(double value) {     // addes data values to array

 s[count]=value;

 count++;

}

public static double mean() {        // returns mean

double sum=0.0;

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

   sum+=s[i];

}

m = sum/s.length;

return m;

}  

public static double var() {    //returns variance

double mm = mean();

    double t = 0;

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

        t+= (s[i]-mm)*(s[i]-mm);

}

    v= t/(s.length-1);

     return v;  

}

public static  double stddev() {        // returnsn the stardard deviation

st= Math.sqrt(var());

return st;

}

}

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

#SPJ1

Write a pseudocode algorithm to accept two values in variables num1 and num2. if num1 is greater that num2 subtract num2 from num1and multiply the result by itself If num2 is greater than num1 multiply num1 by num2 Print the numbers that were entered and the result of either scenarios​

Answers

The required Pseudocode Algorithm of the given question are:

Set num1 and num2 equal to user inputIf num1 is greater than num2Subtract num2 from num1Multiply result by itselfIf num2 is greater than num1Multiply num1 by num2Print num1, num2, and result

What is algorithm?

An algorithm in computer science is a finite sequence of rigorous instructions that is typically used to solve a class of specific problems or to perform a computation. Algorithms serve as specifications for calculating and processing data. Advanced algorithms can perform automated deductions and then use mathematical and logical tests to route code execution through different paths.

To learn more about algorithm

https://brainly.com/question/24953880

#SPJ9

wireless network devices use ________ to communicate with each other.

Answers

Radio Waves/RF which is radio frequency.

wireless network devices use Radio Waves to communicate with each other.

What is Radio Waves?

Radio waves are one type of electromagnetic radiation. A radio wave has a significantly longer wavelength than visible light. People frequently use radio waves for communication. In order to transmit and receive radio frequency energy, this radio tower employs both rectangular and circular antennas.

AM and FM radio broadcasting deliver sound to a large audience. Radar is a detection tool that collects data about objects using radio waves. Bluetooth and wireless communication connect devices by using radio waves.

Radio equipment requires electromagnetic waves to transmit and receive in order to function. The radio signal is an electronic current that moves very quickly.

Thus, it is a Radio Waves.

For more information about Radio Waves, click here:

https://brainly.com/question/21995826

#SPJ12

Write an HLA Assembly language program that prompts for two specific int8 values named start and stop and then displays a repeated digit pattern starting with that number. The repeated digit pattern should show all the numbers beginning with the start value and then adding 1, 2, 3, 4, ... to this value until you hit a number greater than the stop value. Shown below is a sample program dialogue.

Answers

Using the knowledge of computational language in python it is possible to write a code that prompts for two specific int8 values named start and stop and then displays a repeated digit pattern starting with that number.

Writting the code:

  start:

mov   al, start

add   al, '0'

mov   ah, 0eh

int   10h

 

stop:

mov   al, stop

add   al, '0'

mov   ah, 0eh

int   10h

 

prompt:

mov   dx, offset start

mov   ah, 09h

int   21h

 

mov   dx, offset stop

mov   ah, 09h

int   21h

 

mov   dx, offset pattern

mov   ah, 09h

int   21h

 

;display start

mov   al, start

add   al, '0'

mov   ah, 0eh

int   10h

 

;display stop

mov   al, stop

add   al, '0'

mov   ah, 0eh

int   10h

 

;display pattern

mov   dx, offset pattern

mov   ah, 09h

int   21h

 

;get input

mov   ah, 01h

int   21h

 

cmp   al, start

je    start

cmp   al, stop

je    stop

cmp   al, 0ffh

je    done

jmp   prompt

 

done:

mov   ah, 4ch

int   21h

 

start   db   'start: ', 0

stop    db   'stop: ', 0

prompt  db   'prompt: ', 0

pattern db   'Here's your answer: ', 0

end start

See more about HLA Assembly language at brainly.com/question/13034479

#SPJ1

Jordan is a 3D modeler using three circle made from edges—one large, one medium, and one small circle—and lines them up in front of one another from largest to smallest. Then Jordan fills the space between the edges of the circles with faces, making a telescope-looking cylinder. What type of modeling is Jordan using?

Question 7 options:

Digital Sculpting


Polygonal Edge Modeling


NURBS Modeling


Procedural Modeling

Answers

Since Jordan is a 3D modeler using three circle made from edges—one large, one medium, and one small circle—and lines them up in front of one another from largest to smallest.  The type of modeling is Jordan using is option B: Polygonal Edge Modeling.

What is a polygon 3D modeling?

Polygonal modeling is a technique used in 3D computer graphics to represent or approximate an object's surface using polygon meshes. For real-time computer graphics, polygonal modeling is the preferred technique since it is ideally suited to scanline rendering.

A 3D model's fundamental geometric elements are polygons. The polygon's vertices and edges are all straight. The created plane is known as a face and is typically a "triangular polygon," a geometric object with three sides. There are additionally "quads" and "n-gones" with four sides and several vertices.

Note that We build a polygon around each hole to identify an area of influence for that hole using the polygon method, an established and time-tested technique based on a straightforward geometric algorithm.

Learn more about Edge Modeling from

https://brainly.com/question/2141160

#SPJ1

Discuss briefly, the classification of survey

Answers

Answer:

Generally, surveying is divided into two major categories: plane and geodetic surveying. Generally, surveying is divided into two major categories: plane and geodetic surveying. PLANE SURVEYING is a process of surveying in which the portion of the earth being surveyed is considered a plane.

Asha wants to fill out an online form and pay her college tuition fee using the public Wi-Fi at a coffee shop. She uses her friend’s laptop to do this. How can she make her transaction safer?
Asha should use a to perform the transaction with .

Answers

Since Asha uses her friend’s laptop to do this. How can she make her transaction safer, Asha should use a  secure browser to perform the transaction and also with the use of a one-time password

What is a secure browser?

A secure browser is one that has additional security features to assist stop unauthorized third-party activities while you browse the web. These browsers feature a "white list," or a list of permitted programs and activities, and they forbid the start-up of any functionalities that are not included in that list.

Note that Secure browsers view the webpages while closely monitoring user behavior. It will restrict access to potentially harmful websites and pop-up advertisements. It is an excellent filter to stay safe even though the user has the series to override the said parameters and still visit these sites.

Learn more about secure browser from

https://brainly.com/question/10450768
#SPJ1

Other Questions
How did mansa musa gain his fortune? by forcing his subjects to convert to islam by resisting conquest by the portuguese by controlling the gold and salt trade by conquering the city of timbuktu The current in the circuit shown is 5.0 A, and the resistor is 2.0 . What is the potential across the battery? A.8.0 VB.2.5 VC.10 VD.3.0 V Predict the shape of the molecule.A. octahedralB. LinearC. Trigonal PairD. tetrahedral Which of the sketches presented in the list of options is a reasonable graph of y = |x 1|? Find the median:1,4,2,7,3,9,5,12,4,8 which two county libraries charge the same penalty per week Robots are sometimes used in which form of telemedicine? A. Telepsychiatry B. Telepathology C. Teleradiology D. Telesurgery I need help with a math question. I linked it below The balances in sales returns, allowances, and discounts are subtracted from total revenues when calculating net revenues. The volume of a gas V held at a constant temperature in a closed container varies inversely with its pressure P. If the volume of a gas is 800 cubic centimeters when the pressure is 450 millimeters of mercury (mm Hg), find the volume when the pressure is 200 mm Hg. u(x) = 4x - 2 w(x) = - 5x + 3The functions u and w are defined as follows.Find the value of u(w(- 3)) . write an essay: In 1776, the American Declaration of Independence declared, all men are created equal. How would followers of the three philosophical traditions in China react to that statement? Think about: their views on equality and views on opposition to government. Identify the quadrant or ask is that the following points lie on if the point lies on an axis specify which part positive or negative of which axis X or Y Third-degree, with zeros of -3, -2, and 1, and passes through the point (4, 10). A positive integer is 38 more than 27 times another their product is 5057. Find the two integers. it says how many one eights are in the product of 9x7/8 5. How does the discussion of otherworldly beingshelp readers understand the two Shakespeare playsexplored in the text? a major component of gasoline is octane . when octane is burned in air, it chemically reacts with oxygen gas to produce carbon dioxide and water . what mass of carbon dioxide is produced by the reaction of of octane? I need help with this question The choices are fusionVaporizationSublimation FreezingCondensation Deposition Find the parabola with focus (2,7) and directrix y = -1.