

InterviewSolution
Saved Bookmarks
1. |
Find all the angles made by the transversal with the parallel lines l and m, in fig. 7 |
Answer» <html><body><p><strong>Step-by-step explanation:</strong></p><p><a href="https://interviewquestions.tuteehub.com/tag/example-978283" style="font-weight:bold;" target="_blank" title="Click to know more about EXAMPLE">EXAMPLE</a>:</p><p>int a = <a href="https://interviewquestions.tuteehub.com/tag/8-336412" style="font-weight:bold;" target="_blank" title="Click to know more about 8">8</a>;</p><p>int b = 10;</p><p>boolean c = a < b;</p><p>Here, as a is less than b so the result of a < b is true. Hence, boolean variable c <a href="https://interviewquestions.tuteehub.com/tag/becomes-1994370" style="font-weight:bold;" target="_blank" title="Click to know more about BECOMES">BECOMES</a> true.</p></body></html> | |