Tuesday, March 17, 2020

Accelerating Growth Between Marketing and Sales With Steli Efti

Accelerating Growth Between Marketing and Sales With Steli Efti Do you enjoy your morning commute? Do you use that time to figure out what you want to accomplish? Goals you want to crush? It can be a peaceful time to think about various projects and who to work with to make things happen. Today, we’re talking to Steli Efti, co-founder and CEO of Close.io, about the intersection of inbound marketing and outbound sales. We discuss where to start, how to work collaboratively, how to grow and scale practices, and HUCA. Some of the highlights of the show include: Starts with customers if you’ve had success with inbound marketing and data to identify ideal/non-ideal customers, that’s the foundation of outbound sales Outbound Strategy: Ask customers for advice on how to sell to them Be vulnerable when doing sales, ask for help, and create an MVP for insights Decision-maker milestones to reach through outbound efforts that can be improved, replicated, and scaled Not all sales reps are created equal; requires consistency and persistence Would I want to buy from this person? Would I want to buy something from this person that I don’t really want to buy? Salesperson Characteristics: Knowledgeable, influencing, trustful, confident, authentic, honest, competitive, and adaptive Depending on your buyers, send emails or make calls to reach them Hang Up and Call Again (HUCA): Philosophy that applies to trying again to get everything you want in life Get outbound sales and inside marketing to work together to understand what they’re trying to accomplish and what insights they’re gathering Links: Close.io Steli Efti’s Blog Steli Efti Keynote Steli Efti’s Email (subject: bundle, and refer to AMP) Send suggested AMP topics If you liked today’s show, please subscribe on iTunes to The Actionable Marketing Podcast! The podcast is also available on SoundCloud, Stitcher, and Google Play. Quotes by Steli Efti: â€Å"My entrepreneurial superpower has always been sales and marketing. I’ve always been communicating to drive things forward and to make my businesses succeed.† â€Å"Most of the advice that I give is super obvious stuff, but it’s stuff that people don’t want to do.† â€Å"Just ask a bunch of your customers to give you advice on how to sell to them from an outbound perspective.† â€Å"What separates a great from the good is real consistency and persistency.† If you sound confident and comfortable, it’s going to make me feel like I should stay on the phone and keep listening.

Sunday, March 1, 2020

Using If-Then-Else and Switch in Conditional Statements

Using If-Then-Else and Switch in Conditional Statements Conditional statements in a computer program support decisions based on a certain condition. If the condition is met, or true, a certain piece of code is executed. For example, you want to convert user-entered text to lowercase. Execute the code only if the user entered capitalized text. If not, you dont want to execute the code because it will lead to a runtime error. There are two main conditional statements used in Java:  the if-then and  if-then-else statements, and the switch statement. The If-Then and If-Then-Else Statements The most basic flow control statement in Java is if-then: if [something] is true, do [something]. This statement is a good choice for simple decisions. The basic structure of an if statement starts with the word if, followed by the statement to test, followed by curly braces that wrap the action to take if the statement is true. It looks like this: if (  statement  ) {// do something here....} This statement can also be extended to do something else if the condition is false: if (  statement  ) { // do something here...}else {// do something else...} For example, if you are determining whether someone is old enough to drive, you might have a statement that says if your age is 16 or older, you can drive; else, you cannot drive. int age 17;if age 16 {System.out.println(You can drive.);}else  {System.out.println(You are not old enough to drive.) There is no limit to the number of else statements you can add.   Conditional Operators In the example above, we used a single operator. These are the standard operators you can use: equal to: less than: more than: greater than or equal to: less than or equal to: In addition to these, there are four more operators used with conditional statements: and: not:!  or: ||is equal to:    For example, the driving age is considered to be from age 16 to age 85, in which case the AND operator can be used. else if ( age 16   age 85 ) This will return true only if both conditions are met. The operators NOT, OR, and IS EQUAL TO can be used in a similar way. The Switch Statement The switch statement provides an effective way to deal with a section of code that could branch in multiple directions based on a single variable. It does not support the conditional operators the if-then statement does, nor can it handle multiple variables. It is, however, a preferable choice when the condition will be met by a single variable because it can improve performance and is easier to maintain.   Heres an example: switch ( single_variable ) {case value://code_here;break;case value://code_here;break;default://set a default;} Note that you start with the switch, provide a single variable and then set out your choices using the term case. The keyword break completes each case of the switch statement. The default value is optional, but good practice. For example, this switch prints the lyric of the song  Twelve Days of Christmas  given a provided day. int day 5; String lyric ;  // empty string to hold the lyric switch (day) {case 1: lyric A partridge in a pear tree.;break;case 2:lyric 2 turtle doves;break;case 3:lyric 3 French hens;break;case 4:lyric 4 calling birds;break;case 5:lyric 5 gold rings;break;case 6:lyric 6 geese-a-laying;break;case 7:lyric 7 swans-a-swimming;break;case 8:lyric 8 maids-a-milking;break;case 9:lyric 9 ladies dancing;break;case 10:lyric 10 Lords-a-leaping;break;case 11:lyric 11 pipers piping;break;case 12:lyric 12 drummers drumming;break;default:lyric There are only 12 days.;break;}System.out.println(lyric); In this example, the value to test is an integer. Java SE 7 and later support a string object in the expression. For example:String day second;String lyric ;  // empty string to hold the lyric switch (day) {case first:lyric A partridge in a pear tree.;break;case second:lyric 2 turtle doves;break;case third:lyric 3 French hens;break;// etc.