Search This Blog

Wednesday, 2 April 2025

Assignment II & Tutorial V on MAD

2 comments
 ASSIGNMENT II(12-04-2025)What are the three layers of J2ME?  Explain them briefly.List down the software required for developing MAD.  Which language do you prefer for MAD?  Justify.What are the three types of UI available for MIDlet programming.  Name the classes available for creating high-level UI.Give a brief note on Animations.Write a MIDlet program for drawing a rectangle on a Canvas.TUTORIAL V(15-04-2025)What ...
Continue reading →
Tuesday, 1 April 2025

What will be the Output of These Code Snippets?

0 comments
Q1: What will be the output of the program ? #include<stdio.h> void main() { int a[5] = {5, 1, 15, 20, 25}; int i, j, m; i = ++a[1]; j = a[1]++; m = a[i++]; printf("%d, %d, %d", i, j, m); } A) 3, 2, 15 B) 2, 3, 20 C) 2, 1, 15 D) 1, 2, ...
Continue reading →
Saturday, 22 March 2025

Case Studies on Mobile Application Development

0 comments
 Case Studies on MAD(07-04-2024) Case Study 1: Online Food Ordering SystemTraditional business of restaurants works in two different ways, one of them is dine-in and another being take away. Both the channels of restaurants are not enough to make good amount of business. With the advent of online systems, one of the idea was to reach out to customers through app or website. Major challenge came up during the brainstorming sessions with ...
Continue reading →
Sunday, 16 March 2025

Tutorial III & IV (MAD) Questions and Answers

0 comments
TUTORIAL III(24-03-2025)Question 1: Write notes on Intents.  Discuss briefly the two types of Intents available for application development in Android.Answer:Intents are a messaging system that allows Android components to request actions from other components.  They act as a facilitator, enabling communication between different parts of an Android application or even between different applications.Intents are used to start activities, ...
Continue reading →
Friday, 14 February 2025

Frequently Asked Questions (Set 1) on MAD

0 comments
 Set-1 of FAQ on Mobile Application Development30 MCQs on Mobile Application Development (Test Your Knowledge on MAD)Q1:  Discuss the Layered Architecture of Android OS.Android is an open-source software stack that includes the following stack of software components for the benefits of its users:an Operating Systemmiddlewarea set of API librarieskey mobile applicationsFigure: Android Application StackAndroid is made up of collection ...
Continue reading →