Skip to content

Regular expression for 0 or more occurrence of either a or b or both

  • Post author:Educate
  • Post published:September 9, 2023
  • Post category:FLAT
  • Post comments:0 Comments

Regular expression for 0 or more occurrence of either a or b or both =>   (a+b)*

Continue ReadingRegular expression for 0 or more occurrence of either a or b or both

Regular expression for all binary string

  • Post author:Educate
  • Post published:September 8, 2023
  • Post category:FLAT
  • Post comments:0 Comments

All binary string. =>    (0+1)*

Continue ReadingRegular expression for all binary string

Regular expression for string having one or more a

  • Post author:Educate
  • Post published:September 8, 2023
  • Post category:Blog
  • Post comments:0 Comments

Regular expression for string having one or more a =>     a+

Continue ReadingRegular expression for string having one or more a

Regular expression for string having zero or more a

  • Post author:Educate
  • Post published:September 8, 2023
  • Post category:FLAT
  • Post comments:0 Comments

Regular expression for String having zero or more a =>        a*

Continue ReadingRegular expression for string having zero or more a

Regular expression over ∑={a,b,c} that represent all string of length 3

  • Post author:Educate
  • Post published:September 8, 2023
  • Post category:FLAT
  • Post comments:0 Comments

Regular expression over ∑={a,b,c} that represent all string of length 3 =>     (a+b+c)(a+b+c)(a+b+c)

Continue ReadingRegular expression over ∑={a,b,c} that represent all string of length 3

Specification of token

  • Post author:Educate
  • Post published:September 8, 2023
  • Post category:Compliler Design
  • Post comments:0 Comments

Strings and languages Terms for a part of string Term Definition Prefix of S A string obtained by removing zero or more trailing symbol of string S. e.g., ban is…

Continue ReadingSpecification of token

Explain token & pattern and lexemes

  • Post author:Educate
  • Post published:September 7, 2023
  • Post category:Compliler Design
  • Post comments:0 Comments

Token: Sequence of character having a collective meaning is known as token. Typical tokens are, 1) Identifiers 2) keywords 3) operators 4) special symbols 5) constants Pattern: The set of…

Continue ReadingExplain token & pattern and lexemes

Role of lexical analysis and its issues

  • Post author:Educate
  • Post published:September 6, 2023
  • Post category:Compliler Design
  • Post comments:0 Comments

The lexical analyzer is the first phase of compiler. Its main task is to read the input characters and produce as output a sequence of tokens that the parser uses…

Continue ReadingRole of lexical analysis and its issues

Write the difference between phase and pass

  • Post author:Educate
  • Post published:September 6, 2023
  • Post category:Compliler Design
  • Post comments:0 Comments

No. Phase Pass 1 The process of compilation is carried out in various step is called phase. Various phases are logically grouped together to form a pass. 2 The phases…

Continue ReadingWrite the difference between phase and pass

Explain types of compiler

  • Post author:Educate
  • Post published:September 6, 2023
  • Post category:Compliler Design
  • Post comments:0 Comments

No. Single pass compiler Multi pass compiler 1 A one-pass compiler is a compiler that passes through the source code of each compilation unit only once. A multi-pass compiler is…

Continue ReadingExplain types of compiler
  • Go to the previous page
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • …
  • 43
  • Go to the next page
© Educate - All Rights Reserved