CodingBat - String-01

Lakukan tugas rumah & ujian kamu dengan baik sekarang menggunakan Quizwiz!

The web is built with HTML strings like "<i>Yay</i>" which draws Yay as italic text. In this example, the "i" tag makes <i> and </i> which surround the word "Yay". Given tag and word strings, create the HTML string with tags around the word, e.g. "<i>Yay</i>". makeTags("i", "Yay") → "<i>Yay</i>" makeTags("i", "Hello") → "<i>Hello</i>" makeTags("cite", "Yay") → "<cite>Yay</cite>"

public String makeTags(String tag, String word) { return ("<"+tag+">"+word+"</"+tag+">"); }

Given 2 strings, a and b, return a string of the form short+long+short, with the shorter string on the outside and the longer string on the inside. The strings will not be the same length, but they may be empty (length 0). comboString("Hello", "hi") → "hiHellohi" comboString("hi", "Hello") → "hiHellohi" comboString("aaa", "b") → "baaab"

public String comboString(String a, String b) { if (a.length() > b.length()) return b + a + b; return a + b + a; }

Given a string, return the string made of its first two chars, so the String "Hello" yields "He". If the string is shorter than length 2, return whatever there is, so "X" yields "X", and the empty string "" yields the empty string "". Note that str.length() returns the length of a string. firstTwo("Hello") → "He" firstTwo("abcdefg") → "ab" firstTwo("ab") → "ab"

public String firstTwo(String str) { if (str.length() < 2) return str; return str.substring(0, 2); }

Given a string name, e.g. "Bob", return a greeting of the form "Hello Bob!". helloName("Bob") → "Hello Bob!" helloName("Alice") → "Hello Alice!" helloName("X") → "Hello X!"

public String helloName(String name) { return ("Hello " +name +"!"); }

Given a string, return a "rotated left 2" version where the first 2 chars are moved to the end. The string length will be at least 2. left2("Hello") → "lloHe" left2("java") → "vaja" left2("Hi") → "Hi"

public String left2(String str) { return str.substring(2) + str.substring(0, 2); }

Given a string, return a new string made of 3 copies of the last 2 chars of the original string. The string length will be at least 2. extraEnd("Hello") → "lololo" extraEnd("ab") → "ababab" extraEnd("Hi") → "HiHiHi"

public String extraEnd(String str) { int len = str.length(); return str.substring(len - 2) + str.substring(len - 2) + str.substring(len - 2); }

Given a string of even length, return the first half. So the string "WooHoo" yields "Woo". firstHalf("WooHoo") → "Woo" firstHalf("HelloThere") → "Hello" firstHalf("abcdef") → "abc"

public String firstHalf(String str) { return str.substring(0, str.length()/2); }

Given two strings, a and b, return the result of putting them together in the order abba, e.g. "Hi" and "Bye" returns "HiByeByeHi". makeAbba("Hi", "Bye") → "HiByeByeHi" makeAbba("Yo", "Alice") → "YoAliceAliceYo" makeAbba("What", "Up") → "WhatUpUpWhat"

public String makeAbba(String a, String b) { return a+b+b+a; }

Given an "out" string length 4, such as "<<>>", and a word, return a new string where the word is in the middle of the out string, e.g. "<<word>>". Note: use str.substring(i, j) to extract the String starting at index i and going up to but not including index j. makeOutWord("<<>>", "Yay") → "<<Yay>>" makeOutWord("<<>>", "WooHoo") → "<<WooHoo>>" makeOutWord("[[]]", "word") → "[[word]]"

public String makeOutWord(String out, String word) { return out.substring(0,2) + word + out.substring(2); }

Given 2 strings, return their concatenation, except omit the first char of each. The strings will be at least length 1. nonStart("Hello", "There") → "ellohere" nonStart("java", "code") → "avaode" nonStart("shotl", "java") → "hotlava"

public String nonStart(String a, String b) { return a.substring(1) + b.substring(1); }

Given a string, return a "rotated right 2" version where the last 2 chars are moved to the start. The string length will be at least 2. right2("Hello") → "loHel" right2("java") → "vaja" right2("Hi") → "Hi"

public String right2(String str) { int length = str.length(); String sub = str.substring(length - 2); String sub2 = str.substring(0, length - 2); return sub + sub2; }

Given a string, return a version without the first and last char, so "Hello" yields "ell". The string length will be at least 2. withoutEnd("Hello") → "ell" withoutEnd("java") → "av" withoutEnd("coding") → "odin"

public String withoutEnd(String str) { return str.substring(1, str.length() - 1); }


Set pelajaran terkait

Computer Concepts Quiz Questions

View Set

Auditing Chapter 19 Multiple Choice

View Set

Unité 4. Lire, c'est s'envoler ailleurs.

View Set

Human Anatomy: Chapter 5 Integumentary System

View Set

Advanced Computer Science Chapter 1

View Set

Human Nutrition and Wellness Exam Ch 1-4

View Set

Ag. Econ Chapter 1 Review Questions

View Set