Ok so im going to list my question and then the work so far.

Here is the code so far:(THE PROBLEM WITH THE CODE IS THAT THE IM SUPPOSE TO USE FIND() TO REPEATEDLY CHANGE THE OCCURRENCE OF THE WORD "MASK" TO THE WORD "HAT" IN THE FILE BUT AM KIND OF LOST HAVE BEEN WORKING ON THIS FOR A WEEK AND A HALF) ALSO I CAN NOT use the replace method, count method, split method, range() function, or lists in your solution. HAVE BEEN TRYING TO FIND SUM WAY TO USE FIND() BUT AM COMING UP SHORT



CODE:


#Get input file name

fileOne = input("Enter the input file name :")

#Get output file name

fileTwo = input("Enter the output file name :")

'''Get a string that will be searched in the source file

to locate all occurrences of the string'''

targetString = input("Enter the target string :")

'''Get a string that will replace each occurrence of the target

string in the source file'''

replacementString = input("Enter the replacement string :")
files =input("Enter a file with the word 'mask':")
#Open the input file in read mode

f1 = open(fileOne,"r+")

#Read the content of input file

content =f1.read()

#Replace the target string with the replacement string
content =f1.find('mask')
print(files[0:content]+ "hat"+ files[content +content:len(files)])
#Open the output file in write mode

f1 = open(fileTwo,"w")

'''Write the content after all of the occurrences of the target

string have been found and replaced by the replacement string'''


f1.close()

Ok So Im Going To List My Question And Then The Work So Far.Here Is The Code So Far:(THE PROBLEM WITH
Ok So Im Going To List My Question And Then The Work So Far.Here Is The Code So Far:(THE PROBLEM WITH

Answers

Answer 1

Answer:

qwerty

Explanation:

qwerty


Related Questions

kahoot code: 08408519

Answers

Answer:

yayy!!

Explanation:

ok

Answer:

y am i always late tho

Explanation:

Question #2
Multiple Choice
What is the index of 7 in this list?
[5, 6, 10, 7, 3, 2.5]

A ) 3
B ) 2
C ) 4
D ) 7

Answers

Answer:

C.

Explanation:

mukhang

letter

C.

pambihira

ka

naman

bat

hindi

ka

magtanong

sa

mga

nakakatanda

mong

kapatid

Answer:

The answer to your question is C. Have a wonderful safe day. <3 <3 <3

Explanation:

What did networks of the 1960s use to connect computers?

telephone lines

wireless technology

television signals

telegraph cables

Answers

Answer:

Explanation:

Telephone lines

Which two statements are true about the impact of emerging technology on society?

Emerging technologies have only provided benefits to developed countries.

Wireless technologies have not reached the point where they can provide internet to remote areas.

Satellite communication has evolved to provide communication to remote parts of the world.

Most technologies have reached their saturation point and are not seeing further evolution.

Emerging technologies, like any other technology, can be misused.

Answers

Answer: Satellite communication has evolved to provide communication to remote parts of the world. And Emerging technologies, like any other technology, can be misused. would be correct.

Explanation: According to Britannica, "in telecommunications, the use of artificial satellites to provide communication links between various points on Earth. Satellite communications play a vital role in the global telecommunications system. Approximately 2,000 artificial satellites orbiting Earth relay analog and digital signals carrying voice, video, and data to and from one or many locations worldwide." So satellite communications can be [pretty much used anywhere if there is a receiver on the ground. As for technology being misused, anything that is relatively new can be abused or damaged with malicious intent.

Hope this helped please mark it as the brainliest!

Answer:

The correct answers are:

Satellite communication has evolved to provide communication to remote parts of the world.

Emerging technologies, like any other technology, can be misused.

Explanation:

I got it right on the Edmentum test.

Define a recursive function named merge chars, it is passed two str arguments, in which all the characters appear in alphabetic order; it returns a str that contains all the characters in its argument strings, also appearing in alphabetic order.

Answers

Answer:

def merge_chars(str1, str2):

    if not str1 and not str2:

         return ''

    if str1 and (not str2 or str1[0] <= str2[0]):

         return str1[0] + merge_chars(str1[1:], str2)

    else:

         return str2[0] + merge_chars(str1, str2[1:])

Note: It's written in Python3

Explanation:

This line defines the function

def merge_chars(str1, str2):

This checks for empty strings. If yes, it return an empty string

    if not str1 and not str2:

         return ''

The following merge and sorts both strings, recursively

This checks if only one of the strings is not empty

    if str1 and (not str2 or str1[0] <= str2[0]):

         return str1[0] + merge_chars(str1[1:], str2)

This checks if both strings are not empty

    else:

         return str2[0] + merge_chars(str1, str2[1:])

Explain the importance of understanding plagiarism, copyright, and fair use during a time when some much of your schoolwork is done in the virtual environment.

Answers

Answer:

Firstly, it is unethical because it is a form of theft. By taking the ideas and words of others and pretending they are your own, you are stealing someone else's intellectual property. Secondly, it is unethical because the plagiariser subsequently benefits from this theft.

Explanation:

I hope this helps! Have a good day.

Define a function perimeter(base, height) that returns the perimeter of a rectangle with side lengths base and height

Answers

Answer:

int perimeter(base,height)

{

int perimeter_of_rectangle;

perimeter_of_rectangle= 2(base+height);

return (perimeter_of_rectangle);

}

Explanation:

Lets name the function perimeter. It has two parameters base and height.

The function will have return type. In this case I am taking int but it can be float as well.

The function would be:

int perimeter(base,height)

{

int perimeter_of_rectangle;

perimeter_of_rectangle= 2(base+height);

return (perimeter_of_rectangle);

}

Which step is common to both creating a new document and saving a document?

Answers

Answer:

clicking the File tab. clicking the New tab. clicking the Save As tab.

Explanation:

How many passes will it take to find the 20 in this list? (python)

10, 12, 14, 16, 18, 19, 20

3

1

2

4

Answers

Answer:

1

Explanation:

What do you mean by a pass? A pass through each number in the list?

for x in numLst:

    if x == 20:

         return True

This would run through the list once, as you're just checking if each element is 20 in this loop.

Answer:

2

Explanation:

on edge right

what is a decryption key?​

Answers

Answer:

A decryption key is a digital information used to recover the plain text from the corresponding ciphertext by decryption.

Alexis has six different pieces of jewelry to show and describe

Answers

Answer:

The answer to this question is given below in the explanation section

Explanation:

This question is not complete and the completed question is given below:

Alexis has six different pieces of jewelry to show and describe on a web page. Two are gold, and the rest are silver. Based on the principles of proximity, how would she display these pieces on her page?

She would separate each and provide some distance between them She would mix the pieces and keep them all close together She would make two columns of jewelry with an equal number of  pieces in each She would group the gold together, and the silver together

Based on the principle of proximity, the correct answer to this question is:

She would group the gold together, and the silver together.

As you know that the principle of proximity states that things that are close together appear to be more related than things that are spaced farther apart. So based on this principle she needs to make two groups gold and silver. So, based on the proximity principle, she would group the gold together, and the silver together.  

Which of the following is not a benefit of shaping data with the Power Query Editor?
A.)Data can be merged from multiple sources.
B.)Shaped data can be added to a data model.
C.)Shaped data does not retain links to external file sources.

Answers

Answer:

A

Explanation:

I am not 100% sure but without the shaping data, data can still be merged from multiple sources.

The one that is not a benefit of shaping data with the Power Query Editor is that Shaped data does not retain links to external file sources.

Shaping data refers to transforming the data through the act of renaming columns or tables, changing text to numbers, removing rows etc.

Shape data often connect to different data sources and then combine those data sources in creating a data model to use in reports.

Conclusively, Data shaping focuses on building hierarchical relationships between two or more logical building blocks in a query.

Learn more from

https://brainly.com/question/19509866

Explain the factors affecting computer performance

Answers

Answer:

They include: the speed of the CPU, the space on the hard disk, the size of the RAM, the type of the graphics card, the speed of the hard disk,, if the computer is multitasking, the defragmenting files

Question 3: Consider the multiplexer to the right. With F(x..Z) as output
function.
Fill in the truth table of F.
1 -
0
N
F
1
mux
2
0 -
3
X Y
X Yz
F
0 0 0 0
0 0 1 0
0 1
011
1100
1 0 1
1 1 0
1 1 1
HA
I

Answers

Answer:

1-

Explanation:

Create a column vector named y that starts at 123 and
end at -323, with each element separated by 2 (odd numbers)
using : and the transpose operator.​

Answers

Hxfjxkfxhgcvvccchbhjkkn by j

Answer:

jiskkxjxizkxjxjksz by y

One way to generalize a function is to replace a variable with a value. Select one: True False

Answers

Answer:

false

Explanation:

false

The statement that one way to generalize a function is to replace a variable with a value is false.

A function simply means a block of organized, reusable code which is used in performing related action.

It should be noted that functions allow the programmer to generalize and encapsulate sections of code. A way to generalize a function is not to replace a variable with a value. Therefore, the information given is false.

Read related link on:

https://brainly.com/question/19634631

If num1 and num2 are the same, print equal.

Answers

num1 = some value

num2 = some value

if num1 == num2:

   print("equal")

You just need to provide the values for the numbers. I hope this helps!

What are the main techniques used to help manage test anxiety? Check all that apply.

negative thinking
positive self-talk
relaxation
visualization
expect the worst

Answers

Answer:

Relaxation and positive self-talk are the best way to manage test anxiety. Relaxation makes our body relaxed and tension free and positive thinking helps to control and take responsibility of your own life

The test anxiety can be dealt with the following of techniques such as positive self talk and relaxation.

What is test anxiety?

The test creates a pressure for the performance and thereby combines the emotional reaction with the physical symptoms. The reaction before the test due to test pressure is termed as test anxiety.

The anxiety includes symptoms such as excessive sweating, stomach ache, rapid heartbeat, shortness of breath and so on.

The techniques such as relaxation, positive self talk helps in the dealing with the test anxiety. Thus, options B and C are correct.

Learn more about test anxiety, here:

https://brainly.com/question/16529562

#SPJ2

One friend claims that a dual-core system runs at twice the speed as a single-core system; another friend disagrees by saying that it runs twice as many programs at the same time; a third friend says it runs twice as much data at the same time. Explain who is correct and why?

Answers

Answer:

the first friend

Explanation:

It is important to remember that a core is the brain of the CPU (central processing unit), which means one who has a dual-core is having "a dual brain" to process information faster.

Consider also, IT experts often acknowledge that in terms of speed of execution, it is proven that, "dual-core systems" are faster (even twice faster) than a "single-core system". The other friends were wrong because they disagreed with a widely accepted fact that dual-core is faster than single-core; and of course, we know that without them being faster they can't run twice the applications and twice the data.

Therefore, we can make the conclusion that the first friend's response is correct.

As you enter code in Visual Studio, the _____ feature provides drop-down lists of coding options that you can enter by selecting and pressing the Tab key.

Answers

Answer:

IntelliSense

Explanation:

Microsoft Visual Studio can be regarded as a an integrated development environment, it is utilized in the development of computer programs. It can be reffered to as a code editor redefined and used in the development and debugging of modern webs, mobile apps development and others. It is developed by Microsoft . Some of the features is code editor that supports syntax highlighting as well as code completion through the utilization of IntelliSense for functions, IntelliSense which can be regarded as a term to denote code editing features which contains quick info, code completion as well as member lists. It should be noted that as As you enter code in Visual Studio, the IntelliSense feature provides drop-down lists of coding options that you can enter by selecting and pressing the Tab key.

Hello again, just need help debugging-I honestly have no idea how the "isSpace" etc methods work and I've tried various syntaxes (string name, Character., etc.) to no avail. Also getting errors for the c= sections for converting between char, string, and boolean which I understand, just dont know how to fix. I'm aware I could condense my initial variables, I just like them laid out. The code aims to count lowercase vowels, all consonants, spaces, and punctuation. Anything else will get thrown into a misc count.


import java.util.Scanner;

public class MyClass {

public static void main(String args[]) {
Scanner s=new Scanner(System.in);
System.out.println("input the string");
String as=s.nextLine();

int cons=0;

int a=0;

int e=0;

int i=0;

int o=0;

int u=0;

int space=0;

int punc=0;

char c;

int misc=0;

for(int k=0;k(LESS THAN)as.length();k++){
if(as.isSpace(as.charAt(i))){
space++;
}

else if(as.isConsonant(as.charAt(i))){

cons++;

}

else if(as.isPunctuation(as.charAt(i))){

punc++;

}

else if(as.isVowel(as.charAt(i))){

c=as.charAt(i);

if (c="a"){

a++;

}

else if(c="i"){

i++;

}

else if(c="e"){

e++;

}

else if(c="o"){

o++;

}

else if(c="u"){

u++;

}

else{

misc++;

}

}

else{

misc++;

}

}

System.out.println(a+" a's");

System.out.println(e+" e's");

System.out.println(i+" i's");

System.out.println(o+" o's");

System.out.println(u+" u's");

System.out.println(space+" spaces");

System.out.println(punc+" punctuations");

System.out.println(cons+" consonants");

System.out.println(misc+" misc. (uppercase vowels, etc.");


}

}

Answers

import java.util.Scanner;

public class JavaApplication81 {

   

   public static void main(String[] args) {

       Scanner s = new Scanner(System.in);

       System.out.println("Input the string");

       String as = s.nextLine();

       int cons = 0;

       int a = 0;

       int e = 0;

       int i = 0;

       int o = 0;

       int u = 0;

       int space = 0;

       int punc = 0;

       char c;

       int misc = 0;

       String punctuation = ".!,?";

       String consonants = "bcdfghjklmnpqrstvwxyz";

       for (int k = 0; k < as.length(); k++){

           c = as.charAt(k);

       if (Character.isWhitespace(c)){

           space ++;

       }

       else if (punctuation.indexOf(c) != -1){

           punc++;

       }

       else if (consonants.indexOf(c) != -1){

           cons++;

       }

       else if (c == 'a'){

           a++;

       }

       else if(c == 'e'){

           e++;

       }

       else if (c == 'i'){

           i++;

       }

       else if (c == 'o'){

           o++;

       }

       else if (c == 'u'){

           u++;

       }

       else{

           misc++;

       }

       

   }

       System.out.println(a+" a's");

       System.out.println(e+" e's");

       System.out.println(i+" i's");

       System.out.println(o+" o's");

       System.out.println(u+" u's");

       System.out.println(space+" spaces");

   

       System.out.println(punc+" punctuations");

       System.out.println(cons+" consonants");

       System.out.println(misc+" misc. (uppercase vowels, etc.");

   }

   

}

This is one example of how it could be done.

explain why it is wise to remember your social security number

Answers

If you know your number, you may never need your card again. It is the number, not the card, that is most important. Your Social Security number is nine digits, that is only two digits more than a phone number. If you don't know it by heart, now is a great time to commit it to memoryy

It is vital to remember your social security number as one can work or go places cardless without always carrying the card around if you are able to memorize the number.

What is a Social Security number?

A Social Security number is known to be the number given to citizens of a country. It is vital because one need it if they want to get a job.

The use of Social Security is one that can give us some benefits and one can use it to get some government services. It is good that one should keep their Social Security card in the right place.

Learn more about social security number from

https://brainly.com/question/2149712

Which company is producing laptops nowadays? *
Cute
Aspire
Dell
Innovative

Answers

Answer:

dell

thanks for points

परीक्षा केन्द्र :...सार
........ ....
बनागरीमा) : सापडला वियापा
IT (IN BLOCK LETTER): SAV DEEP KUMAR ek
on No.) 764556
)
. 35
ना (देवनागरीमा) :.....र...तोफिक
परीक्षा दिने विषयहरू
जन्म मिति
वि.सं.
करोएपछि......शी
कक्षा ११
ype
R-REGULAR
P= PARTIAL
Exam
pjects
Sub.Code No.
S.N.
Sub
1.com Eng
Accountan
2​

Answers

Answer:

idont know

Explanation:

anong

klaseng tanong

ito

ikaw

lang

siguro

makasagut

rito

What's up with this new update?

Ok, so I love this Brainly update, but my only issue is the message system. I will think I have some notification, but it says a message, so I am like "Great, what did I do this time", but there will be no new messages. So does anybody know what it's all about or is it an error?

Also I may be getting a new computer for my birthday, but I don't know which one I want to get, are there any reccomendations? I plan to use Source Film Maker, hopefully VR, and Steam Games

Answers

Answer:

so do i the notifications are out of control i try to ignore them

Explanation:

and yea so it seems you like to do things such as VR? if so i suggest one from the Oculus brand i dont use them but i heard they were good!

~Brianna/edgumacation

Answer:

I figured it out

Explanation:

To explain the notification thing brainly says you have messages when its notifications related to comments because comments are usually made up of people talking to each other, so it just comes through as a message notification.

Allows users to manually enter functions or formulas
5 points
Column
Row
Cell reference
Formula bar
Location of a cell (for example, A3)
5 points
Workbook
Spreadsheet
Cell reference
Spreadsheet title
Labeled with numbers within a spreadsheet; intersects with columns
5 points
Merge
Help menu
Column
Row
Individual rectangle within a spreadsheet
5 points
Cell
Row
Column
Formula bar
Displays the name of a spreadsheet
5 points
Spreadsheet title
Formula bar
Workbook
Column
A document that arranges data in a series of columns and rows
5 points
Workbook
Help menu
Cell reference
Spreadsheet
Refers to a group of cells within a spreadsheet
5 points
Cell range
Column
Cell
Workbook
Combining two or more cells together to form one larger cell
5 points
Spreadsheet title
Cell range
Merge
Workbook
Provides assistance to users regarding how to use a spreadsheet program
5 points
Spreadsheet
Help menu
Formula bar
Cell reference
Labeled with letters within a spreadsheet; intersects with rows
5 points
Column
Cell
Row
Cell range

Answers

sorry no one can understand what you are asking you should ask a simpler question where people would like to answer

what are the steps involved in adding headers and footers to a Microsoft word document. ​

Answers

hey!!

your ans is here...

steps :

1.Click on insert tab.

2.Click on the header button or footer button.

suppose u have click on header..

3. A list of various header styles appears. Now u can select the required style.

Thanks

Hope it helps u.. mark as brainlist..

cell d1 contains the value 7.877 you want cell d1 to display this value as 7.9 how can you accomplish

Answers

Answer:

You round?

Explanation:

The round function in excel can be used to change the value of 7.877 to 7.9 by writing the following code in cell d1 ; =round(7.877, 1)

The round function is used in excel to approximate numbers to a certain number of decimal places.

The round function takes in two arguments ; the number to be rounded and the number of decimal places.

To obtain a value of 7.9 ; round 7.877 to 1 decimal place., the value after the first decimal is above 5 ; it is rounded to 1 and added to the first decimal value.

Therefore, the round function could be used to accomplish the above task.

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

The photo shows a group of girls reacting to comments they have read about a classmate on a social media site.
One girl stands by herself, looking sad. Four girls stand apart from her, looking at her and pointing. Two girls cover their mouths to hide a laugh. How might the girls react differently to best prevent cyberbullying?

Answers

Answer:

no

Explanation:

beacuse

In which of the following scenarios would you choose to embed versus import data?
A.)You do not want to save the original data sources.
B.)You want to maintain connections with external files
C.)You want to reduce file size

Answers

Answer:

B.)You want to maintain connections with external files

Explanation:

Other Questions
What is 9x10= xxxxxxxx 3(x 2) + 4x = 10(x + 1) will give brainliest Which letter has rotational symmetry?A. IB. JC. KD. L What formal requirements does Article III impose on federal judges?A natural born citizenAttaining 35 years oldMust be religiousNone Please answer this if you wanna try to cheer me upI need it a lot and I'd be really grateful How much do most pabies typically weigh at birth?07 to 9 lbs5 to 7 lbs6 to 8 lbs4 to 6 lbs President Franklin Delano Roosevelt supported anti-lynching laws and ordered the Justice Department to enforce anti-peonage laws because ____________. Which type of government does John Locke seem to recommend? Why do you say that? What are Angles, Lines, and Transversals? 4 out of the 20 students surveyed said candy was their favorite snack if there were 100 6th graders how many would choose candy Please help with 5 :( Ill mark u! I REALLY NEED HELP WITH THIS 4. That to secure these rights, Government are instituted among MenThis idea belongs to: PLZ give me examples of each of these types of appealsTypes of AppealsMythos: EX: Pathos: EX:Logos: EX:Ethos: EX: Learning Task No. 3:Use the diagram showing the relationship among current, resistance and voltage. Explain the relationship between current and voltage; voltage and resistance; current and resistance. Write your answer below HELPPPPPP #6 ASAPPPPPPPPP PLEASEEEE If a person runs a distance of 0.7 km in 3 min, what is his average speed in kilometres/hour Matteo spends a total of 38 min exercising. He walks for 6 min to warm up and then runs at a constant rate of 8 min per mile for the rest of the time. Matteo says that he ran 4.75 mi. Is he correct? Explain your reasoning. Find the zeros of the function.Enter the solutions from least to greatest.f (x)=(x -3)(2x -8)f(x)=(x3)(2x8) PLEASE HELPPPP 50 POINTTTSSSS