Sort by

recency

|

1393 Discussions

|

  • + 0 comments

    Yes, creating engaging, relatable, or surprising content encourages sharing across social media, email, and messaging apps. You can visit to view sale listing to see examples of such campaigns in action. This boosts brand interaction without making it feel like direct advertising.

  • + 0 comments

    Java Simple Solution:

    public static int viralAdvertising(int n) {
        int start = 1;
        int countAdv = 0;
        int day = 5;
        while(start<=n){
            int liked = day/2;
            countAdv = countAdv+liked;
            day = liked*3;
            start++;
        }
        return countAdv;
    
        }
    
  • + 0 comments

    Python Solution:

    def viralAdvertising(n):
        people = 5
        liked = (people // 2)
        shared = liked * 3
        total = liked
        
        for _ in range(n - 1):
            liked = shared // 2
            shared = liked * 3
            total += liked
        
        return total
    
  • + 0 comments

    Viral advertising is a modern marketing strategy designed to harness the power of social networks and digital platforms to spread a brand's message rapidly and organically. Unlike traditional advertising, which relies on paid placements and controlled distribution, viral advertising leverages compelling, shareable content that encourages audiences to voluntarily pass it along to friends, family, and followers. The key to its effectiveness lies in creating emotionally engaging, entertaining, or thought-provoking material that resonates deeply with viewers of saveinsta.com.br, prompting them to interact with it through likes, shares, comments, and even user-generated adaptations.

  • + 1 comment

    Here is viral advertising solution in python, java, c++, c and javascript - https://programmingoneonone.com/hackerrank-viral-advertising-problem-solution.html