please help me... I'd really appreciate it.

Please Help Me... I'd Really Appreciate It.

Answers

Answer 1

Answer:

output is less

Explanation:


Related Questions

If oldSeq is "1100000111" and segment is "11", then "00000111" should be stored in newSeq. If oldSeq is "0000011" and segment is "11", then "00000" should be stored in newSeq. If oldSeq is "1100000111" and segment is "00", then "11000111" should be stored in newSeq. Write the code segment below. Your code segment should meet all specifications and conform to the examples.

Answers

Answer:

Written in Java

The complete program is as follows:

import java.util.Scanner;

public class RemoveString{

public static void main(String [] args){

String oldSeq, newSeq, segment;

Scanner input = new Scanner(System.in);

System.out.print("oldSeq: ");

oldSeq = input.next();

System.out.print("Segment: ");

segment = input.next();

newSeq=oldSeq.replaceFirst(segment, "");

System.out.print("newSeq: "+newSeq);

}

}

Explanation:

This line declares necessary variables

String oldSeq, newSeq, segment;

Scanner input = new Scanner(System.in);

This line prompts user for oldSeq

System.out.print("oldSeq: ");

This line gets oldSeq

oldSeq = input.next();

This line prompts user for Segment

System.out.print("Segment: ");

This line gets segment

segment = input.next();

This line computes newSeq and it works perfectly for the given instances in the question

newSeq=oldSeq.replaceFirst(segment, "");

This line prints newSeq

System.out.print("newSeq: "+newSeq);

4.9 code practice question 3 edhesive. Anyone know how to do this??

Answers

Answer:

In Python:

x = 0

for i in range (99, 0, -1):

   x += i

   print(x)

Explanation:

It just works.

The required program written in python 3 which prints the running total of integers from 99 backwards is as follows :

sum = 0

#initialize the sum of the integers to 0

for num in range (99, 0, -1):

#loop through integers starting from 99 and take 1 step backward

sum+=num

#add the iterated value to the number in the sum variable and assign the value to the same variable.

print(sum)

#display the value of sum after each iteration.

Therefore, the output of the program is attached below.

Learn more :https://brainly.com/question/19136274

which type of operating system is permanently programmed into a hardware device.​

Answers

Answer:

Depends on what Operating System you are using.

4.3 Code Practice: Question 1
Grandma Ester normally gives you hugs for your birthday - one for every year old you are. When you turned 15, she squished you with 15 hugs! This year, she, unfortunately, cannot see you on your birthday, so instead, she wants to send you virtual hugs!

Create a program that prompts the user for how old they are turning and then using a loop, output a virtual hug for every year old they are.

The following prints a single “virtual hug.”

print("**HUG**")

Answers

In python:

age = int(input("How old are you? "))

i = 0

while i < age:

   print("**HUG**")

   i += 1

I hope this helps!

What is the output of the following program?
if<- 1
repeat
j+1
repeat
display i *j
j<- j+2
until j = 5
if <- i +1
until i = 5

Answers

What subject is this for I’m kind of lost here

You are able to change the formatting of a table after it is inserted into a placeholder.

True
False

Answers

The correct answers is
True

How do i make a custom answers in Vbscript in notepad

Answers

Answer:

Open notepad.

Write any VB Script code. For example: ...

Save notepad as Test.vbs on desktop. Once you will save notepad with script with the file extension .vbs the notepad will look like this-

Now double click on the file.

Explanation:

Hope this helped, sorry if it didn't

Todds manager has asked him to write a report on ways to increase safety in the warehouse Todd use the Internet to research statistics in recommendations for improving safety in the workplace he feels like he put together a really strong document that is manager will be pleased however when he is called into the managers office his manager is concerned and tells him that he has been unethical in his work what did todd do

Answers

Answer:

Todd has likely committed plagiarism by not giving citations.

Explanation:

In This question Todd was asked to write a report. And he has used internet resources in his research but from the words of his manager it is very likely that He has committed plagiarism in his report since it is about ethics.

The act of plagiarism is committed when one uses the work(ideas, words, speech, writing) of others without any form of citations to acknowledge the original owner of the work. Plagiarism is unethical and it is considered as fraud. It is a punishable offence since it involves passing off someone else's work as your own idea.

Answer:

He likely did not cite his research, committed plagiarism

describe how each command is used by matching the command to its purpose

Answers

Answer:

undo-cancels a previously completed action

cut-removes data from its original location and places it on the clipboard

redo- restores a previously canceled location

paste- places data in its final location

copy-duplicated data and places it on the clipboard

Explanation:

Getting started with Excel edg

emerging technology that is becoming popular among consumers

Answers

IoT. IoT is driving business changes by providing the data needed to improve marketing, increase sales, and decrease costs, the report found. ...
Artificial Intelligence (AI) ...
5G. ...
Serverless computing. ...
Blockchain. ...
Robotics. ...
Biometrics. ...
3D printing.

Instructions
Test if a number grade is an A (greater than or equal to 90). If so, print "Great!"
Hint: Grades may be decimals.
Sample Run
Enter a Number: 98.5
Sample Output
Great!

Answers

In python 3:

grade = float(input("Enter a Number: "))

if grade >= 90:

   print("Great!")

Following are the Program to check the input value:

Program Explanation:

Defining the header file.Defining a main method.Inside the method a float variable "num" is declared that inputs the value.After input the value a conditional statement is defined num value greater than equal to 90, if its true it will print the message "Great! ".

Program:

#include <iostream>//header file

using namespace std;

int main()//main method

{

   float num;//defining a variable

   cout<<"Enter a Number:";//print message

   cin>>num;//input value

   if(num>= 90)//defining if block that checks num value greater than equal to 90

   {

       cout<<"Great!";//print message

   }

   return 0;

}

Output:

Please find the attached file.

Learn more:

brainly.com/question/14267584

FIRST ACCURATE ANSWER GET BRAINLIEST THX FOLOW AND 5 STAR RATING When you use the internet to help you find information for a research project, what are you using?

Group of answer choices:

a. An off-line database

b. An online database

c. Data investigation

d. Website inspection

Answers

Answer:

B a online data base

Explanation:

When you use the internet to help you find information for a research project, you are using an online database. The correct option is b.

What is an online database?

A database that can be accessed online is one that is accessible over the Internet. An organization can keep important data accessible to staff members, as well as customers and suppliers, by using an online database.

An eCommerce website or customer relationship management software may be powered by an online database. Data modeling, effective data representation and storage, query languages, sensitive data protection and privacy, and distributed computing concerns like concurrent access and fault tolerance are only a few examples of the practical and formal aspects of database design.

Therefore, the correct option is b. An online database.

To learn more about online databases, refer to the link:

https://brainly.com/question/28964112

#SPJ2

Windows can't find the driver for your digital camera. Where is the best place to find the driver?
Call the local camera store.
The manufacturer's website.
The Window's store.
Search the Internet.

Answers

B. The manufacturing website will be the easiest way to find the driver.

Answer:

The manufactured website

Explanation:

2. Explain the importance of observing proper behavior in using social
networking sites.​

Answers

Answer:

Explanation:

An accompaniment to raw vegetables and sometime potato chips and crackers.

Answers

Dips – accompaniment to raw vegetables, and sometime potato chips and crackers. Any mixture of spreads can be used as dips. Appetizers are finger foods usually served prior to a meal, or in between mealtimes, and are also called hors d’oeuvres, antipasti, or starters, and may range from the very simple to the very complex, depending on the occasion and the time devoted to making them. They’re a common accompaniment to aperitifs, cocktails served prior to a meal.

At dinners, banquets and the like, appetizers may be served prior to a meal. This is especially common at weddings when it takes time for the wedding party and guests to get to a reception after the marriage has taken place. Appetizers may be served at long parties that occur after a regular mealtime. A mid-afternoon party where there is no intent to serve dinner, or an evening party that occurs after dinner may feature appetizers so that guests can have the opportunity to snack. . Many restaurants feature a range of appetizers that are ordered just prior to a meal as a first course.

Answer:

give me more points

Explanation:

salanghye ✌️✌️

What is a benefit of the Name Manager feature?
A) add, edit, filter names you have created
B) add, edit, filter predetermined names for cells
C) create a name from a selection
D) rename a worksheet or a workbook

ANSWER: A

Answers

Answer:Its A

Explanation: edge2020

The benefit of the Name Manager feature is to add, edit, and filter names you have created. The correct option is A.

What is the Name Manager feature?

The name manager feature is present in the ribbon present in the window of the tab. To open this, open click the formula tab. For instance, we sometimes utilize names rather than cell references when working with formulas in Excel.

The Name Manager allows us to add new references, update existing references, and delete references as well.

To interact with all declared names and table names in a worksheet, use the Name Manager dialog box. You could want to check for names with mistakes, confirm the reference and value of a name, see or update the descriptive comments, or figure out the scope, for instance.

Therefore, the correct option is A) add, edit, and filter the names you have created.

To learn more about the Name Manager feature, refer to the link:

https://brainly.com/question/27817373

#SPJ2

what do points do on brainly

Answers

Being marked brainliest and points make you rank up

Answer:

They rank you and allow you to answer and ask questions

Explanation:

answer all for brainliest
Which online note-taking tool allows students to store information on an extensive back-up system?What is one benefit of using a web clipping tool?The editing and formatting features of eNotes allow students to
their notes to help them process the information.What would eNotes be most helpful for?Tonya wants to keep her class schedule, assignments, and notes all in one place. Which online note-taking tool would be the best one to use?How can students use eNotes to edit their notes? Check all that apply.

They can undo text and redo it.
They can cut, copy, and paste text.
They can insert bullets and tables.
They can search using keywords.
They can evaluate their work.One advantage of using online note-taking tools is that they help students?

Answers

Answer:

d

Explanation:

Answer:

yea its D

Explanation:

got it right on edgy baby

WILL MARK BRAILIEST 1111

Answers

Answer:

Flowcharts

Explanation:

Answer:

flow charts

Explanation:

pls add me as bainliest

What are two terms for bringing media into a project in Gmetrix

Answers

Answer:

Import and Media Browser

Explanation:Can be found in 2.03 Importing with Media Browser

David has created a lot of styles and now his Quick Style Gallery contains styles he no longer uses.

How can he remove the unwanted styles?

Answers

Do you mind giving me more details to this question

step by step solution

Answer:

C) Right-click the style in the Quick Styles Gallery, and select the Remove from Quick Style Gallery option.

Explanation:

What are some ways you deal with stress at school or at home? How could you use those techniques in the workplace?

Answers

Some techniques for managing stress at home and at school that could help in the workplace include active breaks, proper rest, breathing exercises, and yoga.

What is stress?

Stress is a term that refers to the way in which an individual's brain interprets a situation or event that represents difficulty for her life.

One of the main causes of stress is the uncontrolled production and release of hormones that put the individual in an alert attitude that can trigger other symptoms such as:

High blood pressure.Increase in heart rate.Decreased blood sugar levels.

How to combat work stress?

To combat work stress and avoid these symptoms and health conditions, it is advisable to take work situations calmly and relaxed. Additionally, there are activities that can relieve pressure such as:

Practice yoga.Do breathing exercises.Do not take work home.Take active breaks.Rest properly at night.

Learn more about stress in: https://brainly.com/question/1178663

Answer:

take breaks,

Explanation:

What is the coordinate plane?

Answers

Answer:

The 3rd

Explanation:

The Coordinate plane consists of four quadrants and... its defined by the X and Y axis

C because you graph your coordinates with the x-axis and the y-axis

Rest Easy ADDITIONSON, On Wednesday October the 28 We lost a Friend, a Family member, a Loved one.Who Died in his sleep all the fun times we had all the bad times rest easy my friend

Answers

We lost the AMIGOS Beloved Chat RIP

Whats Your Fav Anime ( I Need Recommendations) :c

Answers

Answer:

aot, h x h, seven deadly sins, the promised neveland, haikyuu :)

Explanation:

The Disastrous Life of Saiki Kusou, Erased, Mob Psycho 100, Demon Slayer

Why do programmers use the Turtle Graphics Module in Python?

To assign a value to a variable
To draw on the screen or create images
To evaluate mathematical statements
To print strings and string literals

Answers

The Turtle Graphics Module in Python is used to draw on the screen or create images.

Answer:

To draw on the screen or to create images

Explanation:

I took the test and it was right

do you feel me?
take a look inside my brain
the people always different but it always feels the same
thats the real me
pop the champagne
the haters wanna hurt me and im laughin at the pain

Answers

stayin still eyes close let the wound just pass me by, pain pills nice clothes if i fall i think i'll fly touch me midas, make me part of your design. None to guide us I feel fear for the very last time

17. Describe bandwidth and give an example. (5pts)​

Answers

Answer:

a range of frequencies within a given band, in particular that used for transmitting a signal.

Explanation:

you only have a serton amount of bandwidth on your phone

They use trasminaron

Amun manages a database for a school library. If a library visitor wants to read the newest book that the library owns, what is the easiest way for Amun to find that book?

sort the data

go to the shelves and look for the newest book

filter the data

edit the data

if correct get brainliest

Answers

Answer:

letter a

Explanation:

Answer:

query the data

Explanation:

what is the passcode in rogue squadron for the car

Answers

Answer:

ccrof

Explanation:

Other Questions
A bag contains 120 marbles some are red and the rest are black there are 19 red marbles for every black marble how many red marbles are in the bag. what is the "y" for -22 = y - 9 After watching the interview with Jason Reynolds, answer the following question using the R.A.C.E. paragraph format.Do you agree with Jason Reynolds' position on the human journey? what is 1+1 guys i'm having trouble Which of the following is NOT an INTEGER?A.) 6B.) 03.) -3/44.) -25 what's the answer to the second box that has nothing written in it The rate StartFraction 165 ounces Over 11 boxes EndFraction describes the relationship between the number of boxes and the weight of the crackers in the boxes. What is the weight, in ounces, of one box? 11 ounces per box 12 ounces per box 15 ounces per box 16 ounces per box You're writing a family newsletter to let everyone know what's going on with your family members. Choose two family members and write 2-3 sentences in Spanish about each person. Describe what is happening in their lives now and/or what has happened in the recent past Are all laws and rules fair? Explain. How are barrier and hormonal methods of contraception similar?They both are less than 100% effective in preventing pregnancy.They both prevent pregnancy and STDs.They both alter a mans sperm production.They both alter a womens uterine lining. Please help me with this A program is written to compute the sum of the integers from 1 to 10. The programmer, well trained in reusability and maintainability, writes the program so that it computes the sum of the numbers from k to n. However, a team of security specialists scrutinizes the code. The team certifies that this program properly sets k to 1 and n to 10; therefore, the program is certified as being properly restricted in that it always operates on precisely the range 1 to 10. List different ways that this program can be sabotaged so that during execution it computes a different sum, for example, 3 to 20. find midpoint and length of line segment that has endpoints (3,5) and (9,-3) Can some one help with these thanks !!!!!!! Solve the equation by backtracking 7. What did citizens of Athens value most?Option 1. military strengthOption 2 the expansion of the empireOption 3 education and thinking.Option 4 control over other city-statesOther: Hey can someone help me out? Im having a ton of trouble. What do these images model? A. atoms B. compounds C. elements D. mixtures Which picture would be best to use on a yearbook page to illustrate Cesar Chavez'scontributions to society?Oa medalO a dollar billOa grapeO a march Which best describes the meaning of these sentences from paragraph one?"One smokes; another reads; a third checks entries in a pocket book; a fourth stares at the map of the line framed opposite; and thefifth-the terrible thing about the fifth is that she does nothing at all. She looks at life."es )))A)All five people seek to conceal their knowledge and emotions.B)Four of the five faces hide what they know about life, but the final facedoes notAll five of the faces have knowledge and maturity to guide them.D)Four of the five faces reveal what they know about life, while only the fifthconceals that knowledge.