answersLogoWhite

0

Still curious? Ask our experts.

Chat with our AI personalities

ReneRene
Change my mind. I dare you.
Chat with Rene
RossRoss
Every question is just a happy little opportunity.
Chat with Ross
ProfessorProfessor
I will give you the most educated answer.
Chat with Professor

Add your answer:

Earn +20 pts
Q: What are the two main headings of a place value chart?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Continue Learning about Other Math

What are the three main headings on a place value chart?

units tens hundreds


What are the two main parts of a place value chart?

Thousands and Units


Under the main heading on a place value chart are how may places?

Three


How many antichrists were there?

In 1 John 2 it states that "many antichrists" have already come, and we don't know how many. But he states that THE antichrist is to come, which Paul confirms as that "man of sin". Now what many people fail to realize is that the word "anti" in antichrist actually translates as "IN PLACE OF". So the main end time antichrist would be someone who puts himself in place of Christ. So to identify who the main end time antichrist is, we need to look for someone who proclaims to be "Christian" but is actually putting himself in place of Christ on earth.


Explain briefly algorithm and draw the flow chart to find roots of a quadratic equation?

using System; using System.Collections.Generic; using System.Text; namespace ConsoleApplication1 { class Program { static void Main(string[] args) { double a, b, c, dis,root1,root2,temp; Console.WriteLine("Enter the value of Cofficients "); Console.WriteLine("Enter the value of Cofficient a "); a = Convert.ToInt32(Console.ReadLine()); Console.WriteLine("Enter the value of Cofficient b"); b = Convert.ToInt32(Console.ReadLine()); Console.WriteLine("Enter the value of Cofficient c"); c = Convert.ToInt32(Console.ReadLine()); dis = b * b - 4 * a * c; Console.WriteLine("Dis is {0} ", dis); if (dis > 0) { temp = Math.Sqrt(dis); root1 = (-b + temp) / 2 * a; root2 = (-b - temp) / 2 * a; Console.WriteLine("First Root is {0} ",root1); Console.WriteLine("Second Root is {0} ",root2); } if (dis == 0) { root1 = -b / 2 * a; Console.WriteLine(" Root is {0} ", root1); } if (dis < 0) { temp = dis; root1 = -b ; root2 = 2 * a; Console.WriteLine("First Root is ({0} + ({1}i))/{2} ", root1,temp,root2); Console.WriteLine("Second Root is ({0} - ({1}i))/{2} ", root1, temp, root2); } Console.ReadLine(); } } }