We expect to use 600kg of materials, with a standard deviation of 40kg. We have 634kg. Doing this by hand/with a Normal table, first find the Z score for 634: Z = (x-mu)/sigma in general. In our case, that means Z = (634 - 600)/40 = 0.85 If we look up this Z score in the Normal distribution table, we find there's a 0.8023 chance of getting a Z score this low or lower.
Question 4.1 asks what's the probability we use MORE than 634kg of material. The answer to that question is 1-.8023 = .1977. This is the answer you'll get if you just do normalcdf(634, 10000,600,40) on your TI calculator or 1- NORM.DIST(634, 600, 40,1) in Excel.
Question 4.2 is a conditional probability. In general, the formula for P(A | B), "The probability of A given B", is P(A^B)/P(B), "The probability of A and B being true, divided by just the probability of B being true". In our case, The probability of being 500 or greater is .9938. The probability of being above 634 is .1977, so the probability of being above 634 given that we're already above 500 is 0.1977/0.9938 = 0.1989