F= A· (B+C). draw the symbol for the logic gate​

Answers

Answer 1

Answer:

You need an AND gate and an OR gate.

Explanation:

see picture below

F= A (B+C). Draw The Symbol For The Logic Gate

Related Questions

Write SQL queries to answer the following questions: (15 points) a. Which students have an ID number that is less than 50000

Answers

Answer:

SELECT * FROM STUDENTS WHERE ID < 50000

Explanation:

If we assume the table is called STUDENTS, then we want to select everything (represented by *), where (like an if statement) the ID (assuming the name of the column) is less than 50000.

1. Which of the following options can you use to format the contents of a cell?
Select all that apply.
a. Font Size
b. Sort
C. Italic
d. Underline

Answers

Answer:

a

Explanation:

The correct options are A, C, and D. Front Size, Italic, and Underline are the options can you use to format the contents of a cell.

You can also use the keyboard shortcuts Ctrl+B, Ctrl+I, and Ctrl+U to bold, italicize and underline a selection of text.

What is the use of format cells?

You can only alter how cell data appears in the spreadsheet by using cell formats. It's critical to remember that the data's value is unaffected; only how the data is presented has changed. The formatting options include options for fractions, dates, timings, scientific alternatives, and more.

Regular, Bold, Italic and Bold Italic are the four different sorts of font styles. Selected cells or ranges in a worksheet can have their font style changed. Changing the typeface involves the following steps: Pick the cell or cells that need to be changed. The text you want to format should be selected. Go to the Home tab and select Bold, Italic, or Underline. Ctrl + B will bold text. Ctrl + I will italicize text.

Thus, the correct options are A, C, and D.

Learn more about Format cell here:

https://brainly.com/question/24139670

#SPJ2

Find the error and rewrite the code with the error fixed.
// INSTANCE VARIABLE

public class Main {



public static void main(String[] args) {



Product prod1 = new Product();

prod1.Barcode = 123456;



Product prod2 = new Product();

prod2.Barcode = 987654;



System.out.println(prod1.Barcode);

System.out.println(prod2.Barcode);

}

}



public class Product {

public int Barcode;

}

Answers

Answer:

Explanation:

1st mistake: Barcode is written with upeer case, that's not the convention for variables in java, only classes.

2nd: Barcode is public, it is convention to always leave variables private then create getters and setters in case you need to change the value but never acess the variable outside the class it belongs. Also the class should at least have a default constructor in case you are going to instantiate an object outside it.

so the product class should be:

--------------------------------------------------------------------

public class Product {

private int barcode;

        public Product() {

        // default constructor

        }

public int getBarcode() {

 return barcode;

}

public void setBarcode(int barcode) {

 this.barcode = barcode;

}

}

-------------------------------------------------------------------------

3rd: in the main class now you can instantiate the 2 objects but you are gonna set the variable and get the value through the method, like this:

public class Main {

 

public static void main(String[] args) {

   

 Product prod1 = new Product();

 prod1.setBarcode(123456);

 Product prod2 = new Product();

 prod2.setBarcode(987654);

 System.out.println(prod1.getBarcode());

 System.out.println(prod2.getBarcode());

}

}

-----------------------------------------------------------------------------------

Assuming the 2 classes (main and product) are in the same package. But in case they are in different packages, just make sure to import the Product class into the Main class so that you can instantiante an object (new Product()) of it.

Which two are computing devices? (Choose two)
A. Unix
B. Laptop
C. Server
D. Mac OS

Answers

Answer:

ANS is no.B and no. C

hope it helps

stages of IT revolution​

Answers

Answer:

Technological revolutions are dissected into three stages:

The introduction stageThe permeation stageThe power stage

Question # 1 Multiple Select Which features are important when you plan a program? Select 4 options. Knowing what information is needed to find the result. Knowing what information is needed to find the result. Knowing what the user needs the program to accomplish. Knowing what the user needs the program to accomplish. Knowing how many lines of code you are allowed to use. Knowing how many lines of code you are allowed to use. Knowing what you want the program to do. Knowing what you want the program to do. Knowing how to find the result needed. Knowing how to find the result needed.

Answers

Answer:

c

Explanation:

Answer:

Knowing what the user needs the program to accomplish.Knowing how to find the result needed.Knowing what information is needed to find the result.Knowing what you want the program to do

Explanation:

:D

You modified the GreenvilleRevenue program to include a number of methods. Now modify every data entry statement to use a TryParse() method to ensure that each piece of data is the correct type. Any invalid user entries should generate an appropriate message, and the user should be required to reenter the data.
using System;
using static System.Console;
class GreenvilleRevenue
{
static void Main(string[] args)
{
const int fee = 25;
int lastYearsContestants;
int thisYearsContestants;
const int LOW = 0;
const int HIGH = 30;
int other = 0;
int dancer = 0;
int musician = 0;
int singer = 0;
WriteLine("**********************************");
WriteLine("* The stars shine in Greenville. *");
WriteLine("**********************************");
WriteLine("");
lastYearsContestants = getContestantsNum(message, LOW, HIGH);
string[] contestant = new string[thisYearsContestants];
string[] talent = new string[thisYearsContestants];
getContestantsInfo(contestant, talent);
for (int x = 0; x < talent.Length; ++x)
{
if (talent[x] == "O")
{
++other;
}
else if (talent[x] == "S")
{
++singer;
}
else if (talent[x] == "D")
{
++dancer;
}
else if (talent[x] == "M")
{
++musician;
}
}
Clear();
WriteLine("Currently signed up, there are..");
WriteLine("{0} dancers", dancer);
WriteLine("{0} singers", singer);
WriteLine("{0} musicians", musician);
WriteLine("{0} everything else!", other);
contestantByTalent(contestant, talent);
Clear();
contestantInfo(thisYearsContestants, lastYearsContestants, fee);
}
static int getContestantsNum(string message, int LOW, int HIGH)
{
WriteLine("Please enter the number of contestants for last year.>>");
string input = ReadLine();
int contestantsNum = Convert.ToInt32(input);
while (contestantsNum < LOW || contestantsNum > HIGH)
{
WriteLine("Valid numbers are 0 through 30, Please try again.>>");
contestantsNum = Convert.ToInt32(ReadLine());
}
return contestantsNum;
WriteLine("Please enter the number of contestants for this year.>>");
string input = ReadLine();
int contestantsNum = Convert.ToInt32(input);
while (contestantsNum < LOW || contestantsNum > HIGH)
{
WriteLine("Valid numbers are 0 through 30, Please try again.>>");
contestantsNum = Convert.ToInt32(ReadLine());
}
return contestantsNum;
}
static string getTalent(int contestantsNum)
{
bool correct = false;
string talentType = "";
while (!correct)
{
WriteLine("What is contestant " + contestantsNum + "'s skill? Please enter 'S' for Singer, 'D' for Dancer, 'M' for " +
"Musician, 'O' for Other.>>");
talentType = ReadLine().ToUpper();
if (talentType == "S" || talentType == "D" || talentType == "M" || talentType == "O")
{
correct = true;
}
else
{
WriteLine("Please enter a valid response.>>");
}
}
return talentType;
}
static void contestantByTalent(string[] contestant, string[] talent)
{
WriteLine ("To see a list of all contestants with a specific talent, Please enter a talent code.talent codes are(S)inger, (D)ancer, (M)usician, (O)ther; altenatively, you may type (E) to exit.>>");
string entry = ReadLine().ToUpper();
while (entry != "E")
{
if (entry != "S" && entry != "D" && entry != "M" && entry != "O")
{
WriteLine("That wasn't a valid talent code. Valid talent codes are (S)inger, (D)ancer, (M)usician, (O)ther; altenatively, you may type (E) to exit.>>");
entry = ReadLine().ToUpper();
if (entry == "E")
break;
}
for (int x = 0; x < talent.Length; ++x)
{
if (entry == talent[x])
WriteLine("Contestant " + contestant[x] + " talent " + talent[x]);
}
WriteLine("To see a list of all contestants with a specific talent, Please enter a talent code. talent codes are (S)inger, (D)ancer, (M)usician, (O)ther; altenatively, you may type (E) to exit.>>");
entry = ReadLine().ToUpper();
}
}
static void getContestantsInfo(string[] contestant, string[] talent)
{
for (int x = 0; x < contestant.Length; ++x)
{
WriteLine("What is the name for Contestant " + (x + 1) + "?");
contestant[x] = ReadLine();
talent[x] = getTalent(x + 1);
}
}
static void contestantInfo (int thisYearsContestants, int lastYearsContestants, int fee)
{
if (thisYearsContestants > lastYearsContestants * 2)
{
WriteLine("The competition is more than twice as big this year!");
WriteLine("The expected revenue for this year's competition is {0:C}", (thisYearsContestants * fee));
}
else
if (thisYearsContestants > lastYearsContestants && thisYearsContestants <= (lastYearsContestants * 2))
{
WriteLine("The competition is bigger than ever!");
WriteLine("The expected revenue for this year's competition is {0:C}", (thisYearsContestants * fee));
}
else
if (thisYearsContestants < lastYearsContestants)
{
WriteLine("A tighter race this year! Come out and cast your vote!");
WriteLine("The expected revenue for this year's competition is {0:C}.", (thisYearsContestants * fee));
}
}
}

Answers

Doin it for points sorry

The ______ Works on a single variable or constant. *​

Answers

Answer:

man

Explanation:

Kiểm tra cặp số hứa hôn
Đầu vào : số nguyên n,m
Đầu ra : in ra n,m là cặp số hứa hôn và in ra không là số hứa hôn nếu ngược lại

Answers

Answer:

Sorry im not Vietnam so please explain it in English or ask someone who can speak Vietnam to help you

how can computers be a threat to public safety??

help asap marking brainiest ​

Answers

Loss or theft of your computer, smartphone or tablet. Malware, including spyware, on public computers. Theft of personal information from, or access to browsing history on public computers.

50 free po.intssssssss!

Answers

Answer:ty

Explanation:

Ty tysm u angel u amazing human angel

Create a program that uses an array of Shape references to objects of each concrete class in the hierarchy (see program-2). The program should print a text description of the object to which each array element refers. Also, in the loop that processes all the shapes in the array, determine the size of each shape If it‟s a TwoDimensionalShape, display its area. If it‟s a ThreeDimensionalShape, display its area and volum ​

Answers

You got any social media would send you the rest. If you want it.

The program uses an array for shape reference to objects of each concrete class given. The program is in text description in java language.

What is a program array?

Array programming in computer science refers to methods that allow operations to be applied to a whole set of values at once. This kind of solution is frequently used in scientific and engineering settings.

Shape.java

public abstract class Shape { private int sides;

public Shape() {

this.sides=0;

}

public Shape(int sides) { super(); this.sides = sides;

}

public int getSides() { return sides;

}

public void setSides (int sides) { this.sides = sides;

}

public abstract double calcArea();

Override

public String toString() {

return "This Shape has [sides=" + sides + "]";

Therefore, the program array is given above.

To learn more about program array, refer to the link:

https://brainly.com/question/13104121

#SPJ2

Other Questions
A cylinder has a volume of 33,912 units3 and aheight of 12 units. What is the diameter of thecylinder? What percentage of Africans live in sub-Saharan Africa ?A. less than 10% B. about 50 % C. about 65% D. about 85 %Not sure if is b or c or d Modeling with Systems how do you do this? a.Write the equation in slope intercept form of a line that goes through the points(-7, 10) and (1,4). Hint: once you find m, you will need to solve for b PLEASE HELP ILL MAKE YOU BRAINLEST AND GIVE YOU 20 POINTS Reflect upon your analysis, and write a two-paragraph reflection of at least 200 words. In the first paragraph discuss what elements of your outline are successful. Consider details you included, and the organizational structure of your outline. In the second paragraph discuss the elements of your outline that could benefit from further development. Consider important details you may have omitted, and reflect upon your outline organization. Use specific details from your writing. 12. _____ your sister go to school?A. Arent B. Isnt C. Dont D. Doesnt13. My parents _____ to live in the city.A. arent like B. like C. likes D. dont likes Did America have the right to take over other nations ? Why or why not A Projectile of mass 0.277 kf is shot from a cannon. The end of the cannon's barrel is at heiht 6.8 m. The initial velocity of the projectile has a horizontal component of 6.1 m/s. The projectile rises to a maximum height above the end of the cannon's barrel and strikes th ground a horizontal distance past the end of the cannon;s barrel. What is the time it takes for the projectile to reach its maximm height? The acceleration of gravity is 9.8 m/s^2. I WILL MARK BRAINLIST IF CORRECT !! Explain why opening a parachute can slow a skydiver down to a safe landing speed. You can add drawings to aid your explanation Questions1. Which of the following BEST describes how Nick feels during dinner with the Buchanans? a. Captivated and curious b. Uncomfortable and overwhelmed c. Jealous and skeptical d. Enthralled and excited2. Which piece of textual evidence BEST supports the answer to the above question? a. They [Daisy and Miss Baker] were here, and they accepted Tom and me, making only polite pleasant effort to entertain or be entertained. They knew that presently dinner would be over and a little later the evening, too, would be over and casually put away. b. I am not even faintly like a rose. She [Daisy] was only extemporizing, but a stirring warmth flowed from her, as if her heart was trying to come out to you concealed in one of those breathless, thrilling words. c. The telephone rang inside, startlingly...I was conscious of wanting to look squarely at every one, and yet to avoid all eyes...To a certain temperament the situation might have seemed intriguing--my own instinct was to telephone immediately for the police. d. Daisy took her face in her hands as if feeling its lovely shape, and her eyes moved gradually out into the velvet dusk. I saw that turbulent emotions possessed her, so I asked what I thought would be some sedative questions about her little girl.3. Read the following excerpt describing the Valley of Ashes: About half way between West Egg and New York the motor-road hastily joins the railroad and runs beside it for a quarter of a mile so as to shrink away from a certain desolate area of land. This is a valley of ashesa fantastic farm where ashes grow like wheat into ridges and hills and grotesque gardens, where ashes take the forms of houses and chimneys and rising smoke and finally, with a transcendent effort, of men who move dimly and already crumbling through the powdery air. Occasionally a line of grey cars crawls along an invisible track, gives out a ghastly creak and comes to rest, and immediately the ash-grey men swarm up with leaden spades and stir up an impenetrable cloud which screens their obscure operations from your sight. But above the grey land and the spasm of bleak dust which drift endlessly over it, you perceive, after a moment, the eyes of Doctor T.J. Eckleburg. The eyes of Doctor T. J. Eckleburg are blue and gigantictheir retinas are one yard high his eyes, dimmed a little by many paintless days under sun and rain, brood on over the solemn dumping ground. The valley of ashes is bounded on one side by a small foul river, and when the drawbridge is up to let barges through, the passenger on waiting trains can stare at the dismal scene for as long as half an hour. There is always a halt there of at least a minute and it was because of this that I first met Tom Buchanans mistress. Which of the following BEST describes the mood of this excerpt? a. Serious and somber b. Frightening and mysterious c. Dreary and depressing d. Transcendent and obscure A producer of pottery is considering the addition of a new plant to absorb the backlog of demand that now exists. The primary location being considered will have fixed costs of $9,200 per month and variable costs of 70 cents per unit produced. Each item is sold to retailers at a price that aver- ages 90 cents. a. What volume per month is required in order to break even? b. What profit would be realized on a monthly volume of 61,000 units? 87,000 units? c. What volume is needed to obtain a profit of $16,000 per month? d. What volume is needed to provide a revenue of $23,000 per month? e. Plot the total cost and total revenue lines. Based on the passage, which of the following is not a role that conflict plays?Aguiding the plotBadding tension and actionCchanging the readers mindDmaking the story more interesting write the equation of a line that is perpendicular to 2x+4y= 14 a need goes through (4,6) an astronomer looking out into space will observe that Use completing the square to solve this quadratic equation.Check all that apply.x2 + 6x + 9 = 2A. x = 3 + 4/5B. x= -3 +2c. x= 3 - 5D. =-3- Prompt: It's 5:30 AM, and as a helicopter pilot you've just been told there's an injured man on a boat you need to get to a hospital . The boat is going towards where you are a at 10 mph, but is currently 400 miles away. You need to get him as soon as possible, but you only have 6600 lbs of fuel in your helicopter, which burns 1200 lbs per hour and always travels at 150 mph. Also, you need to account for 30 min of fuel spent hovering over the boat to get the man into the helicopter and 1 extra hour of fuel due to helicopter standards. Therefore, when can you depart your station to get the man as soon as possible? What devices do not need device drivers to be manually installed, and start to function as soon as they are connected to a computer?. Write a letter to your school that lists the specific changes you recommend making to the cafeteria menu. Explain the importance of these changes. Need some help on this please Michaela needs to represent this statement as an inequality.One-fourth of a number is no more than two-thirds.Drag and drop a symbol to correctly complete the inequality.