Take:QUIZ: Operator Gymnastics For this lab, you will use your knowledge of Bro Script operators to solve very basic math problems as a familiarization exercise. All results should be printed using the following template: event bro_init() { print ; } Calculate the circumference of a circle with radius 2 (Hint: C=2πr). 12.56637 24.4948 12.0 74.0 Answer Explanation Calculation: 2*3.1415926*2 -------------------------------- What is the remainder of 123 / 100? 1.23 23 1 0 Answer Explanation Calculation: 123 % 100 -------------------------- What is the result of the Boolean expression: (T && F) && T || (!F && F)? F Invalid Expression NaN T Answer Explanation Calculation: (T && F) && T || (!F && F) --------------------------------- Calculate the area of a triangle with base of 4 and height of 20? (Hint: (b × h)/2) 20 40 60 NaN Answer Explanation Calculation: (4*20)/2 ------------------------------ Find the positive remainder of -213 divided by 20. 10.65 10 3 13 Answer Explanation Calculation: |-213| % 20