Answer:
Why are you asking someone to create a program
Explanation:
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.");
}
}
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.
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
Answer:
B.)You want to maintain connections with external files
Explanation:
Explain the factors affecting computer performance
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
what is a decryption key?
Answer:
A decryption key is a digital information used to recover the plain text from the corresponding ciphertext by decryption.
Which step is common to both creating a new document and saving a document?
Answer:
clicking the File tab. clicking the New tab. clicking the Save As tab.
Explanation:
explain why it is wise to remember your social security number
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
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.
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.
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.
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.
One way to generalize a function is to replace a variable with a value. Select one: True False
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
cell d1 contains the value 7.877 you want cell d1 to display this value as 7.9 how can you accomplish
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
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
Define a function perimeter(base, height) that returns the perimeter of a rectangle with side lengths base and height
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 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.
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
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
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
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
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:
kahoot code: 08408519
Answer:
yayy!!
Explanation:
ok
Answer:
y am i always late tho
Explanation:
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?
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.
Which company is producing laptops nowadays? *
Cute
Aspire
Dell
Innovative
Answer:
dell
thanks for points
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.
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:])
what are the steps involved in adding headers and footers to a Microsoft word document.
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..परीक्षा केन्द्र :...सार
........ ....
बनागरीमा) : सापडला वियापा
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
Answer:
idont know
Explanation:
anong
klaseng tanong
ito
ikaw
lang
siguro
makasagut
rito
What did networks of the 1960s use to connect computers?
telephone lines
wireless technology
television signals
telegraph cables
Answer:
Explanation:
Telephone lines
Alexis has six different pieces of jewelry to show and describe
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 togetherBased 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.
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
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.
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.
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.
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
Answer:
1-
Explanation:
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?
Answer:
no
Explanation:
beacuse
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.
Answer:
jiskkxjxizkxjxjksz by y
If num1 and num2 are the same, print equal.
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!
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
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