can u please answer this logos?​

Can U Please Answer This Logos?

Answers

Answer 1

Answer:

19 is apple

I'm sorry I only know that, but I hope this helped you!!


Related Questions

Ms Excel is an example of______



Answers

Answer:

It is an example of a spreadsheet application

Explanation:

Ms Excel is an example of_spread sheet application_.

hope this helps you.

Of the following hard drives, which one is fastest?
a. SATA 6 Gb/s SSD
b. SATA 6 Gb/s 10,000-RPM drive
c. M.2 SSD using a SATA3 interface
d. PCIe NVMe SSD card

Answers

Answer:

D. PCIe NVMe SSD card

Explanation:

PCIe NVMe SSD cards are ludicrously fast even compared to some modern SSD drives today. Some can even average up to 8 GB/s while moving/copying files, though, the price tag is pretty high compared to some other SSD / HDD drives.

Implement a number guessing game where a player will get up to seven chances to guess a mystery number in the range of 1 through 100.

Answers

The implementation of the guessing game ls written in python 3 which involves a maximum guess of 7 to make a prediction of the random integer generated.

import random

#import the random module for generating random numbers

num = random.randint(0, 100)

#generate a random integer value between 1 to 100 and store in the variable num

tries = 0

#initialize a counter to record the number of guesses made

while tries <7 :

#while loop ensures that only a maximum of 7 guesses is are made

guess = int(input('Enter your guess'))

#prompts user to make a guess

tries+=1

#increases the number of guesses by 1

if guess == num :

#checks if the guess is equal to the random number

print('success')

#dispaly success if true

elif tries < 7 :

#if not check if number of guesses is not up to 7 and tell user to try again

print('Try again')

elif tries == 7 :

#checks if number of tries is equal to 7

print('tries exceeded\n the random number is :', num)

# tell user that is number of tries has elapsed and display the correct number.

A sample run of the program and the output is attached.

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

What is lhe correct sequence of Sprint Zero?
1. Estimate roughly
2. Form backlog
3. Setup environment
4. Define user stories

Answers

Answer:

Get some quality items on the Product Backlog

Product backlog for your credit bill nye is due for a week of

Java question

If the user wants to enter one character what statement you use?

1- next()?

2-next(0)?

3-CharAt(0).

4-next().charAt(0).

Answers

Answer:

To be honest why would you want to enter one character. Anyways the answer is option 4

Which of the following is NOT an example of a computer? O Judge O ENIAC O Calculator O Abacus​

Answers

Answer:

Judge

Explanation:

ENIAC was the first programmable

Calculators are very simple electronic computers

Abacus are non-electronic computers

Judge is your answer

major developments in 5th generation computers?​

Answers

Answer:

ULSI technology.

Development of true artificial intelligence.

Development of Natural language processing.

Advancement in Parallel Processing.

Advancement in Superconductor technology.

More user-friendly interfaces with multimedia features.

Availability of very powerful and compact computers at cheaper rates.

Explanation:

Think of the silliest problem the problem solving process could help with.

Answers

Answer:

12 FISH ARE IN A BOWL. SOME BIG OTHERS LITTLE IF 5 BIG FISH ATE 2 SMALL FISH EACH HOW MANY FISH ARE LEFT IN THE BOWL ???

PLEASE MARK ME BRAINLIST IF YOU CAN'T ANSWER IT

Answer this pls ASAP

Answers

Answer:

I'm not going to answer it just because you said "ASAP" never rush an intellectual such as ME.

why my react native code only rend white screen

Answers

Answer: https://stackoverflow.com/questions/51705627/react-native-white-blank-screen-issue this shows u why

Explanation:

What are some good predictions for video games in 2030? I need good reliable sources that have timestamps, like they say 2030 in them. Thank you!

Answers

Answer:

The 2021 global games market will generate revenues of $175.8 billion and is projected to exceed $200 billion by the end of 2023, according to a report by Newzoo (via VentureBeat). More than half of these revenues will come from mobile gaming, the largest segment of the marke

Explanation:

hope it's helpful to you

10 shortcuts in word processing

Answers

Answer:

Word shortcut keys

Ctrl + A -- Select all contents of the page.

Ctrl + B -- Bold highlighted selection.

Ctrl + C -- Copy selected text.

Ctrl + X -- Cut selected text.

Ctrl + N -- Open new/blank document.

Ctrl + O -- Open options.

Ctrl + P -- Open the print window.

Ctrl + F -- Open find box.

Answer:

Ctrl + A -- Select all contents of the page.

Ctrl + B -- Bold highlighted selection.

Ctrl + C -- Copy selected text.

Ctrl + X -- Cut selected text.

Ctrl + N -- Open new/blank document.

Ctrl + O -- Open options.

Ctrl + P -- Open the print window.

Ctrl + F -- Open find box.

Explanation:

what are work incidents/situations or ethical problem?

Answers

5 Common Ethical Issues in the Workplace

Unethical Leadership.

Toxic Workplace Culture.

Discrimination and Harassment.

Unrealistic and Conflicting Goals.

Questionable Use of Company Technology.

Jfsnu vnjdjsmamsnsndjxmxnhsc e

2. What does the menu system on your DVD player illustrate?
(1 point)
O interface
O link
O menu system
O search engine

Answers

Answer:

Interface, (A)

Explanation:

Because it just does

interface

the correct answe

Write the types of computer viruses.​

Answers

File infecting virus, web scripting virus, resident virus browser hijacker

A mobile service provider has two data plans for its customers:

Silver plan: For $29.99 a month, 4 gigabytes are provided. Additional data costs $10 per gigabyte.
Gold plan: For $49.99 a month, 8 gigabytes are provided. Additional data costs $5 per gigabyte.

For both plans, the additional data is rounded up to an integral number of gigabytes. For example, if the additional data is 2.1 gigabytes, it is rounded up to 3 gigabytes, and the cost is $30 for the silver plan and $15 for the gold plan. Write a program that displays a menu of choices.

Answers

The program is an illustration of built-in functions and conditional statements.

Built-in functions are functions that have specific roles defined in them, while conditional statements are statements whose execution depends on the truth values of the condition.

The program in Python, where comments are used to explain each line is as follows:

import math

#This prints the menu

print("Menu\n1.- Silver plan\n2. Gold plan")

#This gets input for the plan from the user

selection = int(input("Select a plan: "))

#This gets the additional data from the user

additional_data = float(input("Additional data: "))

#This rounds up the additional data to the next integer

additional_data = math.ceil(additional_data)

#If selection is 1

if selection == 1:

   #This calculates the additional cost and the total cost

   additional_cost = 10 * additional_data

   total = additional_cost + 29.99

#If selection is 2

elif selection == 2:

   #This calculates the additional cost and the total cost

   additional_cost = 5 * additional_data

   total = additional_cost + 49.99

#For other inputs, the selection is considered invalid

else:

   print("Invalid selection")

#This prints the additional and the total costs, for selections 1 and 2

if selection == 1 or selection == 2:

   print("Additional cost:",additional_cost)

   print("Total cost: {:.2f}".format(total))

At the end of the program, the appropriate costs are printed for valid selections.

Read more about similar programs at:

https://brainly.com/question/25210352

How large are the laptop discounts for Black Friday?

Answers

Answer:

i dont know you can look it up in gogle

Explanation:

Answer: Some about 50% off, some 30% off.

[C++] 4.17 LAB: Print string in reverse Write a program that takes in a line of text as input, and outputs that line of text in reverse. The program repeats, ending when the user enters "Done", "done", or "d" for the line of text. Ex: If the input is: Hello there Hey done then the output is: ereht olleH yeH

Answers

The program illustrates the use of string manipulations.

String manipulation involves carrying out several operations (such as splitting and reversing of strings).

The program in C++ where comments are used to explain each line is as follows:

#include <bits/stdc++.h>

using namespace std;

int main(){

   //This declares a string variable

string str;

//This gets input for the variable

getline(cin, str);

//The following is repeated, until the user inputs "Done", "done" or "d"

while(str != "Done" && str !="done" && str !="d"){

    //This reverses the string

    reverse(str.begin(), str.end());

    //This prints the reversed string

    cout << str<<endl;

    //This gets another input

    getline(cin, str);

}  

return 0;

}

At the end of each loop, the reversed string is printed.

See attachment for sample run

Learn more about similar programs at:

https://brainly.com/question/24833629

I will mark brainlist please help


1) Top layer we used the following effect

• clipping mask

• release clipping mask

• rasterize type

• none of the above


2) Reflection layer blend mode changed to:

• overlay

• normal

• dissolve

• hard light



3) for the layer reflection copy we added

• input mask

• color overlay

• layer mask

• none of the above

Answers

Answer:

clipping mask

Explanation:

effect

Which kind of devices uses radio waves to transport data? devices use radio waves to transport data.

Answers

Answer:

In computer networking, RF is used to describe network devices (hubs, bridges, etc.) that transmit data signals using radio waves instead of data cables or telephone lines.

Explanation:

Answer:

In computer networking, RF is used to describe network devices (hubs, bridges, etc.) that transmit data signals using radio waves instead of data cables or telephone lines.

Explanation:

A partition is the _____.


an application that makes an operating system easier to use, also known as a shell

section of a hard drive

the core of an operating system that controls the basic functions

software that can be downloaded from the Internet at no cost

Answers

A partition is a section of a storage device

choose the missing term
-------time
time.sleep(3)

Answers

Answer:

import

Explanation:

If this is python, you'll have to import the time module.

Which of the following correctly orders the steps involved in the outlining process?

brainstorm, order, organize, label
brainstorm, organize, order, label
organize, brainstorm, label, order
organize, brainstorm, order, label

Answers

Answer:

brainstorm, organize, order, label

Explanation:

The answer is:

brainstorm, organize, order, label

cách soạn thảo văn bản trên word

Answers

Answer:

Did you mean How to edit text on word? There are 2 word, Microsoft Word Office and WordPad. The step I give you below is for both.

Explanation:

Steps to edit text on word

Step-1: Select the text you want to edit.

Step-2: Click on Home Tab.

Step-3: Select the style(s) you want to edit from the Font group

Why did the spelling and grammar checkers in Word miss the errors highlighted in yellow?

Please help me

Answers

Answer:

Spelling and grammar missed them because the highlighted errors are actually words that are not in the right place and when you misspelled them, it turned into a word in the incorrect place.

How many bits are in a single byte?

Answers

Answer:

8. One byte is 8 bits, 2 bytes is 16 bits, etc

Why did the spelling and grammar checkers in Word miss the errors highlighted in yellow?

3-5 sentences
Please help

Answers

Answer:

It missed them because the highlighted errors are actually words that are not in the right place and when you misspelled them, it turned into a word in the incorrect place.

Explanation:

Answer:

It missed them because “Tying” is a real word. Whoever wrote this misspelled typing and it autocorrected it to “Tying,” which doesn’t make sense in that sentence. As quoted in lesson 3.07, page 2, “A word can be spelled correctly but used incorrectly.”

Explanation:

hope this helps! :)

c program how to input this? ​

Answers

Chchvjvcuvggiiog. Correct

[tex]\huge \boxed{\sf code}[/tex]

#include <stdio.h>

int  main() {

       // Declare the variables

       float a,b,c,d,e;

       float sum;

       // Ask the user to input

       printf("Enter the first number: ");

       scanf("%f",&a);

       printf("Enter the second number: ");

       scanf("%f",&b);

       printf("Enter the third number: ");

       scanf("%f",&c);

       printf("Enter the fourth number: ");

       scanf("%f",&d);

       printf("Enter the fifth number: ");

       scanf("%f",&e);

       // Use if statements to calculate the sum

       if (a < 0) {

               sum = sum + a;

       }

       if (b < 0) {

               sum = sum + b;

       }

       if (c < 0) {

               sum = sum + c;

       }

       if (d < 0) {

               sum = sum + d;

       }

       if (e < 0) {

               sum = sum + e;

       }

       // Print the sum

       printf("Sum of all negative integers = %.2f\n", sum);

       // Return an integer

       return 0;

}

[tex]\Large \boxed{\sf explanation}[/tex]

Declare the variables a, b, c, d, e, and sum as float type.

Display to the user to ask for input and take the input.

Use if statements to determine if a, b, c, d, and e are less than 0. If yes, then add them to the sum. If no, then skip to the following function.

Print the sum as a float type with 2 decimal points.

Return an integer.

What is lhe correct sequence of determining and development of CRM strategies?
1. Amplify commitment
2. Building valuable project team
3. Requirement analysis

Answers

Answer:

Plugins

API Docs

Find an Expert

Sendinblue Academy

Customer Stories

Premium Templates

Product Updates

Become a Sendinblue Expert

Sign up free

Log in

September 21, 2020

8 Steps to Creating a CRM Strategy for Your Business

Reading time about 9 min

What is a CRM strategy?

A Customer Relationship Management strategy is a plan to grow sales and improve customer service through a combination of processes, actions, and technology. It typically involves the sales, marketing, and customer service functions of a business.

What was once the traditional buyer-seller model has shifted from transactional to customer-centric. Customer relationships today require higher levels of maintenance, which is why businesses now have entire CRM strategies dedicated to managing them.

One of the reasons is that consumers have bigger expectations than ever when it comes to customer service. They’re not going to think twice about going elsewhere if yours isn’t up to scratch.

When we hear the words ‘CRM strategy’, we’re inclined to think about CRM software. But software is only one piece of a much larger puzzle.

The best customer relationship management strategy incorporates both people and software.

Stay tuned for our comprehensive 8-step guide to developing a CRM strategy for your business.

sorry if i dont help you

Which trait can be a positive or negative?

Answers

Answer:

Prejudice can be either positive or negative.

Other Questions
Which is a TCS food? here giving 100 for right answer What force must act on a 30 kg mass object to give it an acceleration of 0.45 m/s? PLSS HELPP MEE THE SUBJECT IS SCIENCE Which of the following is an accuratedescription of what Thomas Jeffersondescribed in the Declaration?A. That the King of England owes the colonistsmoneyB. That America will win the war againstEnglandC. People have the right to fair governmentD. The colonists have no rights 6. Which of the following is NOT a factor of partial melting? A. addition of volatiles B. decrease in pressure C. an increase in pressure D. an increase in temperatureletter b. Help pls :) brainliest involved cules son los recursos empleados en un informe de investigacin? Why did northerners agree that slavery had to end give reason : Inert gas shows least reactivitypls help Lectura Sandra has received a postcard from her friend Rubn. Read the postcard and answer the questions in complete sentences. What is the slope of a line parallel to the line whose equation is 6x-y=16xy=1. Fully simplify your answer Fernando: Cul es el precio de este refrigerador?Vctor: _________ 500 dlares.A. CuestaB. CuestoC. CostamosD. Costaron BTW this is actually a science quetion.What is the amount of matter in an object compared to the space it takes up. Im confused because i think its mass but i was told that mass is the amount of matter something contains. Which point represents the opposite of -1 on the number line? Find the area enclosed by a rectangle that is 1300 m wide and 1630 m long. Write your answer so that it has the correct number of significant figures. A project about "How do vaccines be used to fight outbreaks?" Determine the function which corresponds to the given graph. (3 points)The asymptote is x = -3. Can you help me to do this? The two items are what region of the solar spectrum can cause a dangerous sunburn does anyone know how to solve this