admin's Profile
Kid
64
points

Questions
10

Answers
186

  • Kid Asked on January 23, 2024 in Children.

    It’s important to note that perceptions of popularity and physical appearance can vary widely, even within a single country. In many places, there isn’t a singular definition of what “popular” kids look like. However, societal standards of attractiveness, fashion trends, and social behaviors can influence perceptions of popularity. In some cultures, individuals who conform to current fashion trends, display confidence, and engage in social activities may be considered “popular.” It’s crucial to recognize that these standards are subjective and can change over time, and there’s a diverse range of individuals with different qualities and backgrounds who are considered popular in various social circles.

    • 739 views
    • 1 answers
    • 0 votes
  • Kid Asked on January 23, 2024 in Design and Architect.

    Book layout design services play a crucial role in enhancing your reading experience by optimizing the visual presentation of content. Professionally designed layouts ensure readability, consistency, and aesthetic appeal, making it easier for readers to engage with the material. Thoughtful use of typography, spacing, and formatting helps create a seamless flow, preventing visual fatigue and distraction. Well-designed layouts also contribute to a book’s overall accessibility, accommodating various reading preferences and devices. Ultimately, a carefully crafted book layout enhances the overall enjoyment and comprehension of the content, creating a more immersive and satisfying reading experience.

    • 597 views
    • 1 answers
    • 0 votes
  • Assignment help services can boost your grades by providing expert guidance, delivering high-quality and customized content, ensuring timely submission, and offering valuable learning resources. Professional assistance can enhance the overall quality of your assignments, leading to improved academic performance.

    • 580 views
    • 1 answers
    • 0 votes
  • Kid Asked on January 22, 2024 in Children.

    In a healthy family environment, children often form strong emotional bonds with both their mother and father. These bonds play crucial roles in a child’s emotional and social development. The quality of the parent-child relationship is influenced by various factors, including caregiving, emotional support, and the overall family dynamic.

    It’s not a matter of being more attracted to one parent over the other, but rather about the child feeling loved, secure, and supported by both parents. Each parent typically contributes unique qualities to the child’s upbringing, and the nature of the bond may evolve based on individual experiences and interactions.

    Ultimately, the well-being of a child is often associated with the presence of positive and nurturing relationships with both parents, rather than a preference for one over the other. It’s essential for parents to provide a supportive and loving environment, fostering healthy attachments with their children.

    • 833 views
    • 2 answers
    • 0 votes
  • Kid Asked on January 4, 2024 in Children.

    Once, I witnessed a little genius who, upon discovering the concept of shadows, decided to engage in an epic battle with their own shadow. Armed with a toy sword and an unwavering spirit, the child engaged in a fierce duel, complete with dramatic swings and dodges. It was a hilarious yet endearing display of creativity, as the child giggled and declared victory over their elusive opponent, leaving everyone around in stitches. Who knew shadows could be such worthy adversaries in the world of imaginative play?

    • 922 views
    • 1 answers
    • 0 votes
    • 2750 views
    • 4 answers
    • 0 votes
  • Following are the sizes with 72 resolutions in Pixels.

    The resolution you are using (320×480) is a typical MDPI resolution, so you could basically continue using it, as long as you deliver your graphical assets for the app in other DPI sizes as well:

    In iOS, all of this is much easier, as you just have to provide two graphic assets, one for old screens (320×480) and one for new retina screens (640×960).

    • 2750 views
    • 4 answers
    • 0 votes
  • By Arik Subagia

     (function( angular ){
    // i use javascript strict for more clean script
     
    'use strict';
    //this one only act as a setter
    /* Angular Js  Code Starts here */ 
    /**
    * Main AngularJS Web Application
    */
    var leelaapp = angular.module('leelaapp', ['ngRoute']);
    var paramControllers = {};
    paramControllers.firstController = ['$scope' , function( $scope ){
    }];
    paramControllers.secondController = [ '$scope' , function( $scope ){
    }];
    leelaapp.controller( paramControllers.firstController );
    leelaapp.config([ '$routeProvider' , function ($routeProvider) {
        
        $routeProvider
            .when('/',
            {
                controller:'firstController',
                templateURL:'homepage.php'
                
            })
            
            .when('vsscomputers',
            {
                controller:'firstController',
                templateURL:'my_experience_in_vss_computers.php'
                
            })
            
            .when('enventure',
            {
                controller:'firstController',
                templateURL:'my_experience_in_enventure.php'
                
            })
            
            .when('atlassystems',
            {
                controller:'firstController',
                templateURL:'my_experience_in_atlas_systems.php'
                
            })
            
            .when('manipalglobal',
            {
                controller:'firstController',
                templateURL:'my_experience_in_manipal_global.php'
                
            })
            
            .when('myprogrammer',
            {
                controller:'firstController',
                templateURL:'my_experience_in_my_programmer.php'
                
            })
            
            .when('talentpace',
            {
                controller:'firstController',
                templateURL:'my_experience_in_talent_pace_india.php'
                
            })
            
            .when('entrepreneurship',
            {
                controller:'firstController',
                templateURL:'my_experience_in_entrepreneurship.php'
                
            })
            
            .when('infiniteibm',
            {
                controller:'firstController',
                templateURL:'my_experience_in_ibm.php'
                
            })
    }]);
    })( window.angular );
     
    • 2043 views
    • 1 answers
    • 0 votes
  • Kid Asked on December 23, 2015 in Javascript.

    JSON Representation

    
    {
    
    "root": {
    
    "child1": { "child11": "First Grand Children" },
    
    "child2": {
    
    "child21": "Second First Grand Children",
    
    "child22": "Second Second Grand Children"
    
    },
    
    "child3": { "child31": "Third First Grand Children" }
    
    }
    
    }
    
    

    XML Representation

    
    <?xml version="1.0" encoding="UTF-8" ?>
    
    <root>
    
    <child1>
    
    <child11>First Grand Children</child11>
    
    </child1>
    
    <child2>
    
    <child21>Second First Grand Children</child21>
    
    <child22>Second Second Grand Children</child22>
    
    </child2>
    
    <child3>
    
    <child31>Third First Grand Children</child31>
    
    </child3>
    
    </root>
    

    • 2437 views
    • 1 answers
    • 0 votes
  •  <script type="text/javascript">
            
          var str = "I love india";
           String.prototype.revrsString = function() {
                    var cc = str.split("");
                     var kk = [];
                     var ss="";
                     for(i=0; i<cc.length; i++){
                            kk.unshift(cc[i]);
                     }
                      for(i=0; i<kk.length; i++){
                           ss+= kk[i];
                       }
                       console.log(ss);
             };
           str.revrsString();
    </script>
     
    • 2417 views
    • 1 answers
    • 0 votes