write the name of the technologies used in all five generation​

Answers

Answer 1

Answer:

First Generation (1940-1956)

First Generation (1940-1956)Second Generation (1956-1963)

First Generation (1940-1956)Second Generation (1956-1963)Third Generation (1964-1971)

First Generation (1940-1956)Second Generation (1956-1963)Third Generation (1964-1971)Fourth Generation (1971-2010)

First Generation (1940-1956)Second Generation (1956-1963)Third Generation (1964-1971)Fourth Generation (1971-2010)Fifth Generation (Present Day)

Answer 2

Answer:

Five generation :Artificial intelligence _ Each one of the five generation computer is characterized by a major technological development .

Explanation:


Related Questions

If you forget your privacy password what will you do if the ask this question what is the name of one of your teacher?​

Answers

Explanation:

you write the name of your primary school teacher

A security question is a form of the shared secret used as an authenticator. The answer to questions asked by the system is personalized and can be answered by you only.

What are security questions?

A security question is a form of the shared secret used as an authenticator. It is commonly used by banks, cable companies, and wireless providers as an extra security layer.

When you forget your privacy password, the system tries to help you to get your password back or reset it. But for this, it needs to make sure that it's you. Therefore, whenever you set a privacy password for the first time the system also asks you a few questions these questions are known as security questions and are present in the system for such situations. Therefore, the answer to questions asked by the system is personalized and can be answered by you only.

Learn more about the Security Questions:

https://brainly.com/question/15008697

#SPJ2

What is a status update?

A. An automatic enhancement to a computer's performance

B. Any new software that can be downloaded for free

C. A short post in which users write what they are doing

D. A news flash that announces new government posts

Answers

It should be letter c i hope this help let me know if you need help
the correct answer should be C above ^

Phím tắt nào sau đây được sử dụng để chuyển sang các cửa sổ đang mở khác? A. Ctrl+Tab B. Shift+Tab C. Alt+Tab D. Window+Tab

Answers

Câu trả lời:

C. Alt + Tab

Giải trình:

Các phím tắt được sử dụng trên các hệ thống máy tính để điều hướng nhanh chóng chẳng hạn như chuyển đổi giữa các cửa sổ, thực hiện một số tác vụ và hoạt động nhất định, v.v. hoạt động. Trong cửa sổ, người ta có thể dễ dàng điều hướng và di chuyển qua các tab hoặc cửa sổ đang mở khác nhau bằng cách sử dụng nút 'Alt và Tab'. Sau khi nhấn nút Alt, tab sẽ được nhấp để điều hướng qua tất cả các cửa sổ đang mở khác nhau.

Write a program to input value of three sides, to check triangle is triangle is possible to form of not​

Answers

Answer:

Explanation:

import java.util.Scanner;

public class KboatTriangleAngle

{

  public static void main(String args[]) {

      Scanner in = new Scanner(System.in);

      System.out.print("Enter first angle: ");

      int a1 = in.nextInt();

      System.out.print("Enter second angle: ");

      int a2 = in.nextInt();

      System.out.print("Enter third angle: ");

      int a3 = in.nextInt();

      int angleSum = a1 + a2 + a3;

       

      if (angleSum == 180 && a1 > 0 && a2 > 0 && a3 > 0) {

          if (a1 < 90 && a2 < 90 && a3 < 90) {

              System.out.println("Acute-angled Triangle");

          }

          else if (a1 == 90 || a2 == 90 || a3 == 90) {

              System.out.println("Right-angled Triangle");

          }

          else {

              System.out.println("Obtuse-angled Triangle");

          }

      }

      else {

          System.out.println("Triangle not possible");

      }

  }

}

OUTPUT:

Since the rules cannot address all circumstances, the Code includes a conceptual framework approach for members to use to evaluate threats to compliance. Using this framework, Group of answer choices the first step is to discuss the threat with the client's management team. safeguards can be used to eliminate any threat. all threats must be completely eliminated. more than one safeguard may be necessary.

Answers

Answer:

more than one safeguard may be necessary.

Explanation:

The conceptual framework can be used to developed as well as construct through a process of the qualitative analysis. The approach includes the in the frameworks for identifying and evaluating the threats to compliance with the rules.

But since the rules formed cannot always address all the circumstances, the Code includes to evaluate the threats to the compliance of more than one safeguards that are necessary.

Return a version of the given string, where for every star (*) in the string the star and the chars immediately to its left and right are gone. So "ab*cd" yields "ad" and "ab**cd" also yields "ad". starOut("ab*cd") → "ad" starOut("ab**cd") → "ad" starOut("sm*eilly") → "silly"

Answers

Answer:

Explanation:

The following code is written in Java and uses a for loop with a series of IF ELSE statements to check the next and previous characters in a string. Checking to make sure that there are no asterix. If so it adds that character to the String variable output. Which is returned to the user at the end of the method. Two test cases have been created and the output can be seen in the attached image below.

class Brainly {

   public static void main(String[] args) {

       System.out.println(starOut("sm*eilly"));

       System.out.println(starOut("ab**cd"));

   }

   public static String starOut(String str) {

       String output = "";

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

           if ((i != 0) && (i != str.length()-1)) {

               if ((str.charAt(i-1) != '*') && (str.charAt(i+1) != '*') && (str.charAt(i) != '*')) {

                   output += str.charAt(i);

               }

           } else {

               if ((i == 0) && (str.charAt(i) != '*') && (str.charAt(i+1) != '*')) {

                   output += str.charAt(i);

               } else if ((i == str.length()-1) && (str.charAt(i) != '*') && (str.charAt(i-1) != '*')) {

                   output += str.charAt(i);

               }

           }

       }

       return output;

   }

}

list three social implications of the wider range of piracy​

Answers

Answer:

Street prices are affected by the extent of illegal commercial copying. The availability of inexpensive, high-quality illegal copies reduces the demand for legal copies to the extent that some users buy illegal copies instead of legal ones.

how to convert binary number into decimal number​

Answers

Answer:

Multiplying by 2

Explanation:

The binary num number to decimal conversion is made by making the sum of each binary digits multiplying by 2 with raised to the power of the positional notation of digits .

Hope it is helpful to you

Answer:

HOW TO CONVERT BINARY INTO DECIMAL SYSTEM.

The decimal number is equal to the sum of binary digits (dn) times their power of 2 (2n):

decimal = d0×20 + d1×21 + d2×22 + ...

Example #1.SEE,

Find the decimal value of 1110012:

binary number: 1 1 1 0 0 1

power of 2: 25 24 23 22 21 20

1110012 = 1⋅25+1⋅24+1⋅23+0⋅22+0⋅21+1⋅20 = 5710

Explanation:

YOU WILL LEARN MORE IN HIGHER CLASSES.

How to save a file for the first time?​

Answers

Answer:

i have the website version of word but you want to click file and save as then click whatever option you need to personly if you are submitting online i download it to my computer then I will submit it from downloads. thats how i do it

An open area is one that has something in the path of travel that blocks the continuation of travel in that lane. a) True b) False 2 Questions 2 A driver's emotions usually have no impacton his or her ability to effectively implement a search system. a) True b) False 3 Question 3 Glare is enhanced by heat and impairs a driver's visibility. a) True b) False 4 Question 4 A driver must maintain which of the following to ensure implementation of an effective space management system

Answers

Answer:

Question 1. B) False

Question 2. B) False

Question 3. A) True

Question 4.

a) Looking ahead

b) Lookout for hazards

c) Focus on the big picture

d) Ensure visibility of her or his vehicle

e) Always have an exit route for safety

Explanation:

Question 1. An open area or condition is a availability of a large area space to drive unrestricted. In an open area, the road ahead is open space and there is continuation of the lane of travel and there is nothing that blocks the road

Therefore, the correct option is B) False

Question 2. A drivers emotion such as anger has remarkable influence on the behavior while driving such that it can impact on his or her ability for appropriate search system implementation which is response based

Therefore, the correct option is B) False

Question 3. Glare sensation is exacerbated by the presence of increased heat, an obstructs the view

Therefore, the correct option is A) True

Question 4. Effective space management is implemented by a driver through;

a) Looking ahead of the vehicles n front

b) Maintaining constant lookout for hazards

c) Ensure that the big picture is in focus

d) Ensure that the vehicle he or she is driving can be seen

e) Ensure that an escape route is always available

A friend was just promoted to a new job that requires part-time travel, and he has also been promised a new laptop after his first month with the company. He needs an easy way to disconnect and reconnect all his peripheral devices to his old laptop. Devices include two external monitors (one HDMI, one DVI), a USB wireless mouse, USB wireless keyboard, Ethernet network, USB printer, headphones, and microphone. He has a budget of $100. What kind of device would best suit his needs

Answers

Answer:

usb-c hub

Explanation:

In this specific scenario, his best option would be a usb-c hub. This is a fairly cheap device which he can get one of many variations for less than $100. This device connects through a single USB-C port on the computer and has multiple USB ports on the hub. This allows you to connect all of your devices to the hub and connect/disconnect all of them instantly from the single USB-C cable connected to the laptop. Thanks to the new USB-C technology these hubs now usually include both HDMI and DVI inputs.

Rachel is planning on writing code that will have to do computations with very large
numbers. Which of the following is the most important issue she should check
before writing her code?
PLEASE

Answers

Group of answer choices.

A. Rachel should look up how many bits are used to store integers and floating point numbers in the programming language she is using.

B. Rachel should reset her machine to store data using hexadecimal values instead of binary.

C. Rachel should run a program to ensure that she has enough memory on her machine to write the program itself.

D. Rachel does not have to worry about the size of the numbers

Answer:

A. Rachel should look up how many bits are used to store integers and floating point numbers in the programming language she is using.

Explanation:

In Computer programming, a bit is a short word for the term binary digit and is primarily the basic (smallest) unit measurement of data or information.

A bit is a logical state which represents a single binary value of either one (1) or zero (0). This ultimately implies that, a single bit in computer science represents a boolean value of;

1. True or ON, which is equal to one (1).

2. False or OFF, which is equal to zero (0).

Additionally, a binary numbering represents all numeric values that are to be written in sequences of ones (1s) and zeroes (0s). Therefore, a binary number refers to any numerical value (number) that is expressed in base-2 numerical system; 0s and 1s.

Also, the total numbers which can be represented with an 8 bit binary (base-2) system is 256.

For all computations that would involve the use of very large numbers, it's important to look up how many bits are used to store integers and floating point numbers.

In this context, Rachel should ensure that she check how many bits the chosen high-level programming language uses to store integers and floating point numbers before writing her codes.

A college student borrowed his roommate's notebook computer without permission because he needed to write a term paper that was due the next day. While the computer was sitting open on the student's desk overnight, a water pipe in the ceiling began leaking and water dripped down on the computer, rendering it inoperable. A computer repair service estimated that it would cost $500 to repair all the damaged components. At the time it was damaged, the computer was worth $700. If the roommate sues the student for the damage caused to the computer, what will be the extent of his recovery

Answers

Answer: $700

Explanation:

Based on the information given in the question, if the roommate sues the student for the damage caused to the computer, the extent of his recovery will be $700.

In this scenario, the student has committed a conversion as the right of possession of the roommate's computer was interfered with by the student as he took it without the roommate's permission, which later sustained damage that was more than 70% of the computer's value. In such case, the extent of the recovery will be the fair market value which is $700.

You work for a retail clothing chain whose primary outlets are in shopping malls and are conducting an analysis of your customers and their preferences. You wish to find out if there are any particular activities that your customers engage in, or the types of purchases made in the month before or after purchasing select items from your store. To do this, you will want to use the data mining software you are using to do which of the following?
a. Identify clusters
b. Identify sequences
c. Classify data
d. Identify associations

Answers

Answer: Identifying sequences

Explanation:

Since the user wants to know if there are any particular activities that the customers engage in, or the types of purchases made in the month before or after purchasing select items from your store, therefore, the data mining software can be used in identifying sequences.

In this case, the data mining software can't be used in classifying data whether into structured or unstructured data. Furthermore, the identification of clusters and associations aren't the correct answers.

Therefore, the best option is B.

can someone please tell me the name of some of the best driving simulator games?​

Answers

Answer:

Editor's Pick: Assetto Corsa. Assetto Corsa is a highly regarded racing game with a realistic force feedback feel.

Project Cars 2.

Gran Turismo Sport.

F1 2019.

Dirt Rally.

Explanation:

Information Technology Question

What is the best topic in Information Technology ever?.​

Answers

Answer:

I don't know about others but I like Binary

Answer:

Explanation:

5 Key Actions for IT Leaders for Effective Decision Making

Progressive leaders reengineer data and analytics to turn decision making into a competitive advantage.

This Gartner eBook shows you the power and potential of reengineered decision making and guides you to:

Identify what decisions to reengineer, and why

Prioritize decisions, analytics and data

Fit artificial intelligence into decision making

Rethink your D&A architecture

Build skills, habits and teams geared for effective decision making

write difference between dvd r and dvd ram( Any 3 points or any a little big paraph for test)

Answers

Answer:

Following are the differences two the given questions:

Explanation:

DVD-R:

DVD-R is a common DVD recordable media that seems like a conventional DVD, and it can only be used once for writing data or analyzing information many times.It is identical to a regular DVD, however, it can be used to record data like a CD-R. Once a DVD-R is "burned," it cannot be read to anymore.There is a 650 nm range recording, nicknamed "Authoring DVD-R." "DVD-R for general" is another format with protection against duplicating, which records at 635 nm. Whilst DVD-R(a) and DVD-R(g) may read forms of one another, they cannot write formats of each other.

DVD-RAM:

This is a technology for optical DVD storage where the information may be read, deleted & written constantly.It offers outstanding integrity of data, preservation, and avoidance of damages that can be used for basic storing data, data preservation, or data backup.Those disc drives can indeed be frequently recorded and deleted, and only compatible with DVD-RAM format devices produced by corporations.

Sue follows these steps to create a chart in her presentation.
Step 1: Navigate to the Insert tab.
Step 2: Click the Chart button in the Illustrations command group.
Step 3: Choose the column chart.
Step 4: Click OK.
Which objects appear on the slide after she clicks OK? Check all that apply.
a fully completed table
a fully completed chart
a table with blank values
a chart with blank values
a table with sample values
a chart with sample values

Answers

Answer:

A chart with sample values

Answer:

A table with sample values

A chart with sample values

Explanation:

Which of the following statements about RAID is correct? Group of answer choices All RAID configurations provide fault tolerance for up to one disk failure A RAID 1 configuration of 4 disks has higher storage capacity than a RAID 0 configuration RAID 5 allows up to two disk failures During a RAID 5 disk failure, read performance is not impacted A RAID 1 configuration of four 1TB disks has a storage capacity of 2TB

Answers

Answer:

A RAID 1 configuration of 4 disks has higher storage capacity than a RAID 0 configuration

Explanation:

Redundant Array of Independent Disks(RAID) are multiple physical drives arranged in logical units to provide data redundancy and increased performance. They are

RAID 1 configuration duplicates data storage, albeit of lower performance than RAID 0. Also called disk mirroring because it mirrors data on two or more disks, it provides at least two drives that are used interchangeably or together.

A RAID 1 is the configuration of the 4 disks that has higher storage capacity than a RAID 0 configuration. This option A is correct.

What is the RAID ?

The RAID is a redundant array of the inexpensive disks and refers to the storage visualization technology that combines multiple physical disk drives. Its contract with earlies highly reliable mainframe disk drives.

The RAID one needs mini of two physical drives as the data is given simultaneously in two places. These drives are mirror images as ne fails the other can take over.

Find out more information about the RAID.

brainly.com/question/26980060.

Joe a frequent visitor to a branch office attempts to connect his tablet to the office wireless network but is unable to connect to the internet even though he has verified that the SSID and password are correct. Joe attempts to connect to a coworkers hotspot but is still unable to connect to the internet.What is the cause of the issue?

Answers

Answer:

Airplane mode has been set on the tablet.

Explanation:

Joe a frequent visitor to a branch office attempts to connect his tablet to the office wireless network but is unable to connect to the internet even though he has verified that the SSID and password are correct. Joe attempts to connect to a coworker's hotspot but is still unable to connect to the internet.

This is because the Airplane mode has been set on the tablet.

power point is hardware or software​

Answers

Answer:

PowerPoint is the standard forms of software platform. It contains the CPU, memory, expansion slots and all the controllers required to control standard hardware devices.

Answer:

Software

Explanation:

because it's a computer software created by Microsoft which allows the user to create slides for the users.

what is local technology ? give examples​

Answers

Answer:

the technologynwhich is used in our locality os calleg local technology

ex. biogas farm , modern methods of 1transport etc

How can the Column settings be accessed?

Layout tab, Page Setup group
Layout tab, Paragraph group
Layout tab, Arrange group
Design tab, Document Formatting group

Answers

Your answer would be LAYOUT TAB, PAGE SETUP OR GROUP

#It helps in the proper function ing of computer hardware.
1 Application Software
2Users
3 hardware software
4 system software

#_____is designed to solve a specific problem or to do a specific task
1 Application Software
2 System software
3 utility Software
4 user

#Set of programs which can sit of full set of document is termed as:
1 Database package
2 file package
3 bus package
4 Software package


#Translator for low level programming language were termed as:
1 Assembler
2 Compiler
3 Linker
4 Interpreter

#What is the name of a utility that protects your computer against downloading malicious code:
1 file compassion program
2 antivirus program
3 backup program
4 troubleshooting program

Answers

4- system software
2- application software
4- software package
1- assembler
2- antivirus program

write a note on antispyware progrmaes?​

Answers

Answer: See explanation

Explanation:

Spyware refers to the software that has

a malicious behavior which gathers information about an individual or organization and then sends the information gathered to another entity which is used in causing harms to the user such as the privacy violation of the user.

Antispyware programmes are also called the spyware removal tools and they're the software which are used in the detection of harmful spyware which are then removed from the system. Examples include Avira, Norton, Avast, McAfee etc.

Answer:

Anti-spyware software is a type of program designed to prevent and detect unwanted spyware program installations and to remove those programs if installed. Detection may be either rules-based or based on downloaded definition files that identify currently active spyware programs.

variable index has a value of 4, and variable accessValid has a value of False. What value does variable, accessPoints, have after the if is executed?
accessPoints = 0
if ((index >=2) or accessValid):
accessPoints += 10
else:
accessPoints = 1

Answers

Answer:

10

Explanation:

If index is greater than or equal to 2, accessPoints will increase by 10 even if accessValid is false because the if statement states that if index is greater than or equal to 2 OR accessValid is true. The if statement gets executed if either expression is true, and index is greater than 2 because index has a value of 4.

How can you create a safe and secure password? Choose a password unassociated with your personal history. Choose the same password for every account you open. Choose a password consisting entirely of numbers. Choose two passwords and combine them into one.

Answers

Answer:

Choose a password unassociated with your personal history.

Explanation:

Zoe needs to ensure that a larger spreadsheet fits on a single page. How can she achieve this?

Orientation settings
Margin settings
Collation settings
Label settings

Answers

Answer: Orientation settings

Explanation:

Zoe's problem can be solved if she went to orientation settings in the Page layout tab and changed the page orientation from portrait to landscape. This would rotate the page 90° to the right.

The new orientation would provide more space for the information contained in the spreadsheet and would be ideal for a scenario where there are a lot more columns that rows.

Chris needs to modify the default bullets that are used in a nonnumbered list in Word.

Which method should he use?

Select the arrow next to the bullet list option in the Paragraph group.
Select the arrow next to the number list option in the Paragraph group.
Use the Styles group on the Home tab.
This cannot be done.

Answers

Answer:

Select the arrow next to the bullet list option in the Paragraph group.

Explanation:

This allows you to decide what shape of bullets you would like to have.

Hope this helps!

Note: I personally recommend using stars :)

Select four tasks associated with operating system maintenance. Cleaning inside the computer Defragmenting the hard drive Deleting temporary files Removing device drivers Organizing data Updating malware Removing partitions

Answers

Answer:

Cleaning inside the computer

Defragmenting the hard drive

Deleting temporary files

Organizing data

Explanation:

Other Questions
Please help me with this anyone What is nativism?The belief that the early inhabitants of America were better than incoming immigrants.The belief that immigrants had just as much of a right for jobs and work as Americans.The belief that Native Americans are better than whites.A policy that banned Chinese immigrants. What is your theory on how the thinning of gray and white matter might affect a persons life during the middle adult years? What makes you think this? Answer box for question 1 Jimmy is saving money to buy a concert ticket for $155. He has $42 so far and he can save $20 per week. In how many weeks will he have enough money to buy the ticket? Select an equation that could be used to answer the question above. Let W represent the number of weeks. A. 20w + 42 = 155 B. 20w - 155 =42 C. 42w + 20 = 155 D. 155w - 20 = 42 Suppose that eight workers can manufacture 70 radios per day and that nine workers can manufacture 90 radios per day. If radios can be sold for $20 each, the value of marginal product of the ninth worker is a. $200. b. 20 radios. c. 90 radios. d. $400. what is 4:45 called in French Which best describes the relationship between Tybaltand Capulet? write as a sentence in words 7.8 > 3.4 B is wrong need help Can someone please help me with this?John is a 35-year-old male (he/him) administrative assistant who enjoys playing baseball on weekends. During one of their games, John began running from first to second base. As he pushed off to start running, John heard a pop and felt a sharp pain in his right calf as though he had just been kicked in the back of his leg. John fell to the ground and experienced significant pain when putting weight on his right leg. John tried to walk but had to be carried off the field and was taken to the emergency department. At the hospital, it was noted that John had significant swelling at the back of his right leg, had a palpable and visible deformity in the distal calf, and was only able to put small amounts of weight on his right leg. The emergency doctor squeezed the back of Johns right calf and noticed that the ankle would not plantarflex. An x-ray and blood work were ordered which came back without any significant findings.Case Study Questions:1. Explain the possible anatomical structures that were affected by the injury and how each relates to Johns presenting symptoms and test results (250 word maximum).2. Identify and explain three differential diagnoses (diseases or conditions that present similar signs and symptoms that could possibly account for the patient's symptoms) with appropriate justifications. After describing your three differential diagnoses, indicate the most likely diagnosis based on your analysis and provide rationale and support for your selection. 3. From an anatomy point of view:a) Propose a management plan for the most likely diagnosis. This should include the treatment options you would implement given your patient's presenting symptoms. You should provide short- and long-term goals for the patient and a timeline on when you would implement each treatment. There may be several possible treatments you could prescribe to your patient. Include support, justification, and evidence for your prescribed treatment(s) and management plan. b) Explain the effects of your management plan for your patient's condition. From the management plan you've proposed, what effects will each treatment have on the patient's anatomy? Include any positive and negative effects this plan may have on the patient. Vai tr ca sinh vin trong vic gi vng nn c lp dn tc v xy dng CNXH nc ta hin nay. How did the scientific revolution contribute to the Enlightenment in Europeduring the 17th and 18th centuries? Mohamad bought a remote control car and paid $70.20. The price before tax was $65.00. What percent sales tax did he pay? 9) Assume that the random variable X is normally distributed, with mean = 90 and standard deviation o = 12. Compute the probability P(57 < X < 105). A) 0.7888 B) 0.8944 C) 0.8914 D) 0.8819 Pls help me I will mark your answer as brainliest! What is literature? 6. Find the missing side. Round to the nearest tenth Can you help me with question 4, thank you A uniform, solid sphere of radius 2.50 cm and mass 4.75 kg starts with a purely translational speed of 3.00 m/s at the top of an inclined plane. The surface of the incline is 2.75 m long, and is tilted at an angle of 22.0 with respect to the horizontal. Assuming the sphere rolls without slipping down the incline, calculate the sphere's final translational speed v2 at the bottom of the ramp. A man is more likely to leave a relationship if he believes his partner is _____.more attractive than himof average attractivenessequally attractive to himless attractive than him