3. Given that the string variables str1 and str2 contain “you ought to start with logic”
and
“ou”
Respectively, what is the result of each of the following expression?
a. str1. length ()
b. str1. Find (str2)
c. str1.substr (4,25)
d. str1.substr (4,25). find (str2)
e. str1.substr (4,25). find (“logic”), 3)
e. str1 substr. (24,5). find (str2. Substr (0,1))
g. str1. find (“end”)
3. Given that the string variables str1 and str2 contain “you ought to start with logic”...
Can someone help me out with this? You are given a program that receives four lines in the below format, and stores them in str1, str2, str3, and num1. This is not a very long sentence. is long 4 Expand this program to: Write an if-elseif-else statement to print this line only if num1 is higher than 0: "Num1 is higher than 0!" print this line only if num1 is 0: "Num1 equals to 0!" And otherwise, print: ""Num1 is...
DESCRIPTION: You will be given a 2-D string array, called matrix. The array has an unknown number of cells filled with data. Your goal is to iterate through the 2-D array and keep a count of how many cells contain the string "Angela". INPUT: All input has been handled for you: A filled 2-D string array. PROCESSING: Determine the number of rows in the array matrix Determine the number of columns in the array matrix Use nested loops to iterate...
In the first task, you will write a Java program that accepts a string of the format specified next and calculate the answer based on the user input. The input string should be of the format dddxxdddxx*, where d represents a digit and x represents any character and asterisk at the end represents that the string can have any number of characters at the end. 1. Prompt the user to enter a string with the specific format (dddxxdddxx*) 2. Read...
CSC Hw Problems. Any help is appreciated I dont know where to start let alone what the answers are. Your assignment is to write your own version of some of the functions in the built-in <string.h> C library. As you write these functions, keep in mind that a string in C is represented as a char array, with the '\0' character at the end of the string. Therefore, when a string is passed as a parameter, the length of the...
(3 pts) Mechanical energy of a segment (of length dx) of string is given by ME ufdx 1. segment However, this can vary with segment location (sometimes the maximum value and sometimes zero). A more useful expression is the mechanical energy over one wavelength. To find the energy for a wave length, you add up the ME of each segment for one wavelength: ME one wavelength ME segmentdx 0 You can evaluate this at any time you choose. So, using...
UueSLIORS! 1. Find the error in logic in the following statement: We know that a b' is a context-free, not regular language. The class of context-free languages are not closed under complement, so its complement is not context free. But we know that its complement is context-free. 2. We have proved that the regular languages are closed under string reversal. Prove here that the context-free languages are closed under string reversal. 3. Part 1: Find an NFA with 3 states...
*****Complete void example 4, 7, 8, 9, 10 #include <iostream> #include <fstream> #include <vector> #include <string> using namespace std; void rtrim(std::string& str, const std::string& chars = "\t\n\v\f\r ") { str.erase(str.find_last_not_of(chars) + 1); } vector<string> *get_words() { vector<string> *words = new vector<string>(); fstream infile; string word; infile.open("words.txt"); getline(infile, word); while(infile) { rtrim(word); words->push_back(word); getline(infile, word); } return words; } void example_1(vector<string> *words) { // find words that contain the substring 'pet' and 'cat' // HINT: use find(str, p) method....
1). The result of Java expression 5*7>3*(5+2) && 3*5-4<6 is ____ a. 35>35&&9<6 b. true && false c. false d. False (2). You save text files containing Java language source code using the file extension___ a. .java b. .class c. .txt d. .src (3). Which of the following is not a primitive data type in the Java programming language? a. boolean b. byte c. int d. Point (4). Given the Java statement int[][] vari = new int[5][7]; the value...
In C++, You are given a file of customer data with records in the following format : account number, last name, first name, middle name. Write a program to convert the input data and display it to the monitor in the following format : Accout Name Logon ID Initial Pswd 21-88282712-B Keith S. Adams ADAM21 Adam88282 08-36847734-A John R. Sturm STUR08 Stur36847 etc. Notes : 1) The account number on the input is 10 digits 2) The names on...
1,2 and 3
I. EXPERIMENT 1.10: STANDING WAVES ON STRINGS A. Abstract Waves on a string under tension and fixed at both ends result in well-defined modes of vibration with a spectrum of frequencies given by the formula below B. Formulas ē In=n (), n = 1,2,3,... v=JI where fn is the frequency of the nth standing wave mode on the string of length L, linear mass density , and under tension T, and v is the wave speed on...