64
points
Questions
10
Answers
186
- 739 views
- 1 answers
- 0 votes
- 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
- 833 views
- 2 answers
- 0 votes
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
you need to design in vector
- 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
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