Posts

Showing posts from May, 2024

Mobile App Developement Technology Exam IMP Questions

 Mobile App Developement Technology Exam IMP Questions     1] Introduction of mobile computing 1) What is mobile computing? And Explain its Features. 2) What are the advantages of the mobile computing system? 3) What are the factors depending upon the developing mobile applications 4) Explain any 2 Mobile Operating System      2] Fundamental of Android Programming 1) What is Android and its features? 2)Explain Architectu re of the Android OS?   IMP 3) Explain Components of the Android?    3]  Android Activity, Intends and service 1) Explain Android Activity and its lifecycle. 2) What is Toast in android? 3) What is Intend and its types? 4) Explain Android service and its lifecycle?    4] Android UI Layouts and controls for GUI Design 1) What is View in Android? 2) Explain briefly Android View Group? 3) Explain Android UI Controls in brief?   IMP 4) Explain Android Styles and Themes?       5] Androi...

Full Stack Developement Practical Slips Programs

  Full Stack Developement Practical Slips Programs Slip 1 Create an HTML form for Login and write a JavaScript to validate email ID and Password using Regular Expression.  <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Login Form</title> <style>     /* Add some basic styling for the form */     body {         font-family: Arial, sans-serif;     }     form {         max-width: 300px;         margin: 0 auto;     }     input[type="text"],     input[type="password"],     input[type="submit"] {         width: 100%;         padding: 10px;         margin: 5px 0;         border: 1px solid #ccc;         box-siz...