Hello Programmers/Coders, Today we are going to share solutions of Programming problems of HackerRank of Programming Language Java . At Each Problem with Successful submission with all Test Cases Passed, you will get an score or marks. And after solving maximum problems, you will be getting stars. This will highlight your profile to the recruiters.
In this post, you will find the solution for Java Annotations -HackerRank Problem. We are providing the correct and tested solutions of coding problems present on HackerRank. If you are not able to solve any problem, then you can take help from our Blog/website.
Use “Ctrl+F” To Find Any Questions Answer. & For Mobile User, You Just Need To Click On Three dots In Your Browser & You Will Get A “Find” Option There. Use These Option to Get Any Random Questions Answer.
Introduction To Java
JAVA was developed by James Gosling at Sun Microsystems Inc in the year 1991, later acquired by Oracle Corporation. It is a simple programming language. Java makes writing, compiling, and debugging programming easy. It helps to create reusable code and modular programs.
Java is a class-based, object-oriented programming language and is designed to have as few implementation dependencies as possible. A general-purpose programming language made for developers to write once run anywhere that is compiled Java code can run on all platforms that support Java. Java applications are compiled to byte code that can run on any Java Virtual Machine. The syntax of Java is similar to c/c++.
Link for the Problem – Java Annotations – Hacker Rank Solution
Java Annotations – Hacker Rank Solution
Java annotation can be used to define the metadata of a Java class or class element. We can use Java annotation at the compile time to instruct the compiler about the build process. Annotation is also used at runtime to get insight into the properties of class elements.
Java annotation can be added to an element in the following way:
@Entity Class DemoClass{ }
We can also set a value to the annotation member. For example:
@Entity(EntityName="DemoClass") Class DemoClass{ }
In Java, there are several built-in annotations. You can also define your own annotations in the following way:
@Target(ElementType.METHOD) @Retention(RetentionPolicy.RUNTIME) @interface FamilyBudget { String userRole() default "GUEST"; }
Here, we define an annotation , where is the only member in that custom annotation. The takes only type values, and the default is “GUEST”. If we do not define the value for this annotation member, then it takes the default. By using @Target, we can specify where our annotation can be used. For example, the annotation can only be used with the method in a class. @Retention defines whether the annotation is available at runtime. To learn more about Java annotation, you can read the tutorial and oracle docs.
Take a look at the following code segment:
@Target(ElementType.METHOD) @Retention(RetentionPolicy.RUNTIME) @interface FamilyBudget { String userRole() default "GUEST"; } class FamilyMember { public void seniorMember(int budget, int moneySpend) { System.out.println("Senior Member"); System.out.println("Spend: " + moneySpend); System.out.println("Budget Left: " + (budget - moneySpend)); } public void juniorUser(int budget, int moneySpend) { System.out.println("Junior Member"); System.out.println("Spend: " + moneySpend); System.out.println("Budget Left: " + (budget - moneySpend)); } } public class Solution { public static void main(String[] args) { Scanner in = new Scanner(System.in); int testCases = Integer.parseInt(in.nextLine()); while (testCases > 0) { String role = in.next(); int spend = in.nextInt(); try { Class annotatedClass = FamilyMember.class; Method[] methods = annotatedClass.getMethods(); for (Method method : methods) { if (method.isAnnotationPresent(FamilyBudget.class)) { FamilyBudget family = method .getAnnotation(FamilyBudget.class); String userRole = family.userRole(); int budgetLimit = family.budgetLimit(); if (userRole.equals(role)) { if(spend<=budgetLimit){ method.invoke(FamilyMember.class.newInstance(), budgetLimit, spend); }else{ System.out.println("Budget Limit Over"); } } } } } catch (Exception e) { e.printStackTrace(); } testCases--; } } }
Here, we partially define an annotation, and a class, . In this problem, we give the user role and the amount of money that a user spends as inputs. Based on the user role, you have to call the appropriate method in the class. If the amount of money spent is over the budget limit for that user role, it prints Budget Limit Over
.
Your task is to complete the annotation and the class so that the class works perfectly with the defined constraints.
Note: You must complete the incomplete lines in the editor. You are not allowed to change, delete or modify any other lines. To restore the original code, click on the top-left button on the editor and create a new buffer.
Input Format
The first line of input contains an integer representing the total number of test cases. Each test case contains a string and an integer separated by a space on a single line in the following format:
UserRole MoneySpend
Constraints
Name contains only lowercase English letters.
Output Format
Based on the user role and budget outputs, output the contents of the certain method. If the amount of money spent is over the budget limit, then output Budget Limit Over
.
Sample Input
3 SENIOR 75 JUNIOR 45 SENIOR 40
Sample Output
Senior Member Spend: 75 Budget Left: 25 Junior Member Spend: 45 Budget Left: 5 Senior Member Spend: 40 Budget Left: 60
Java Annotations – Hacker Rank Solution
import java.lang.annotation.ElementType; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; import java.lang.reflect.Method; import java.util.Scanner; @Target(ElementType.METHOD) @Retention(RetentionPolicy.RUNTIME) @interface FamilyBudget { String userRole() default "GUEST"; int budgetLimit(); } class FamilyMember { @FamilyBudget(userRole = "SENIOR", budgetLimit = 100) public void seniorMember(int budget, int moneySpend) { System.out.println("Senior Member"); System.out.println("Spend: " + moneySpend); System.out.println("Budget Left: " + (budget - moneySpend)); } @FamilyBudget(userRole = "JUNIOR", budgetLimit = 50) public void juniorUser(int budget, int moneySpend) { System.out.println("Junior Member"); System.out.println("Spend: " + moneySpend); System.out.println("Budget Left: " + (budget - moneySpend)); } } public class Solution { @SuppressWarnings({ "resource", "rawtypes" }) public static void main(String[] args) { Scanner in = new Scanner(System.in); int testCases = Integer.parseInt(in.nextLine()); while (testCases > 0) { String role = in.next(); int spend = in.nextInt(); try { Class annotatedClass = FamilyMember.class; Method[] methods = annotatedClass.getMethods(); for (Method method : methods) { if (method.isAnnotationPresent(FamilyBudget.class)) { FamilyBudget family = method.getAnnotation(FamilyBudget.class); String userRole = family.userRole(); int budgetLimit = family.budgetLimit(); if (userRole.equals(role)) { if (spend <= budgetLimit) { method.invoke(FamilyMember.class.newInstance(), budgetLimit, spend); } else { System.out.println("Budget Limit Over"); } } } } } catch (Exception e) { e.printStackTrace(); } testCases--; } } }
Some truly great info , Glad I discovered this.
I wish to show my affection for your generosity for those people that must have assistance with in this question. Your very own commitment to passing the message up and down ended up being exceptionally practical and has specifically empowered others just like me to get to their pursuits. Your important publication signifies this much a person like me and somewhat more to my mates. With thanks; from each one of us.
I think this site holds some really fantastic info for everyone :D. “The ground that a good man treads is hallowed.” by Johann von Goethe.
of course like your web site but you need to check the spelling on quite a few of your posts. Several of them are rife with spelling problems and I find it very troublesome to tell the truth nevertheless I’ll definitely come back again.
I’ve been browsing online greater than 3 hours these days, yet I never found any attention-grabbing article like yours. It’s beautiful price enough for me. In my opinion, if all site owners and bloggers made just right content material as you probably did, the net can be a lot more useful than ever before.
Perfect piece of work you have done, this web site is really cool with fantastic information.
I?¦ve learn some just right stuff here. Definitely value bookmarking for revisiting. I surprise how a lot attempt you put to make this type of magnificent informative web site.
I enjoy, result in I discovered just what I used to be looking for. You’ve ended my 4 day long hunt! God Bless you man. Have a nice day. Bye
Hi, I think your site might be having browser compatibility issues. When I look at your website in Safari, it looks fine but when opening in Internet Explorer, it has some overlapping. I just wanted to give you a quick heads up! Other then that, fantastic blog!
It is really a great and helpful piece of information. I am glad that you shared this useful info with us. Please keep us informed like this. Thank you for sharing.
Undeniably believe that which you stated. Your favorite justification seemed to be on the internet the simplest thing to be aware of. I say to you, I certainly get annoyed while people consider worries that they just don’t know about. You managed to hit the nail upon the top and also defined out the whole thing without having side effect , people could take a signal. Will likely be back to get more. Thanks
Loving the information on this website , you have done outstanding job on the blog posts.
Sweet web site, super style and design, really clean and utilise friendly.
Sweet internet site, super pattern, really clean and utilise genial.
I like this website so much, saved to favorites. “Respect for the fragility and importance of an individual life is still the mark of an educated man.” by Norman Cousins.
Hey there! This post could not be written any better! Reading through this post reminds me of my old room mate! He always kept talking about this. I will forward this page to him. Fairly certain he will have a good read. Many thanks for sharing!
I’m curious to find out what blog platform you are using? I’m having some minor security issues with my latest site and I would like to find something more risk-free. Do you have any suggestions?
I believe that is among the so much vital info for me. And i’m satisfied studying your article. But should commentary on few general things, The web site taste is perfect, the articles is actually excellent : D. Just right process, cheers
Normally I don’t read post on blogs, however I wish to say that this write-up very forced me to check out and do so! Your writing taste has been surprised me. Thank you, quite nice post.