Guess The Song:
She don't like her body, left the doctor with a new shape
Blowing up my phone 'cause she just see me with my new bae
Heart breaker, ladies love me like I'm Cool J

Answers

Answer 1

Answer:pop out

Explanation:


Related Questions

What should you consider when looking at houses to buy? A. Location B. Size and condition of the yard C. Size, features, and condition of the house D. All of the above MAKE YOU BRAINELEST

Answers

Answer:

A

Explanation:   Would you like to buy a house in the desert

Answer:

The answer to your question is D. All of the above

Select the correct answer. Which number system consists of digits 0 to 9 and letters A to F? octal binary hexadecimal decimal

Answers

Answer:

hexadecimal

represents a radix of 16

Sam is developing a software program in Python and has a question about how to implement a particular feature.
Which use of a resource is most likely to provide Sam with the best results?
joining a Python developer forum and posting a question to the forum to solicit feedback
joining a Python developer forum and following links to technical news sites
reviewing an Introduction to Computer Science textbook
reviewing the computer user manual

Answers

Answer:

The correct answer is:

"joining a Python developer forum and posting a question to the forum to solicit feedback"

Explanation:

Learning a new skill involves a lot of research and study especially learning a new programming language.

The syntax and commands have to be understood first.

Now if Sam has to implement a particular feature, the easiest and less time-consuming way is that he post his query on a Python language forum as there might be better and expert programmer that might help

Hence,

The correct answer is:

"joining a Python developer forum and posting a question to the forum to solicit feedback"

Answer:

D

Explanation:

reviewing the computer user manual

Who is least likely to be treated with somatropin?
A 3-year-old cow on a dairy farm
A 4-year-old girl with an XO genetic genotype
A 44-year-old boy with chronic renal failure and gronih deficiency
A 10-year-old boy with polydipsia and polyuria​

Answers

A 10-year-old boy with polydipsia and polyuria​ would likely not be treated with somatropin.

This is because somatropin is often used for growth issues and even short bowel syndrome, but from what I could find, nothing about polydipsia or polyuria​.

A 3-year-old cow on a dairy farm could need somatropin, specifically Bovine Somatotropin (bST) to increase milk production or fix growth issues

A 4-year-old girl with an XO genetic genotype would get somatropin because it is used to treat Turner syndrome (Same as XO genetic genotype)

A 44-year-old boy with chronic renal failure and growth deficiency would get somatropin because it is used to treat growth issues even in adults and chronic renal failure

What's one example of action could you take on the Internet that would be both unethical and illegal?

Answers

Answer:

bullying

Explanation:

bullying affects a person mentally via the technological medium which can even result in future physical harm, henceforth it is unethical

Bullying is  one example of action could you take on the Internet that would be both unethical and illegal.

What is Bullying?

Bullying is a type of hostile behavior in which one person purposefully and repeatedly causes harm or discomfort to another. Bullying can occur through verbal abuse, physical aggression, or more covert tactics.

The victim of bullying generally struggles to defend themselves and does nothing to "cause" the bullying.

Cyberbullying is the verbal threatening or harassing behavior carried out on electronic platforms such text messages, social media, email, and cell phones.

Therefore, Bullying is  one example of action could you take on the Internet that would be both unethical and illegal.

To learn more about Bullying, refer to the link:

https://brainly.com/question/10566405

#SPJ3

In HTML, what is an element?
O The text browser displays when a user points the mouse pointer to it
O The tag that tells the web browser what the source of a file is
O The combination of a start and end tag, not including the tagged content
O The combination of a start and end tag, together with the tagged content

Answers

Answer:

The right answer is Option D: The combination of a start and end tag, together with the tagged content

Explanation:

HTML stands for hypertext markup language. It is one of the most commonly used languages on the internet.

Element:

An element in HTML consists of a start tag and end tag, and contains some content between the two tags.

i.e.

<tag> Content </tag>

Hence,

The right answer is Option D: The combination of a start and end tag, together with the tagged content

Answer:

The right answer is Option D: The combination of a start and end tag, together with the tagged content

Explanation:

Which of the following would a dialogue editor most likely do if an actor makes a lip smacking sound during a dialogue sequence?

A)Use an ADR

B)Review raw footage to layer over the dialogue

C)Use voice over narration

D)Remove it and replace it with another sound

Answers

Answer:

c

Explanation:

A web page that allows interaction from the user​

Answers

Answer:

Its A Dynamic Web Page

Explanation:

Objective: Write a program that will read and parse data from a file, then make use of lists to solve a problem.
Problem: Using python, write a program that will compute the maximum possible profit for a stock trade using historical data on a selection of companies. We would like to find the maximum possible profit that we could have gained, if we had made an ideal investment (if we ever finish that time machine). We must determine the largest increase in value from the purchase date to the sell date, using historical information. We will use the daily low price to purchase and the daily high price to sell a stock. For this assignment, we will use actual freelyavailable stock data stored in .CSV (comma separated values) format from Yahoo finance. A significant part of the exercise is learning to read and parse data from files and to format output.
1. Request the name for the input data file to be used to determine the results. You will have to run your program on all of the data sets to generate the required results. If the program does not exist, print a warning message and allow the user to try again.
2. Read in all the data from the requested file and parse the data; extracting the useful bits into one or more lists.
3. Use the data to determine the largest gain possible in a stock price by comparing Low values as the purchase price and High values as the sale price.
4. Report for each stock symbol (AAPL, AMZN, GOOG, MSFT, and TSLA) the purchase and sale days, the purchase and sale prices, profit per share, and the ratio of the change in value. Enter these results as submission comments in Blackboard.
5. Continue to request file names until the user enters a blank name (empty string), then exit the program.
6. Use good functional style and suitable variable names.
7. In the submission comment, answer the question: If you could travel back in time and invest in one of the five stocks listed, which stock would you pick?
Note: Assume that you must keep stocks for at least one day, no buying and selling on the same day. The data files contain more data than is needed, be sure to use the correct values. Be sure to move the data files into the same folder as your code so that your program can find the data files.
Example Output and Results: Please enter the data file name: BLARG.csv
Error Reading data ...
The file does not exist. Please check the name and try again.
Please enter the data file name: GOOG.csv
Reading data ...
****************************************
The maximum profit is 1045.88 per share
Buy on 2015-01-12 at a price of 486.23
Sell on 2020-02-19 at a price of 1532.11
Change in value ratio: 3.151

Answers

Answer:

import csv

def stock_prof():

   csvfile = input("Enter absolute path to file name")

   while csvfile:

       file = open(csvfile, 'r')

       data = csv.DictReader(file)

       profit_list = [row['High'] - row['Low'] for row in data]

       print(f"The maximum profit is: {max(profit_list)}")

       for row in data:

           print(f"Buy on {row['Data']} at the price of {row['Low']}")

           print(f"Sell on {row['Data']} at the price of {row['High']}")

           print(f"Change in value ratio: {row['High']/row['Low']}")

       csvfile = input("Enter filename: ")

stock_prof()

Explanation:

Assuming the CSV file is in the same directory as the python script, the user inputs the file name and uses the CSV DictReader method to read the file as an ordered dictionary, then the maximum profit is printed as well as the date to buy and sell and the change in value ratio.

Write code which takes a user input of a String and an integer. The code should print each letter of the String the number of times the user inputted in reverse order. I believe it's supposed to use nested loops, but I can only get it to repeat the whole word backwards x times.

ex.
Input a String:
code
Input an integer:
3
eeedddoooccc

Answers

import java.util.*;

public class myClass {

public static void main(String args[]) {

Scanner scan = new Scanner(System.in);

System.out.print("Input a String: ");

String str = scan.nextLine();

System.out.print("Input an integer: ");

int num = scan.nextInt();

for(int i=str.length()-1; i>=0; i--) {

for(int j=0; j<num; j++) {

System.out.print(str.charAt(i));

}

}

}

}

In Object layer, if we will create more Objects, then design will be more efficient and scalable because

Answers

Answer:

More developers can work concurrently.

Explanation:

Given that having a lesser object in program designing can make the process cumbersome. The idea of having more objects or breaking down application functionalities into various objects in a virtual workforce tool like Blue Prism, UiPath RPA, Pega Platform, etc can only increase the efficiency.

Hence, In the Object layer, if we will create more Objects, then the design will be more efficient and scalable because "More developers can work concurrently."


Connie needs to use the data consolidation tool in Excel 2016. Where can she find this capability?

Answers

The answer is D

Explanation:

I just took the test and got 100%

Name three technologies and what their used for before the creation of computers (first to answer correctly will get branlies

Answers

Morse, to send information quicker during a war

Telegram, to send news across the country

And possibly radio?

IN C++Write a recursive method insertLast(const ItemType& anEntry) to insert anEntry to the end of the Linked List.We can determine how many digits a positive integer has by repeatedly dividing by 10 (without keeping the remainder) until the number is less than 10, consisting of only 1 digit. We add 1 to this value for each time we divided by 10. Write a recursive function numOfDigits(int n) to return the number of digits of an integer n.

Answers

Answer:

#include <iostream>

#include <cstdlib>

int numOfDigits(int n) {

   if (std::abs(n) <= 9) return 1;

   return 1 + numOfDigits(n / 10);

}

int main()

{

   int a[] = { 0, 1, -24, 3456, 12345 };

   for (int n : a)  

       std::cout << n << " has " << numOfDigits(n) << " digits" << std::endl;

}

Explanation:

This is the answer to your second question.

The first question requires some clarification on how the linked list is defined.

2) - How many integers between 1 and 500 inclusive are divisible by either 2, 3, or 5?

Answers

366 numbers between 1 and 500 are divisible by 2, 3, or 5.

We can check this with the following code:

Consider the following class which is used to represent a polygon consisting of an arbitrary number of (x, y) points:
class Polygon :
def __init__(self) :
self._x_points = []
self._y_points = []

Answers

Answer:

The init method of the Polygon class defines two attributes 'x' and 'y' which are both lists. To add points to the lists x and y, define the add_point method;

def add_point(self, x, y) :

   self._x_points.append(x)

   self._y_points.append(y)

Explanation:

A class is a blueprint of a data structure. It contains the attributes and methods of the data structure type. Attributes are features of a data structure defined as variables that can be either a class attribute or an attribute of the instance of the class object. A method is just a function defined in a class.

The add_point method in the polygon class accepts two parameters and appends the values to the x and y lists defined in the init method.

Which of the following trims would be used at the beginning of a scene?
A)Utilized sound
B)Post trim
C)Tail trim
D)Head trim

Answers

Answer: a i think

Explanation:

1. Describe the general characteristics of a program that would exhibit very high amounts of temporal locality but very little spatial locality with regard to data accesses, and give an illustrative example.2. Describe the general characteristics of a program that would exhibit very little temporal and spatial locality with regards to data accesses.3. Describe the general characteristics of a program that would exhibit very little temporal locality but very high amounts of spatial locality with regards to data accesses.

Answers

Answer:

A program with high temporal locality with regards to data access is the tight or continuous use of a loop and a memory in chunks, while low temporal locality is little or no reuse of loop and memory. The high amount of spatial locality is the little or no reuse of branches in data access, while low spatial locality is the high reuse of branches in the code.

Explanation:

Computer program requires for a written source code to retrieve and save data to memory. A high temporal locality uses loops to continuously access memory. For speed, all the read instructions are done and the data is cached in an iterable data structure.

Spatial locality is the degree of the use of branches in a code. if more branches are used in the program, then the program is said to have low spatial locality, if little or no branches are used, then the code has high spatial locality.

Why does the IPv6 format use letters and numbers?

a
The IP address is numerical and is linked to the domain name, which is text-based.
b
It is like a street address with a number and name combination for each location
c
It is based on hexadecimal, which uses numbers 0-9 and letters A-F
d
When the IP address has to be manually entered, it can be keyed in more easily

Answers

Answer:

c is the response hope it helps

Guess The Song
Trade my 4x4 for a G63, ain't no more free Lil Steve
I gave 'em chance and chance and chance again, I even done told them please

Answers

I think is C tbh sorry if that’s wrong my fault

It is to be   noted thatthe title of the above song is " The Bigger Picture" by Lil B.

What  is the  central idea of "The Bigger Picture" by Lil B?

The core theme explored in the song "The Bigger Picture" by Lil B is the existence of societal injustices and systemic biases that go beyond isolated events or individuals.

The song highlights the importance of finding comprehensive solutions, acknowledging that these issues have endured for generations and demand more than just activism or online movements.

Lil B shares personal experiences with unjust treatment and encourages listeners to grasp the broader perspective, striving for substantial transformations in society.

Learn more about songs at:

https://brainly.com/question/27263334

#SPJ6

Help it don’t let me click what do I do

Answers

Answer: Try resetting you device, or add a mouse to it.

Explanation:

4.3 mini programs AP computer science

Answers

1.

name = input("Enter your name: ")

num1 = int(input("Hello "+name+ ", enter an integer: "))

num2 = int(input(name+", enter another integer: "))

try:

   if num1 % num2 == 0:

       print("The first number is divisible by the second number")

   else:

       print("The first number is not divisible by the second number")

except ZeroDivisionError:

   print("The first number is not divisible by the second number")

try:

   if num2 % num1 == 0:

       print("The second number is divisible by the first number")

   else:

       print("The second number is not divisible by the first number")

except ZeroDivisionError:

   print("The second number is not divisible by the first number")

2.

import random, math

num1 = float(input("Enter a small decimal number: "))

num2 = float(input("Enter a large decimal number: "))

r = round(random.uniform(num1, num2), 2)

print("The volume of a sphere with radius " + str(r) + " is " + str(round(((4 / 3) * math.pi * (r ** 3)), 2)))

I hope this helps!

Which of the following BEST describes personal responsibility?
1.Provides the basis for your code of ethics
2.Obeying laws that regulate how computers are used
3.Rules that support your personal values
4.How you act even if no one is watching

Answers

Answer:

3.Rules that support your personal values

Explanation:

Which is the instance variable in the given code?

public class Person{

public intpid;

private double salary;

public Person (intpersonID){
pid = personID;
}

public void setSalary(double empSal){
salary = empSal;
}

public void printDetails(){
System.out.println("id : " + pid );
System.out.println("salary :" + salary);
}

public static void main(String args[]){
Person P = new Person("P1");
P.setSalary(100);
P.printDetails();
}
}


A. public intpid;
B. private double salary;
C. intpersonID
D. double empSal
E. Person P = new Person("P1");

Answers

Answer:

Person P is a new instance of Persons class

-- located in the main class

Guess The Song:
What Popping Brand New Whip Just Hopped In, I Got options

Answers

WHATS POPPIN

Song by Jack Harlow

Which of the following can help you get pre-approved for a loan? A. Having a college degree B. Having a good credit score C. Knowing which house you want to buy D. Living close to the bank or lending institution MAKE YOU BRRAINELEST

Answers

Answer:

A

Explanation:

Answer:

B

Explanation:

Dolphin TecX is a new tech company that just issued smart watches to its employees. But there is a problem: Getting the watches to receive company email has not been easy. What problem has the company just experienced that is one of the biggest problems in networking?
A.Keeping devices protected from virus and security threats
B.Getting hardware and softwarr from different sources to work together.
C.Gettint email programs to work correctly
D.Justifiying the cost of purchasing new technology​

Answers

Answer:

Getting hardware and software from different sources to work together.

Explanation:

Answer: B.Getting hardware and software from different sources to work together.

The method longestStreak is intended to determine the longest substring of consecutive identical characters in the parameter str and print the result.

For example, the call longestStreak("CCAAAAATTT!") should print the result "A 5" because the longest substring of consecutive identical characters is "AAAAA".

Complete the method below. Your implementation should conform to the example above.

public static void longestStreak(String str)

Answers

public class JavaApplication72 {

   public static void longestStreak(String str){

       char prevC = '_';

       String largest = "";

       String txt = "";

       for (int i = 0; i < str.length(); i++){

           char c = str.charAt(i);

           if (c != prevC){

               txt = "";

           }

           txt += c;

           if (txt.length() > largest.length()){

                   largest = txt;

           }

           

           prevC = c;

       }

       System.out.println(largest.charAt(0)+" "+largest.length());

   }

   public static void main(String[] args) {

       longestStreak("CCAAAAATTT!");

   }

   

}

A Method in java is a block of named statements, that can be executed by simply calling it.

The method longestStreak in Java is as follows where comments are used to explain each line is as follows:

public static void longestStreak(String str){

   //This initializes the initial character to an empty character

   char previousChar = ' ';

   //This initializes the current and the longest streak to an empty string

   String largestStreak = "", currentStreak = "";

   //This iterates through the string

   for (int i = 0; i < str.length(); i++){

       //This checks if the current character and the previous character are not the same

       if (str.charAt(i) != previousChar){

           //If yes, the streak is reset

           currentStreak = "";

       }

       //The streak continues here

       currentStreak += str.charAt(i);

       //This checks the length of the longest streak

       if (currentStreak.length() > largestStreak.length()){

           largestStreak = currentStreak;

       }

       //This sets the previous character to the current character

       previousChar = str.charAt(i);

      }

      //This prints the longest streak and its length

      System.out.println(largestStreak.charAt(0)+" "+largestStreak.length());

  }

At the end of the method, the longest streak and its length, are printed.

See attachment for sample run

Read more about similar programs at:

https://brainly.com/question/13464860

What refers to the outline of the necessary components for a project, first given to developers at the beginning of a project and modified through the development cycle?

a
General design document (GDD)
b
Software blueprint (SBP)
c
Architectural structure orders (ASO)
d
Software requirement specifications (SRS)

Answers

Answer:

d

Explanation:

goods purchased from Ravi rs 30000 and paid cash with cash discount of 5%​

Answers

Answer:

rs 24000 I believe

Explanation:

Other Questions
Kayla squared a number x and added this result to -6.5. This gave her an answer of 42.5.What is the equation and one of the solutions to this equation?A.X2 + (-6.5) = 42.5; 2 = 7B.X2? + (-6.5) = 42.5; 2 = 6C.2x+ (-6.5) = 42.5; x = 24.5D.2x+ (-6.5) = 42.5; I = 18 what term means removing the nucleus from the cell Was this answer calculated by multiplying the fractions? A bar chart titled Federal Tax Revenue is shown. Individual income tax is 42 percent, Payroll taxes is 40 percent, corporate income tax is 9 percent, and other is 9 percent.Forty-two percent of federal revenue comes from .Income taxes paid by businesses and corporations make up about of federal revenue.Taxes collected for Social Security and Medicare make up of federal revenue. Solve the equation for all real solutions.4v^2+ 4v 3 = 0 Which of the following points would not lie on the line y = 7? Approximately what mass of CuSO4*5H20 (250 g mol^-1) is required to prepare 250 mL of 0.10 M copper(ll)sulfate solution?A) 4.0 gB6.2 g34 gD85 gE140 g Which terms could be used to describe the location of the face? Select 3 correct choicesanteriorcaudalsuperiordorsalventral HELP will mark brainliest A company currently has a 51 day cash cycle.Assume the firm changes its operations such that it decreases its receivables period by 2 days,increases its inventory period by 3 days,and increases its payables period by 4 days.What will the length of the cash cycle be after these changes?A) 42 daysB) 45 daysC) 48 daysD) 49 daysE) 51 days How do you fit 10 horses into 9 stalls?first to get right gets brainliest and that i need answers please Please help me!You have to connect the pictures with the words. I need help. Thank you. Describe the path blood takes through the circulatorysystem starting with the heart and ending with the heart. Sarah made a 72% on her science test. If she got 18 problems correct, how many questions were on the test? Jupiter _____.has a large gravitational field which can capture small cometsmay have prevented asteroids from forming a planetis responsible for creating most known meteors and meteoroidsreleases radiation which warms comets and creates a comet tail structural and functional unit of Kidneys Given the equation y= 2x - 8, what is the slope and the y-intercept?Om = 2 and b= 8O m= 2 and b= -8m= 8 and b=2O m= -8 and b= 2 Jason wants to buy a game that cost $20. He earns $2 every time he washes thedishes. He has washed the dishes 3 times. How many more times does he need to washthe dishes to get his game?