• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Devaka Cooray
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Jeanne Boyarsky
  • Tim Cooke
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Tim Moores
  • Mikalai Zaikin
  • Carey Brown
Bartenders:

Doubt from javaprepare.com

 
Ranch Hand
Posts: 18944
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Language fundamentals tutorial question no. 17
Which of the following are legal Java programs. Select all the correct answer?
A.// The comments come before the package
package pkg;
import java.awt.*;
class C{};
B.package pkg;
import java.awt.*;
class C{};
C.package pkg1;
package pkg2;
import java.awt.*;
class C{};
D.package pkg;
import java.awt.*;
E.import java.awt.*;
class C{};
F.import java.awt.*;
package pkg;
class C {};
Answers he gave: A, B, D, E
My doubt is Do we need semicolon( after class C{};
please someone tell me.
Thank you all in advance

Regards
VR
 
Ranch Hand
Posts: 79
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
You are right. A semi-colon is NOT required. But it does not hurt either. A semi-colon by itself is an empty statement. It is not illegal.
 
Beware the other head of science - it bites! Nibble on this message:
a bit of art, as a gift, that will fit in a stocking
https://gardener-gift.com
reply
    Bookmark Topic Watch Topic
  • New Topic