Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

In java code: Write a function int solution(int N, char CH) that accepts integer N and character CH . The function should return square ofa

In java code:

Write a function int solution(int N, char CH)

that accepts integer N and characterCH. The function should return square ofa number (N) if a character (CH) is "s" otherwise return cubeof a number.

int solution(int N, int M, char CH)

that accepts two integers (N and M) and one character CH. Thefunction should return the product of two integers if a character(CH) is ā€˜pā€™ otherwise return their sum.

boolean solution(String S1, String S2) that accepts two stringsS1 and S2. The function should return true if S1 and S2 are equalotherwise false.

Input
1
4
s

where,

  • First line represents a choice for calling one of the definedmethods. (1 for solution(int N, char CH), 2for solution(int N, int M, char CH) and 3for solution(String S1, String S2)).
  • Second line represents number input.
  • Third line represents choice CH.

Output
16

Here, the first line contains 1 and hence solution(int N,char CH) will get invoked. And since the number is 4 and choice CHis ā€˜sā€™, the function returns 16.

+ Test Case(s)

Standard input 1:

Input

1

16

p

Expected output

4096

Standard input 2:

Input

2

3

4

p

Expected output

12

Standard input 3:

Input

2

3

4

s

Expected output

7

Standard input 4:

3

equal

equal

Expected output

true

Standard input 5:

Input

3

not equal

different

Expected output

false

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Design Operation And Evaluation Of Mobile Communications

Authors: Gavriel Salvendy ,June Wei

1st Edition

3030770249, 978-3030770242

More Books

Students also viewed these Programming questions

Question

What kind of rays are X-rays?

Answered: 1 week ago