Question

Context Free Grammars and Parse Trees Write a grammar rule for parsing an ifStatement. Specifically, you...

Context Free Grammars and Parse Trees

  1. Write a grammar rule for parsing an ifStatement. Specifically, you should consider the following: an ifStatement should
    1. Start with the if’ keyword,
    2. Require parenthesis around the condition,
    3. Can have any expression for the condition (you do not need to write a rule for expressions, you can assume one exists named expression),
    4. The condition is followed by the ‘then’ keyword,
    5. Which is followed by zero or more statements (you do not need to write a rule for statements, you can assume one exists named statements)
    6. Followed by the else’ keyword,
    7. Followed by zero or more statements,
    8. Followed by the end’ keyword.

Example ifStatement:

if ( x * y + 10 ) then

   x = 1

   y = 2

else

   x = 0

   y = 1

end

Homework Answers

Know the answer?
Your Answer:

Post as a guest

Your Name:

What's your source?

Earn Coins

Coins can be redeemed for fabulous gifts.

Not the answer you're looking for?
Ask your own homework help question
Similar Questions
In this lab, you will write a program that creates a binary search tree based on...
In this lab, you will write a program that creates a binary search tree based on user input. Then, the user will indicate what order to print the values in. **Please write in C code** Start with the bst.h and bst.c base code provided to you. You will need to modify the source and header file to complete this lab. bst.h: #ifndef BST_H #define BST_H typedef struct BSTNode { int value; struct BSTNode* left; struct BSTNode* right; } BSTNode; BSTNode*...
You will write a program that loops until the user selects 0 to exit. In the...
You will write a program that loops until the user selects 0 to exit. In the loop the user interactively selects a menu choice to compress or decompress a file. There are three menu options: Option 0: allows the user to exit the program. Option 1: allows the user to compress the specified input file and store the result in an output file. Option 2: allows the user to decompress the specified input file and store the result in an...
c++ Program Description You are going to write a computer program/prototype to process mail packages that...
c++ Program Description You are going to write a computer program/prototype to process mail packages that are sent to different cities. For each destination city, a destination object is set up with the name of the city, the count of packages to the city and the total weight of all the packages. The destination object is updated periodically when new packages are collected. You will maintain a list of destination objects and use commands to process data in the list....
Please read the article and answear about questions. Determining the Value of the Business After you...
Please read the article and answear about questions. Determining the Value of the Business After you have completed a thorough and exacting investigation, you need to analyze all the infor- mation you have gathered. This is the time to consult with your business, financial, and legal advis- ers to arrive at an estimate of the value of the business. Outside advisers are impartial and are more likely to see the bad things about the business than are you. You should...
ADVERTISEMENT
Need Online Homework Help?

Get Answers For Free
Most questions answered within 1 hours.

Ask a Question
ADVERTISEMENT