how do you think calculator of a computer works? describe the procedure.
​plz answer quickly its urgent!!!

Answers

Answer 1

Explanation:

calculators work by processing information in binary form. We're used to thinking of numbers in our normal base-ten system, in which there are ten digits to work with: 0, 1, 2, 3, 4, 5, 6, 7, 8, and 9. The binary number system is a base-two system, which means there are only two digits to work with: 0 and 1. Thus, when you input numbers into a calculator, the integrated circuit converts those numbers to binary strings of 0s and 1s.

The integrated circuits then use those strings of 0s and 1s to turn transistors on and off with electricity to perform the desired calculations. Since there are only two options in a binary system (0 or 1), these can easily be represented by turning transistors on and off, since on and off easily represent the binary option

Once a calculation has been completed, the answer in binary form is then converted back to our normal base-ten system and displayed on the calculator's display screen.


Related Questions

What two tasks can be executed from the service console for Autonomous Databases? (Choose two.)
A. Autonomous Databases monitoring for usage and query performance.
B. Creating schemas.
C. Creating and scaling of Autonomous Database service.
D. Wizard to download connection wallet for connection from desktop tools.

Answers

Answer:

A and D

Explanation:

Autonomous Databases monitoring for usage and query performance. and Wizard to download connection wallet for connection from desktop tools.Each autonomous database example has its own service console to monitor that feature. The Overview and Activity tabs on the Service Console provide information about improved service performance. The Activity tab displays detailed information about past and current monitored SQL statements and every detail. You can also download Client Credentials (Wallet) from the Services console for your autonomous database, select Administration, and then Download Client Credentials (Wallet).

For additional security and to optimize the performance of critical machines on your organization’s network, it is crucial to:___________.

Answers

Answer:

Identify any program or services that you do not need.

Explanation:

As a network administrator, one of the preventive measures that could be adopted to complement your security system or architecture is to identify all the software applications or services that you do not need in an organization. This is because some of these programs might be a spyware, rootkit or compromised software which are used to gain unauthorized access to the network system. Also, you should identify the unused or unwanted programs or services in order to prevent redundancy and to optimize the performance of critical machines or processes in the organization's network.

Hence, for additional security and to optimize the performance of critical machines on your organization’s network, it is crucial to identify any programs or services that you don’t need.

When you are using a keyword search what are you most likely doing?

Answers

Answer:

Just typing words or answering questions

Answer:

when using a keyword search, you are looking for close results to what you are looking for.

Explanation: its a general search not specific. thus you are likely to get very many results with the same word. hope this helps. :)

How big an impact, on your design considerations in general, is it to sort by different fields of the data periodically (a directory is likely ordered by last name, first name, for example)?

Answers

Answer:

Following are the answer to this question:

Explanation:

It also has a moderate effect on the design analysis to frequently group the information by specific fields. The Aspects of interface design should be highest if developing the simple UI also for proper display of data or data on the interface.

for certain aspects may be separated periodically by different data areas, like folders, first names, etc. If there are big data in the method, it's indeed main to measure the information, and it should have a moderate effect on the interface to arrange the information based mostly on areas.

Chris wants to view a travel blog her friend just created. Which tool will she use?

Answers

Answer:

WEEB BROWSER

Explanation:

Get it

Chris wants to view a travel blog her friend just created. The tool that she will use is a web browser. The correct option is B.

What is a web browser?

Anywhere on the internet is accessible with a web browser. It pulls data from other websites and displays it on your computer or mobile device. The Hypertext Send Protocol, which outlines how text, pictures, and video are communicated on the web, is used to transfer the information.

A web browser, also known as a "browser," is a programme used to open and view web pages. Microsoft, Internet Explorer, Chrome, Mozilla, and Apple Safari are popular web browsers.

A blog is a written story by a person. Blogs can be informational and entertaining. Blogs are always searched on browsers.

Therefore, the correct option is B, web browser.

To learn more about the web browser, refer to the link:

https://brainly.com/question/9776568

#SPJ2

Briefly explain how developers use a distributed version management system. You may assume that a master repository has been set up.

Answers

Answer:

Using version control tools like Git and Github.

Explanation:

Version control is a vital tool in programming in recent times. it helps to prevent loss of source codebase and creating unwanted folders for storing multiple codebases to prevent excess storage usage and time consumption.

Git and Github is a platform that handles version control and collaboration between co-workers. When a repository is created, its initial branch is called the master branch and when a staged code is committed, the commit is recorded. These records can be retrieved using the commit hash value and resetting the current unstaged file or code. A new branch can created to hold a different version of an application and merged later with the master branch.

The ________ is a consortium of organizations that develops web protocols and sets standards.

Answers

Answer:

W3C

Explanation:

W3C is the consortium of organizations.

CONVERT to C# C# C# C# Just need C and Dpublic class Patterns { public static void main(String[]args) { char[][] arr=new char[10][10]; int starCount = 10; for(int i=0; i }}Need this code converted to "C# C# C# C# C# Just need C and D

Answers

Answer:

following are converted C# code:

using System; //import System

class Patterns //defining class Pattern

{

public static void Main() //defining main method

{

char[,] arr=new char[10,10];//defining char array  

int starCount = 10;//defining integer variable starCount that holds value

int c=starCount;//defining integer variable c that holds starCount value  

for(int i=0; i<c;i++,starCount--)//defining loop for column  

{

for(int j=0; j<i; j++)//defining loop for rows

{

arr[i,j]='_'; //holds underscore value

}

for(int k=i; k<c; k++)//defining loop for rows  

{

arr[i,k]='*';//holds asterik value

}

}

for(int a=0; a<c; a++)//defining loop for print column value

{

for(int b=0;b<c;b++) //defining loop for print row value

{

Console.Write(arr[a,b]);//print value

}

Console.WriteLine();//print space value

}

}

}

Output:

please find the attachment.

Explanation:

In the above given C# language code, firstly we import the package system, in the next step, Patters is declared, inside the class a char array "arr" and integer variable "starCount" is declared, that store integer value and the main method is declared.

In the method, for loop is defined, inside the loop, it stores "underscore and asterisk" value in the array.

Outside to loop another loop is defined, which uses the print method to print its value.    

Using "subTotal" and "taxRate", what is the formula to determine the total bill including taxes (grandTotal)?

Answers

Answer:

The formula to determine the total bill including taxes, i.e. grand Total =

"subTotal" + ("taxRate" * "subTotal").

Another formula is:

"grandTotal" = ("subTotal" * 1 +"taxRate")

Explanation:

The above stated formulas produce the same outcome.  The first formula computes the tax amount and adds it to the subtotal before arriving at the grand total.  The second formula goes straight to compute the total bill without showing the tax amount.  It applies the tax factor (1 + "taxRate") to the "subTotal."  All two formulas are valid.  However, I prefer the second formula to the first, as it is very straight forward.

If we recorded the average U.S. Housing Price every month for the next year, what graphical display is most appropriate to display the data?

Answers

Answer:

Time plot.

Explanation:

A time plot, also known as a time series can be defined as a graphical representation of a pre-defined value (data) against time.

If we recorded the average U.S. Housing Price every month for the next year, the graphical display which  is most appropriate to display the data is a time plot.

Generally, when representing data that changes with respect to time or that are random in nature; a time plot is considered to be the most effective graphical display to use.

In this scenario, the average U.S. Housing Price that is observed should be plotted against the time of occurrence (months) over a year.

The line chart is a type of chart showing data as a succession of data sets linked by line segments. It demonstrates the price graph of an object using a single, solid path.

You should use a line chart to represent the graph because we are computing the average housing price in the United States every month for a year. This data is time-series data, and a line chart is the best graphical display for displaying time-series data.Then we'd have to record the average US housing price every month for the following year. A line chart graphical display would be the best way to display the data.

Therefore, the final answer is "Line chart".

Learn more:

brainly.com/question/1639884

What are three subject areas that are key to successfully working in the field of robotics

Answers

The brain ( computer science engineering)

The nervous system ( electrical engineering)

The body ( Mechanical engineering). The mechanical engineer is in the charge of the physical system that makes up the robot.

A mixture of benzene and toluene are to be separated in a flash tank. The pressure in the flash tank is 800 mm Hg. The units for Antoines equation are mm Hg and ◦C for pressure and temperature, respectively.
xB(Psat B) + (xT)(Psat T) = P
log10(Psat B) = 6.905 − (1211/ (T + 221))
log10(Psat T) = 6.953− (1344/ (T + 219 ))
At what temperature should the tank be operated to get the highest purity toluene in the liquid phase (maximizing xT)?

Answers

Answer:

At the temperature of 112.859°C

Explanation:

suppose xT denotes the amount of toluene in the mixture

xT ∈ (0,1)   xB = 1 -xT

substituting the value of xB and re-arrange to solve for xT, we have:

[tex]xT = \dfrac{P-Psat \ B}{P sat \ T - P sat \ B}[/tex]

For xT to be maximum, P needs to be equal to Psat T

∴ P = Psat T

or

Psat T = 800

log10 P sat T = log 10(800)

Using MATLAB code to solve the value of T (T_val), the code is inputed as:

syms T

equation = 6.953− (1344/ (T + 219 )) = log 10(800)

T_val = solve (equation,T);

T_val = double T_(val)

T_val= 112.859

Aside from the malicious link, there are also several other indicators on the email that shows it is likely a phishing email. Can you identify anything else that looks suspicious in the email?

Answers

Answer:

The senders email domain.

Explanation:

The senders email address is from a different email domain than the receivers email domain. The senders has a hyphen whereas the recipients does not.

Organizations that have no physical ("brick and mortar") presence, but only exist because of communication and computer technology are known as . ​

Answers

Answer: Virtual Organisations

Explanation: Virtual Organisations are Organisations that do not have any physical presence (brick and mortar). They exist in Internet platforms, social media and are known through the use telecommunications systems and facilities. This type of organisations continously conduct their businesses and liaise with their customers only through virtual Communication platforms like the computer Communication systems.

Double-clicking any failed logon attempt in the Even Viewer will open the:______.

Answers

Answer:

Event property window

Explanation:

The event property window can be used to know who signed into your computer without your knowledge. This feature will have to be enabled and configured by the owner of the system so as to be able to monitor unauthorized activities on your system which includes to find out who has been using your device without permission, troubleshoot certain problems, among other things..

I made a binary sentence if you answer you get 75 points heres the code: 01101001 01100110 00100000 01111001 01101111 01110101 00100000 01100001 01110010 01100101 00100000 01110010 01100101 01100001 01100100 01101001 01101110 01100111 00100000 01110100 01101000 01101001 01110011 00100000 01001001 00100111 01101101 00100000 01110011 01110101 01110000 01110010 01101001 01110011 01100101 01100100 00100000 01111001 01101111 01110101 00100000 01100011 01100001 01101110 00100000 01110100 01110010 01100001 01101110 01110011 01101100 01100001 01110100 01100101 00100000 01110100 01101000 01101001 01110011 00100000 01110111 01100101 01101100 01101100

Answers

01001001 00100000 01100001 01100011 01110100 01110101 01100001 01101100 01101100 01111001 00100000 01110101 01110011 01100101 01100100 00100000 01100001 00100000 01000010 01101001 01101110 01100001 01110010 01111001 00100000 01100011 01101111 01100100 01100101 00100000 01000011 01101111 01101110 01110110 01100101 01110010 01110100 01100101 01110010 00100000 01101100 01101101 01100001 01101111

if you are reading this I'm suprised you can translate this well this is easy

RFID can be used for all of the following applications except:_________.
A. Access control
B. Access point repeater
C. Asset management
D. Automated payment

Answers

Answer:

B. Access point repeater

Explanation:

RFID can be used for all of the listed applications except for Access point repeater. This is because Radio Frequency Identification is a technology, which includes wireless data capture and transaction processing for both short and long-range applications. Usually tracking, tracing, accessing, and managing information. It can unfortunately not be used for repeating the same RFID signal or any access point for that matter.

Broken computers are being eco-recycled by the user. Which stage of the hardware lifecycle does this scenario belong to

Answers

Answer:

Decommission, E-cycle & Disposal

Explanation:

The life cycle of every hardware starts from its architectural design and ends when the hardware is being disposed of.

The reason for disposal could be as a result of when hardware becomes broken down (as stated in the question) or got outdated or out of place.

However, the stage that this belongs to is called "Decommission, E-cycle & Disposal" stage of the hardware lifecycle.

Write a program using integers user_num and x as input, and output user_num divided by x three times. Ex: If the input is: 2000 2 Then the output is: 1000 500 250 Note: In Python 3, integer division discards fractions. Ex: 6 // 4 is 1 (the 0.5 is discarded).

Answers

Answer:

Python

Explanation:

user_num = int(input())

x = int(input())

user_num1 = user_num // x

print(user_num1, end=' ')

user_num2 = user_num1 // x

print(user_num2, end=' ')

user_num3 = user_num2 // x

print(user_num3)

Write a destructor for the CarCounter class that outputs the following. End with newline.
Destroying CarCounter
#include
using namespace std;
class CarCounter {
public:
CarCounter();
~CarCounter();
private:
int carCount;
};
CarCounter::CarCounter() {
carCount = 0;
return;
}
/* Your solution goes here */
int main() {
CarCounter* parkingLot = new CarCounter();
delete parkingLot;
return 0;
}

Answers

Answer:

Following are the code to this question:

CarCounter::~CarCounter()//Defining destructor CarCounter

{

cout << "Destroying CarCounter\n";//print message Destroying CarCounter

}

Explanation:

Following are the full program to this question:

#include <iostream>//Defining header file

using namespace std;

class CarCounter //Defining class CarCounter

{

public:

CarCounter();//Defining constructor CarCounter

~CarCounter();//Defining destructor CarCounter

private:

int carCount;//Defining integer variable carCount

};

CarCounter::CarCounter()//declaring constructor  

{

carCount = 0;//assign value in carCount variable

return;//using return keyword

}

CarCounter::~CarCounter()//Defining destructor CarCounter

{

cout << "Destroying CarCounter\n";//print message Destroying CarCounter

}

int main() //Defining main method

{

CarCounter* parkingLot = new CarCounter();//Defining class object parkingLot

delete parkingLot;//

return 0;

}

In the given C++ language code, a class "CarCounter" is defined, and inside the class, a "constructor, Destructors, and an integer variable" is defined.  Outside the class, the scope resolution operator is used to define the constructor and assign value "0" in the integer variable.  In the above-given code, the scope resolution operator, to define destructor and inside this cout function is used, which prints a message.  In the main method, the class object is created, which automatically calls its class constructor and destructors.  

The Windows Group Policy feature provides __________ that govern the way Windows operates in enterprise environments.

Answers

Answer:

A centralised set of rules

Explanation: The windows group policy is one of the features of Windows active directory that gives users of windows enough power and control over the use and Security as they make use of its features in their computers. The Windows group policy also guides how users of Windows computers effectively utilises its features and functions.

UC is trying to switch from legacy CRM to salesforce and wants to keep legacy CRM and salesforce in place till all the functionality is deployed in salesforce. The want to keep data in synch b/w Salesforce, legacy CRM and SAP. What is the recommendation

Answers

Answer: suggesting MDM solution and also linking MDM to both the salesforce and sap. More so, integrating SAP with both Salesforce and legacy CRM.

NB: Don't ever integrate legacy CRM to Salesforce

Explanation:

It should be noted that the best recommendation that could be given in order to keep data in synch b/w Salesforce, legacy CRM and SAP is by suggesting MDM solution and also linking MDM to both the salesforce and sap. More so, integrating SAP with both Salesforce and legacy CRM.

NB: Don't ever integrate legacy CRM to Salesforce

Which type of alert is the Client Software Deployment Failure set to?

Answers

Answer:

Microsoft Intune will display the critical alert Client Software Deployment Failure if the client software fails. It will be displayed in the System Overview page and Alerts pages of the Microsoft Intune administrator console. To check for alert, let us follow these steps below:

Explanation:

In the Microsoft Intune administration console, click Alerts > Overview.

On the Alerts overview page, you can review the following information:

The top three alerts, which can be sorted by date, category, or severity

The total number of active alerts

Click All Alerts to display the following information on the Alerts page. Critical alerts are displayed first:

Name – The name of the alert type that generated the alert.

Source – A link to the source of the alert.  If the display threshold of the alert type is set to All, then this link will display a single affected device.  If the display threshold of the alert type is set to a value, then this link will display a list of all the devices that are affected by this alert.

Last Updated – This indicates the time when the alert was last modified. If an alert is closed, the time when the alert was closed is displayed.

Severity – This indicates the severity of the alert

A series of nested _____________ statements can be used to process the menu selections in lieu of the case statement

Answers

Answer: If-Else statement or If-Then-Else statement depending on the language.

Explanation: Although it's not recommended to nest a hundred if statements into each other, you can use them instead of a switch/case.

A series of nested If-Else statements can be used to process the menu selections in lieu of the case statement.

What is a menu selection?

The menu selection parameter needs to be created before utilizing a While loop to periodically evaluate a user's menu choices. Processing a user's menu choice always requires an iteration loop.

If a certain value is satisfied, the if/else sentence causes a block of code to be executed. An additional block of code can indeed be run if the condition is false. If you want to tell a block of code to run only if a certain expression is met, use the if statement.

f the same circumstance is false, use else to declare that a different block of code should be run. If the first conditions is false, use else if to define a new state to test. To provide a variety of different code blocks to be performed, use a switch.

Learn more about menu selection, Here:

https://brainly.com/question/29479833

#SPJ5

Describe how the presence or absence of balance can affect a visitor’s perceptions of a Web page.

Answers

Answer: the assessment of the destination image can assist managers by identifying the ... In particular, potential visitors with limited knowledge of destinations depend on ... Thus, a destination web page becomes a fundamental instrument in ... it and whose presence or absence determines the tourist's perception.

Explanation:

Which devices are most likely to communicate with the internet? Select 3 options.
A. iron
B. calculator
C. smart TV
D. printer
E. cash register

Answers

Answer:smart TV, printer, and cash register

Explanation:Just put it

Answer:

- smart TV

- printer

- cash register

Explanation:

All of these devices are capable of operating digitally, and can be used to communicate with the internet.

I hope this helped!

Good luck <3

What is the value of scores[3] after the following code is executed? var scores = [70, 20, 35, 15]; scores[3] = scores[0] + scores[2];

Answers

scores[3]( 15 ) = scores[0]( 70 ) + scores[2]( 35 ) == 105

The system administrator in your office quits unexpectedly in the middle of the day. It's quickly apparent that he changed the server password and no one knows what it is. What might you do in this type of situation?

Answers

Answer:

You should use an effective password cracker.

Explanation:

Since the system administrator decided to quit unexpectedly and apparently, he changed the server password and no one knows what it is. What you might do in this type of situation is to use an effective password cracker.

A password cracker can be defined as a software application or program used for retrieving passwords from stored locations or computer data systems. This simply means that, a password cracker is used to recover passwords in order to gain access to a computer system that is protected by authentication.

Some examples of commonly used passwords cracker are ElcomSoft, Aircrack, Hashcat, John the Ripper, Hydra, Cain and Abel, DaveGrohl, Ophcrack etc.

What is Livvyo? Livvyo review

Answers

Answer:

Livvyo is a software that enables streaming video to be translated into multiple languages.

Explanation:

Livvyo is a latest desktop software developed to translate the live streaming videos. This app enables the businesses and companies to convert any video in multi-language to attract diverse audience of different languages.

The app is created by Misan Morrison & Firas Alame and launched on 23rd August, 2020.

Livvyo Review:

This app also helps to transcibe texts in the video automatically. This app helps to transform any video into Global sales machine.The purpose of this app is to attract audience and increase sales.

After a merger between two companies a security analyst has been asked to ensure that the organization’s systems are secured against infiltration by any former employees that were terminated during the transition. Which of the following actions are MOST appropriate to harden applications against infiltration by former employees? (Select TWO)
A. Monitor VPN client access
B. Reduce failed login out settings
C. Develop and implement updated access control policies
D. Review and address invalid login attempts
E. Increase password complexity requirements
F. Assess and eliminate inactive accounts

Answers

C and F would be the ones to pick :)
Other Questions
Which pairs of angles in the figure below are vertical angles? Joes boat rental rents paddle boats for $8.00 and the paddles rent for $5.00 for the day. If David has $45, what is the least amount of hours he could rent the paddle boat Identify the type of conic section that is represented by the equation y^2- 1 = 4(x-7). DUE IN 2 HOURS, will give BRAINLIEST! A. Circle B. Hyperbola C. Parabola D. Ellipse 1SpointsWhich is the image of vertex O after the triangle has been rotated 90 degrees counterclockwise about the origin?6+532L23-653 -2.1s! S6ows.670 -1.2) Given the graph below, which of the following statements is true? On a coordinate plane, a graph shows an image with three connected lines. The first line has a negative slope and goes from (negative 5, 6) to (negative 2, 0), the second line has a positive slope and goes from (negative 2, 0) to (2, 2), and the third line has a negative slope going from (2, 2) through (4, negative 2). The graph represents a one-to-one function because every x-value is paired with only one y-value. The graph represents a one-to-one function because it is defined for all x-values. The graph does not represent a one-to-one function because it does not pass through the origin. The graph does not represent a one-to-one function because the y-values between 0 and 2 are paired with multiple x-values. What are examples of Architecture and Construction careers? Check all that apply. Shipping and Receiving Clerk Administrative Assistant Carpenter Architect Construction Manager Electrician Chief Executive Several scientists from different countries are asked to examine the results of an experiment before a journal will print it. Which term best describes this step of the investigative process? A)question B)communication of results C)peer review D)experiment control Under what operation are the set of integers closed? Explain your answer what is ~~~? How do I use it? MARK AS BRAINLIEST 50 POINTS HELP Given the figure below, find the values of x and z For 123 I believe its C,b,C.. and for the other two I think B,A. 1. Give two other names for AB2. Name three points that are collinear.3. Give another name for plane F.4. Name a point that is not coplanar with A, B, and C.5. Give another name for CD6. Name three rays with endpoint B.7. Name a pair of opposite rays.8. Give another name for CD. How did the Silk Road impact relationships between Europe and China? Select all that apply. The journeys of Marco Polo along the Silk Road helped promote cultural exchanges. The Silk Road was a primary trade route of Chinese silk and spices between Europe and Asia. The Ottoman Empire used the Silk Road to travel and invade the Han Empire of China. The Han Empire used the Silk Road to travel and invade the Ottoman Empire in North Africa. divide 68 into two parts so that the larger number exeed the smaller one by 6 which of the following is an example of using a renewable resource to generate electricity Complete the sentences. Use the present perfect positive or negative. My mum isn't at home now. She __went_________ (go) to the supermarket. So far this month I __saw____________ (see) three films. I'm hungry. I __ havent eaten__(have) my lunch yet. I _saw________________ (see) Helen yet today. Is she at school? Our football team _have won_______________ (win) all its matches so far this year. I don't know your boy-friend. I __havent met__ (meet) him yet. I need help please !! Please be correct, and if you can please explain. As a result of several factors, aggregate demand decreased during the Great Depression. One factor would be: There are 10 blue marbles, 4 black marbles, 5 white marbles, and 6 red marbles in a box. If two marbles are drawn at random without replacement, what is the probability that both marbles removed are not blue?