how to create an app on app store please its not a joke, if someone knows tell me how

Answers

Answer 1

Answer:

If your only talking about the app store then you program your app and when it is finished you submit it as an Apple developer and pay $99 for the app to be up.

Steps of what to do for submitting to the App Store:

Assemble App Store Information. Create a Bundle Identifier. Create a Certificate Signing Request. Create an App Store Production Certificate. Create a Production Provisioning Profile. Create an App Store Listing.Make The Release BuildFill In Version InformationSubmit Version For Review Release

hope that helps you out homie and good luck on your app bro.


Related Questions

PLEASEEEEEEEEEEE HELPPPPPPPPPP MEEEEEEEEEEE
This software application can be used to organize, analyze, and illustrate data. Which one is it?

a.Excel
b.Outlook
c.PowerPoint
d.Word

Answers

The answer is excel

Hope this helps

What is a product of respiration

Answers

Answer:

carbon dioxide and water

Explanation:

Select the three statements that best describe benefits to testing a system.
allows you to capture the required behavior of the system
allowS you to correct inaccurate requirements
allowS you to have a good foundation from which to work
allows you to validate characteristics
allows you to verify the project scope
O allows you to create a prototype
allows you to provide a basis for testing

Answers

Answer:

Following are the three statements which best describe  benefits to testing a system.

Explanation:

First

Allows you to correct inaccurate requirements

Second

Allows you to validate characteristics

Third

Allows you to capture the required behavior of the system

How would a person giving a persuasive speech use projection to make a key point?

a. by talking at a faster pace
b. by using a louder voice
c. by pronouncing words clearly
d. by using an upward intonation

Answers

Answer:

B: by using a louder voice

Explanation:

if Edge quiz then B

Answer:

B: by using a louder voice

Explanation:

correct on e2020 :)

What is the importance of renaming layers in GIMP?

Answers

Answer:

They allow for a more organized workspace. Specially in larger projects, having properly named layers helps keep things organized an sane.

Explanation:

What is a composite primary key made up of?
O an autonumber field/
a reference to a different table
more than one field
multiple records in the table

Answers

Answer:

what

Explanation:

As a sports store owner, the higher the price you charge for gear?

Answers

Answer:

The greater the profits no matter how high the price

it could be bottom left or bottom right because people won’t buy the gear if it’s to expensive losing profits

What is missing in the following program?
count = 0
1for numA < 3:
count = count + 2
print(numA)

answer:

Answers

Answer:

Replace for with while or if

Explanation:

The question has been answered by you before posting. However, I'll help with the explanation.

In python, for is used to iterate through a particular range. So, the for statement as used in the given program is incorrect.

Now, with what do we replace for?

The function of the program is not stated. So, I'll answer with likely options.

1. Replace for with while:

This will repeat the code in the while block as long as the condition numA<3 is true

2. Replace for with if statement:

This checks if numA is true and performs the operations in the [if] block.

The representation would be:

if numA < 3:

     count = count + 2

     print(numA)

After either of the above has been implemented, variable numA has to be initialized properly before the program functions well.

Answer:

The answer is while. Have a wonderful safe day.

Explanation:

1 Which of the following could work as bits for a binary system?
А The flip sides of a coin
B The fingers on one hand
C The days of the week
D The colors of the rainbow​

Answers

It’s B you can count it on ur fingers

What do microphone means

Answers

Answer:

A tiny phone

Explanation:

It means a tiny phone

As a result of the Internet, people today

use more mobile devices.

go to the movies more often.

no longer read newspapers.

no longer need computers.How long has the environment been a major issue in the United States?

Answers

Answer:

hi there, the answer is

a. use more mobile devices

hope this helps :)

have a good day!

Explanation:

i just took the quiz rnnn

Answer:A

Explanation:

edge 2023

You defined a class and saved it as shoe.py.
Which line of code will allow you to use the class in another program?
from shoeClass import *
O import shoe from
O from shoe import
O import shoeClass from

Please hurry

Answers

Answer:

Import shoeClass from

Explanation:

You defined a class and saved it as a shoe. The line of code that allows you to see the class in another program is import shoeClass from. The correct option is d.

What is programming?

A form of computer programming language known as procedural programming describes a number of well-planned actions and processes during the course of its development.

It includes statements, functions, and commands that are organized systematically to finish a computing task or program. Its main focus is on developing procedures.

While object-oriented programming is a type of programming where the emphasis is on creating objects as opposed to actions and data or logic. Its four guiding principles are encapsulation, abstraction, polymorphism, and inheritance.

Therefore, the correct option is d. import shoeClass from.

To learn more about programming, refer to the link:

https://brainly.com/question/14368396

#SPJ5

What is output? Select all that apply. c = 3 while (c < 10): c = c + 2 print (c)

Answers

Answer:

5, 7, 9, 11

Explanation:

its on quizlet

Guys I need help I cant download anything in the app store I restarted my phone and I know it's not the space on my phone I have alot of space I exited the app store but I still can't download anything help ​

Answers

Can you give me further explanation? For example, how is your phone not letting you download things? What model of a phone is it? what update is it on? and to what extent can you download something?

Hi I will Venmo or cash app 50$ to whoever can get all my school work in a week 8th grade btw.

Answers

Answer:

i gotchu dawg

Explanation:

Answer:

UwU Can't, thanks for le points sowwy

Explanation:

What does the following loop do?

val = 0
total = 0

while (val < 10):
val = val + 1
total = total + val
print(total)

Prints the numbers backwards from 10 to 1.

Prints the sum of the numbers from 1 to 10.

Finds the average of the numbers between 1 and 10.

Prints the numbers from 1 to 10.

Answers

Answer:

Prints the sum of the numbers from 1 to 10.

Explanation:

YOU NEED BETTER INDENTATION

Total is the sum.

Each loop it's added

:)

2.3 pseudocode exercise on edhesive

Answers

Answer:

a=int(input("Enter a numerator: "))

b=int(input("Enter a divisor: "))

quotient=a/b

remainder=a%b

print("Quotient is: " + str(int(quotient)))

print("Remainder is: " + str(int(remainder)))

That's 2.3 question 1

a_ft = int(input("Enter the Feet: "))

a_inc = int(input("Enter the Inches: "))

b_ft = int(input("Enter the Feet: "))

b_inc = int(input("Enter the Inches: "))

sum_inc = a_inc + b_inc

# select the whole and the fractional part

inc_to_ft = sum_inc // 12

rem_from_div = sum_inc % 12

sum_ft = a_ft + b_ft + inc_to_ft

print("Feet: {} Inches: {}".format(sum_ft, rem_from_div))

That's 2.3 question 2

Explanation:

I wasn't sure which one you needed so I added both.

How are charts inserted into a PowerPoint slide?
O Open the chart in Excel, click it and drag it into the slide.
O Double-click the chart in Excel, and click inside the slide to paste it into the presentation.
O Use the Copy tool to copy the chart from Excel and the Paste tool to insert it into the slide.
O Take a screenshot of the chart from Excel and paste it into the slide using the Paste tool.

Answers

It’s the third one.

Question 8 of 10
What can be defined as an information technology environment?
A. The tools and processes that surround us to gather and interpret
data
O B. The rules and regulations that government and businesses must
follow to be secure from hackers
C. The energy used to create and maintain technology
D. The buildings and materials that house computer services
SUBMIT

Answers

Answer:

C. The energy used to create and maintain technology

#Carry on learning po

Sharl downloads images from an online library and uses them in her work. The images are shared under the Creative Commons Attribution (CC BY) license. What is she required to do to comply with the terms of the license?
A. share derivatives of the images on identical terms

B. acknowledge the sources of the images

C. use the images for noncommercial purposes

D. use the images in their original form, without modification​

Answers

Answer :

She needs to B. acknowledge the sources of the images

Why ?

As it is stated on the creativecommons . org :

"Attribution — You must give appropriate credit, provide a link to the license, and indicate if changes were made. You may do so in any reasonable manner, but not in any way that suggests the licensor endorses you or your use.

No additional restrictions — You may not apply legal terms or technological measures that legally restrict others from doing anything the license permits."

True or False, A variable can be called or referenced before it has been defined.

Answers

Answer:

false?

Explanation:

im 99% sure

The copy mouse pointer looks like a
white plus sign
O white arrow
white arrow with a small plus sign
black cross

Answers

I’m confused?????????

ten(10) examples of wearables or wearable technologies?​

Answers

Answer:read

Explanation:

airpods

headphones

earbuds

AirPods  pro

watch

fitbit (type of watch that counts your miles) &you can say workout watch&

VR set

technology bracelet

smart glasses

Smart ring

A client in Nebraska asks you to create a cover image that is 2000 pixels high by 1200 pixels wide for catalog that will be displayed on its website. Which of the following new documents types will you select for this new project?


Select one:
Art & Illustration
Web
U.S. Paper
Photo

Answers

Answer: WEB

Explanation: this is the correct answer.

Some people argue that it is acceptable to pirate digital media be a no one really gets hurt. How would you respond to someone who made that argument?

Answers

Answer: I say that it is not acceptable to pirate digital media. I say this because it is the exact same thing as cyber bullying.

Explanation:

In critical thinking, an argument is:
A reflection about someone's thinking
A pointless dispute with someone
An attempt to persuade someone
An explanation of something

Answers

c... it’s c ok.......................
An attempt to persuade because you want as many people on your side as you can get

A company was asked to develop a smartphone app to help people locate a car of their choice to purchase from a complex of more than thirty used car dealers who all share a huge car lot. Name two features that that would be useful to potential customers.

Answers

Answer:

the gps and a map

Explanation:

Answer:

I think. it could be GPS and maps to but I may be wrong so yeah

Describe the scope of the variables in this code.

class pet:
def __init__(self,strSpecies,strName):
self.species = strSpecies
self.petName = strName

def __str__(self):
return self.species + " named " + self.petName

def changeName(self, newName):
self.petName = newName

class petCarrier:
size = 'medium'
color = 'red'

The scope of petName ______.

The scope of color is ______.

Accessible to the entire program
limited to the petCarrier class
limited to the pet class


(both of the blanks need one of those answers)

Answers

The scope of petName is local to the class pet.

The scope of color is accessible by all parts of the program.

How to interpret programming variables?

The variable petName is local to the class; This isdue to the fact that the variable was created in a function whose name begins with two underscores.

The variable color; This is created in the petCarrier class and is accessible to the entire function. This was not created in a function whose name begins with an underscore.

Read more about programming variables at; https://brainly.com/question/9238988

#SPJ2

Answer:

The scope of petName limited to the pet class

The scope of color is accessible to the entire program

Explanation:

edge

if Z=52 and ACT=48 then BAT=​ with explanation??​

Answers

In the given code, A = 2, B = 4, C = 6,.... , Z = 52.
So, ACT = 2 + 6 + 40 = 48 and
BAT = 4 + 2 + 40 = 46

hi who plays among us

Answers

Answer:

Me

Explanation:

Lol

Answer:

used to, i like that the game is inexpensive and run well, i hate the thirst boys though

Explanation:

Other Questions
geometry lol i dont know !!! describe this number line and the numbers and fractions shown. Which sentence is written in standard English?It is awesome that you can help out with the party decorations.The movie I watched last night was epic.My grandmother made a really delicious pie for dessert.The dinner I am cooking smells off the hook. Which property of bromine could one predict based on the fact that it is a nonmetal in the halogen family?A. It is highly reactive.B. It is liquid at room temperature.C. It is a good conductor of electricity.D. It is a good conductor of heat. Spanish essayYou are corresponding with the foreign exchange student your family is hosting soon and youwant to get to know him or her before the arrival, so you are sending a welcome package thatincludes a letter. In this letter, you are explaining your (pre-virus) school life and the variousactivities you do in a normal school day and why. Ask them what various activities they enjoyand make them feel welcome in the United States. 3x + 5 = 2x + 7 What should you do first to isolate the variable? Complete the sentences with the correct coordinating conjunction from the box.yet so or anda. Teresa is an excellent employee she always has time to help others.b. I know you were late for a good reason, ...I am going to give you some extra time to finish the exam.c. Many people have complained about the poor state of extracurricular activities, . no one has volunteered to help improve them.d. Im not sure why he acted like that. He may have been upset with us, . maybe he was just tired. New Orleans jazz music was usually played by bands. Which of theseinstruments would NOT be found in a New Orleans jazz band?A. tromboneB. planoC. clarinetD. French horn for a relation to be a function what must never happen Use synthetic division to determine f(-2) for the function f (x) = 9x^3 - 18x^2 - 16x + 32 How would you solve 5x+9=x-23 (x - 4)(2x - 1)(3x - 2) = 0What is the product of all values of x that satisfy the equation above? Which of these organisms can move on its own?A oak treeB anteaterC dolphinD all of the above question is in png pls some1 help. if Scott types 210 words in 5 minutes how many words can he type in a minute PLEASEEEEE HELP ME yes, hlyes, asa no not enough info yes, sas In Python, programmers use square brackets and an index range to slice multiple characters from a string. True False hey! can you all answer this problem for me please =) its for a test :) All of the following are probable ways to de-escalate conflict between groups except Please select the best answer from the choices provideda. reestablishing communication that has stoppedb. Discounting extreme opinions of uncompromising group membersc. taking time to cool down emotionallyd. reducing all communication after conflict occurs Solve the inequality. 4v + 9 5 or -3 >= -6