Powered by
Powered by
HuntMyIdeas-Inspire You To Make It Happen
Follow
   Me
  • Blogs
  • About Me
  • Home

python multiple choice questions for freshers

12/23/2019

0 Comments

 
1).Choose correct statements to create a dictionary? (More than one answers possible)
i)  dict = {}
ii) dict = {“dev”:70, “mike”:95}
iii) dict= {70:”dev”, 95:”mike”}
iv) dict = (70:”dev”, 95:”70”)
​
Answer: ii, iii & iv.

Read More
0 Comments

Top Python Interview Questions 2020 [Very Important]

12/13/2019

0 Comments

 

​1. Explain PEP 8 in Python ?
​
Answer:
​

PEP 8 is considered as a coding convention, a set of recommendation, about how to write your Python code more readable.

Read More
0 Comments

What are the differences between Cocoa and Cocoa Touch?

8/19/2018

0 Comments

 
These are basically the frameworks used for development of applications.
The core concepts of Cocoa and Cocoa touch are similar.But there is some main differences between these frameworks.
After a lot of reference,I have concluded some best points regarding the differences between Cocoa and Cocoa Touch which every beginner should know  before starting                        development.

Read More
0 Comments

iOS: What is .xib in Xcode ?

8/19/2018

0 Comments

 
The .xib file extension is most commonly associated with Interface Builder files. Interface Builder is a graphics editing software that is used to design and test the user interfaces of a variety of software products.
​The files with the .xib file extension contain development time format files. These files contain the interface files created with the Interface Builder software.

Read More
0 Comments

What is .ipa in iOS ?

8/19/2018

0 Comments

 
You must have heard about .ipa files while developing iOS Applications or if you are into jail breaking your iPhone/iPad or iPod Touch,you probably also been looking for the illegal iOS ipa files.
​In this post,I have explained about it's use and what it stands for.ipa stands for  
iOS App Store Package. 

Read More
0 Comments

explain objective-c plist

8/19/2018

0 Comments

 
Plist means "Property List". It is in XML file format It is mainly used for storing and retrieving  data It can store as key-value pair.In iPhone development, Property Lists are a key-value store that your application can use to save and retrieve persistent data.Plist files are quite useful in that they can store an array of NSDictionary’s.This makes them quite handy for storing information.

Read More
0 Comments

What is the difference between IBOutlet and IBAction in iOS ?

8/19/2018

0 Comments

 
IBAction and IBOutlet are macros defined to denote variables and methods that can be referred to in Interface Builder.
​

​IBAction and IBOutlets are used to hook up your interface made in Interface Builder with your controller

Read More
0 Comments

Problem in integrating SDKBOX  -Multiple Plugins in a single project-Cocos2d-x

8/19/2018

0 Comments

 
When I tried to integrate SDKBOX plugins (In-App purchase,Facebook SDK,Flurry and chartboost) in a single cocos2d-x project for iOS,I got some issues as follows.

​After wasting 2-3 hours ,I got the actual solution to resolve this issue.

Read More
0 Comments

Dynamic Label TTF font size in a specified rectangle in c++ - cocos2d-x

8/19/2018

0 Comments

 
I am trying to create a label TTF box that is specified by x, y, width, and height that can accept any string and adjust the font size to be as big as possible and still fit in the box.
I have been trying several approaches.but it doesn't quite work.Here,I have created my own custom Label Class of dynamic font size.

Read More
0 Comments

Explain The Difference Between loadView() And viewDidLoad() in iOS

8/19/2018

0 Comments

 
It's a best trick to grasp some fundamentals of UIKit before rushing into ios development.

Basically, loadView and viewDidload are the methods of UIViewController's lifecycle.

​I am going the explain the difference.

Read More
0 Comments

How To Explain UIViewController Life Cycle in iOS?

8/19/2018

0 Comments

 
What is VIewController?
View controllers play a crucial role for designing most iPhone applications.Today, I am going to explain only the UIViewController Life Cycle.The UIViewController class is the base class that establishes communication between model and View in iOS MVC design
pattern.

Read More
0 Comments

Application's Background Transition Cycle in iOS

8/19/2018

0 Comments

 
In this post we will discuss about application's background transition cycle.You must be curious to know -" what happens when user presses Home button of iOS device","what are the application states by which app goes through when user presses Sleep or Wake button", "what happens when  the system launches another app".

Read More
0 Comments

What Are The Main Responsibilities Of A View Controller ?

8/19/2018

0 Comments

 
View controllers plays a very important role in iOS applications and build the skeleton of every app you develop.A view Controller manages multiple views of your app's user interface.
-It  basically loads and disposes the views, for managing interactions with those views, and coordinates responses with the suitable data objects.
-View controllers also communicates with other view controllers to manage your app’s overall interface.

Read More
0 Comments

How to Explain  iOS Application LifeCycle ?

8/18/2018

0 Comments

 
iOS applications transition between a number of states in response to actions happening throughout the system.These states are known as states of Application's lifecycle.

​Apple introduced background processing or multithreading in iOS 4.0.

Read More
0 Comments

Concept Of Multitasking In iOS App ?

8/18/2018

0 Comments

 
Prior to iOS 4.0, it was impossible to run more than one Application at the same time. What I mean to say, if you are playing a Game and try to switch to another App,you have to close the first App.

​Apple resolved this issue with the introduction of multitasking operating system iOS 4.With Multitasking, you can use more than one app at a time on your iOS device.

Read More
0 Comments

How to start a long-running task when your app goes to the background in iOS ?

8/18/2018

0 Comments

 
When the user sends an App to background,they moves to an inactive state so that system can send them to a suspended state as soon as possible.If some apps have to complete some tasks or need some extra time ,they can call beginBackgroundTaskWithName:expirationHandler:  or
beginBackgroundTaskWithExpirationHandler: method of UIApplication object to request for additional time

Read More
0 Comments

You can't run ios 11 on Xcode 8.2 - Sloved

8/18/2018

0 Comments

 
​Here, we will discuss the step by step procedure -how to run an app on iOS 11 using Xcode 8.2.
​
As,Xcode 8 doesn't  support iOS 11 device version iOS 11 version, you need to use the following steps  as mentioned below.
I.e there is no disk Image for iOS 11 in Xcode 8.

Read More
0 Comments

How To Add  A SWIFT Bridging Header in iOS?

8/18/2018

0 Comments

 
What is a Swift Bridging Header?

A Swift bridging header is the communication media  with your Objective-C classes from your Swift classes.

Bridging header plays an important role in Swift that allows to run the Swift code along with some codebase written in Objective C. 

Read More
0 Comments

How to get Bundle Identifier Programmatically in Objective C ?

8/18/2018

0 Comments

 
What is Bundle Identifier in Xcode ?
Answer:

It's an unique string that identifies your app.
It is usually written in reverse DNS notation i.e (com.Yourcompanyname.yourApp).

Read More
0 Comments

How to  check if the device is android or iOS in Unity 3D?

8/18/2018

0 Comments

 
There are some cases where RuntimePlatform is needed to be checked at runtime.We have several ways to check at compilation time and run time whether a device is iPhone or Android.

Read More
0 Comments

How to Convert NSString To Int And vice versa in Objective C and Swift ?

8/18/2018

0 Comments

 
1.How to Convert int to NSString in Objective C?
​ Answer:
​

int anyNumber = 123;
NSString *anyString = [NSString stringWithFormat:@"%d", anyNumber];

Read More
0 Comments

Xcode 9 App installation failed: Could not write to the device

8/18/2018

0 Comments

 
If you search this issue in Google you will get a number of different solutions.I have tried the solution below in a step by step manner and resolved the issue.

Read More
0 Comments

How to Delete Derived Data from Xcode ?

8/18/2018

0 Comments

 
What is derived data in Xcode ?
It’s a folder  containing your build information, targets of debug and release as well as projects index.
Why  do we delete the derived data ?
It helps to get rid of  some code compilations issues, slow project and constant reindexing issue.

Read More
0 Comments

How to convert your NSStrings to c strings (const char *) and vice versa in Objective C ?

8/18/2018

0 Comments

 
Objective-C is built upon the C , it’s important to know how to convert C based strings to NSString objects, and vice-versa.
A C string is simply a series of characters (a one-dimensional character array) that is null-terminated, whereas an NSString object is a complete object with class methods, instance methods, etc.​

Read More
0 Comments

How do I check if a string contains another string in Objective-C ?

8/18/2018

0 Comments

 
In this post we can prefer two best solutions to check if a string contains another string .We can use rangeOfString: that returns an  NSRange struct {NSNotFound, 0}.

Read More
0 Comments
<<Previous

    Enter your email address:

    Delivered by FeedBurner

    RSS Feed

    Archives

    December 2019
    August 2018
    January 2018
    December 2017
    November 2017
    October 2017
    August 2017
    April 2017
    July 2016
    June 2016
    May 2016
    April 2016
    March 2016
    February 2016
    December 2014
    November 2014
    October 2014
    September 2014
    August 2014
    July 2014
    June 2014


    ​​Categories

    All
    Affiliate Marketing
    Alexa Rank
    Apple's Latest Updates
    Blog Tips
    Cocos2d X
    Cocos2d-x
    Google AdSense Tips
    Grab-some-ultimate-ideas
    How-to-create-a-twinkling-star-background-effect-in-ios
    In-App Purchase Tutorial In Cocos2d-x (C++) Using SDKBOX
    Ios Interview Questions And Answers
    IOS Multiple Choice Questions And Answers
    Objective C
    Online Business
    Python
    Secrets To Effective IPhone App Marketing
    SEO Tips
    Swift Interview Questions
    Swift Tutorials
    Top 10 Articles Objective C
    Top 10 Articles-Objective-C
    Top 10 Popular Movies Ever
    Top 10 Popular Things To Know
    Top 10 Ultimate Issues Xcode
    Top 400 IOS Interview Questions
    Top IOS Sample Projects To Learn From
    Top Secrets To App Marketing
    UICollectionView
    Unity 3D
    Xcode

WELCOME TO HUNTMYIDEAS

Picture
I am Jitendra Gochhayat,an iOS Developer,Designer,blogger,
​from Odisha,India.
I write about ​​​blog tips and,
Make money online Tips,
​Objective C tutorials
SUSCRIBE TO NEWSLETTER

    Subscribe to this blog and receive notifications of new posts by email

Suscribe
Picture
Picture
Picture
Picture
Picture
HuntMyIdeas-2016 Powered By Weebly
Picture
Powered by Create your own unique website with customizable templates.
Powered by
Powered by