I think it’s a
if it isn’t a then it’s d
Answer:
The following codes are:
int monthOfYear=11;
// integer type variable is initialized
long companyRevenue=5666777;
// long type variable is initialized
int firstClassTicketPrice=6000;
// integer type variable is initialized
long totalPopulation=1222333; //// long type variable is initialized
Explanation:
Here, we define integer type variable "monthOfYear" to 11.
Then, we define long type variable "companyRevenue" to 5666777.
Then, we define integer type variable "firstClassTicketPrice" to 6000.
Then, we define long type variable "totalPopulation" to 1222333.
Answer:
Explanation:
The following Python program uses a combination of dictionary, list, regex, and loops to accomplish what was requested. The function takes a file name as input, reads the file, and saves the individual words in a list. Then it loops through the list, adding each word into a dictionary with the number of times it appears. If the word is already in the dictionary it adds 1 to its count value. The program was tested with a file named great_expectations.txt and the output can be seen below.
import re
def wordCount(fileName):
file = open(fileName, 'r')
wordList = file.read().lower()
wordList = re.split('\s', wordList)
wordDict = {}
for word in wordList:
if word in wordDict:
wordDict[word] = wordDict.get(word) + 1
else:
wordDict[word] = 1
print(wordDict)
wordCount('great_expectations.txt')
The part of a graphic user interface (GUI) that allows a specific type of interaction with an end user is: D. widget.
<h3>What is a widget?</h3>
A widget is sometimes referred to as a gadget and it can be defined as a software application that is designed and developed as a part (element) of a graphic user interface (GUI) to display specific information or provide an end user with a specific way to interact with the computer's operating system (OS) or program.
<h3>The examples of a widget.</h3>
In Computer science, there are different types of widget and these include the following:
In conclusion, the part of a graphic user interface (GUI) that allows a specific type of interaction with an end user is a widget.
Read more on widget here: brainly.com/question/7498108