Showing posts with label GTU. Show all posts
Showing posts with label GTU. Show all posts
RDBMS question bank as per GTU MCA new syllabus
Subject Name: Relational Database Management Systems (RDBMS)
Subject Code: 619404
Unit-1
1. Define following definitions
A.
Database, B. Data, C. Database Management System (DBMS), D. Database System
2. Draw Simplified database system environment diagram
and explain DBMS Functionality
3. Explain Main Characteristics of the Database Approach
4. Explain Types of Database Users in details
(1).
Actors on the scene
(2).
Actors behind the Scene
5. Explain advantages of the Database Approach
GTU MCA Programming in Python 4639304
GUJARAT TECHNOLOGICAL UNIVERSITY (GTU)
MASTERS IN COMPUTER APPLICATION (MCA)
Year – 2 (Semester – 3) (W.E.F. JULY 2018)
Programming in Python - 4639304
Unit-1 Introduction to Python: [ Download Lecture PPT ]
- The basic elements of Python,
- Objects, expressions and numerical Types, Variables and assignments, IDLE, Branching programs, Strings and Input, Iteration
- Structured Types, Mutability and Higher-order Functions:
- Tuples, Lists and Mutability, Functions as Objects, Strings, Tuples and Lists, Dictionaries
GTU MCA Programming in JAVA - 4639302
MASTERS IN COMPUTER APPLICATION (MCA)
Year – 2 (Semester - 3 ) (W.E.F. JULY 2018)
Programming in JAVA - 4639302
Unit I : Introduction to Java
Programming Platform,Java Buzzwords, overview of applet and internet, History of Java, common misconception about Java, The Java Programming Environment: installing JDK, using the command line tools, using IDE, Programming Structures in Java: data types, operators, working with Strings, working with Scanner class for input and output, control flow, big number and Arrays.
GTU Mobile Computing - 4649303 Practical Solution
GUJARAT TECHNOLOGICAL UNIVERSITY’S
Syllabus for Master of Computer Applications, 4th Semester
Subject Name: Mobile Computing (MC)
Subject Code: 4649303
With effective from academic year 2018-19
Practical Solution
1. Installing "Android Studio IDE" and "Android SDK" [ Download Example ]
2. Write your First Android App [ Download Example ]
Labels:
Android,
Android Example,
Android Programming,
GTU,
MCA,
Mobile Computing,
Practical Solutions
|
3
comments
GTU LAMP Question Bank
UNIT-1 Setting up Apache Web Server, MySQL and PHP Basics Apache Installation and Configuration
- Explain how to install Apache on LINUX/ UNIX?
- Explain apache configuration in detail.
- Explain Pre-directory configuration in detail.
GTU LAMP 3630010 Programming with Linux Apache MySQL and PHP
Subject Name: Programming with Linux, Apache, MySQL, and PHP (LAMP)
Subject Code: 3630010
UNIT-1 Setting up Apache Web Server, MySQL and PHP Basics Apache Installation and Configuration [DOWNLOAD PPT]
Subject Code: 3630010
UNIT-1 Setting up Apache Web Server, MySQL and PHP Basics Apache Installation and Configuration [DOWNLOAD PPT]
GTU Mobile Computing Important Questions
As per the request of all my students community, I have tried my best to arrange all the important GTU Question Papers's questions of Mobile Computing or Android subject of MCA (Master of Computer Application ) Semester 5, Gujarat Technological University. I have arrange all these question Unit wise as well as the GTU Academic Year wise in which those were asked in GTU examination.
GTU Mobile Computing Question Bank
One Time Pad Encryption Example using Java code
Write a programs to simulate encryption and decryption technique using One Time Pad, algorithm development and Communication between client and server should be done using Java server socket programming.
OneTimePad.java
package bsr;
import java.util.*;
import java.net.*;
import java.io.*;
/*A code from www.bipinrupadiya.com*/
public class OneTimePad
{
public String doEncryption(String s)
{
int i,j;
import java.util.*;
import java.net.*;
import java.io.*;
/*A code from www.bipinrupadiya.com*/
public class OneTimePad
{
public String doEncryption(String s)
{
int i,j;
S-Box Example using Java
Write a programs to simulate encryption and decryption technique using S-Box, algorithm development and Communication between client and server will be done using Java server socket programming.
SBOX.java
package bsr;
import java.util.*;
import java.net.*;
import java.io.*;
/*A code from www.bipinrupadiya.com*/
public class SBOX
{
public String doEncryption(String s)// throws Exception
{
int i,temp;
import java.util.*;
import java.net.*;
import java.io.*;
/*A code from www.bipinrupadiya.com*/
public class SBOX
{
public String doEncryption(String s)// throws Exception
{
int i,temp;
P-Box Example using Java
Write a programs to simulate encryption and decryption technique using P-Box, algorithm development and Communication between client and server will be done using Java server socket programming.
P-Box.java
package bsr;
import java.util.*;
import java.net.*;
import java.io.*;
/*A code from www.bipinrupadiya.com*/
public class PBOX
{
public String doEncryption(String s)
{
int i,temp;
import java.util.*;
import java.net.*;
import java.io.*;
/*A code from www.bipinrupadiya.com*/
public class PBOX
{
public String doEncryption(String s)
{
int i,temp;
Transposition cipher example using Java
Write a programs to simulate encryption and decryption technique using Transposition (Columnar) Cipher, algorithm development and Communication between client and server will be done using Java server socket programming.
TranspositionCipher.java
package bsr;
import java.util.*;
import java.net.*;
import java.io.*;
/*A code from www.bipinrupadiya.com*/
public class TranspositionCipher
{
public String selectedKey;
public char sortedKey[];
public int sortedKeyPos[];
import java.util.*;
import java.net.*;
import java.io.*;
/*A code from www.bipinrupadiya.com*/
public class TranspositionCipher
{
public String selectedKey;
public char sortedKey[];
public int sortedKeyPos[];
Mono-alphabetic Substitution Cipher example using Java
Write a programs to simulate encryption and decryption technique using Mono-alphabetic Substitution Cipher, algorithm development and Communication between client and server will be done using Java server socket programming.
MonoAlphabeticSubstitutionCipher.java
package bsr;
import java.util.*;
import java.net.*;
import java.io.*;
/*A code from www.bipinrupadiya.com*/
public class MonoAlphabeticSubstitutionCipher
{
public char p[] = {'a','b','c','d','e','f','g','h','i','j','k','l','m','n','o','p','q','r','s','t','u','v','w','x','y','z'};
public char ch[] = {'Q','W','E','R','T','Y','U','I','O','P','A','S','D','F','G','H','J','K','L','Z','X','C','V','B','N','M'};
public String doEncryption(String s)
{
import java.util.*;
import java.net.*;
import java.io.*;
/*A code from www.bipinrupadiya.com*/
public class MonoAlphabeticSubstitutionCipher
{
public char p[] = {'a','b','c','d','e','f','g','h','i','j','k','l','m','n','o','p','q','r','s','t','u','v','w','x','y','z'};
public char ch[] = {'Q','W','E','R','T','Y','U','I','O','P','A','S','D','F','G','H','J','K','L','Z','X','C','V','B','N','M'};
public String doEncryption(String s)
{
java socket programming example
In the era of network programming means write such a script
that can be executed on multiple computers / platform. In J2SE, a package
java.net provide the number of API that can be used to write code for the
communication between multiple computers / platforms. The java.net package of
J2SE provide the sport for two important protocol of the network that is TCP
and UDP.
The Socket in java provide the way of communication between
two or more computers using Transmission Control Protocol (TCP). Here we have socket on
both side at Client as well as server. A client socket try to communicate to
server socket. If everything is fine server accept the connection and
communication process begin.
Here I am going to demonstrate a simple example of server socket programming. I have created a java package bsr and my class that have the definition of socket MySocket.java is placed inside this package.
I have also created two more class to simulate the behavior of client and server namely sender and receiver. I used plain text editor to create my script.
GTU Mobile Computing - Android Result 2012-13
Hurray...!
By the grace of God we secured 100% result in the subject of
Mobile Computing (Android), continuously second time in Gujarat Technological
Exam [Sem-4] in year 2012-13.
I would like to extend thanks to all my students for their sincere
efforts.
Bipin Ruapdiya
Subscribe to:
Posts (Atom)
Subjects
- WordPress
- Mobile Computing-4649303 Practical Solution
- Android Programming New Syllabus Theory
- PHP LAMP Question Bank
- PHP LAMP Theory
- Step by Step Android Example
- Android Practical
- Android Theory
- Android Question Bank
- Networking FON Practical
- Networking FON Theory
- OS Practical
- OS Theory
- HTML
- JavaScript
- J2EE WTAD Theory
- J2EE WTAD Question Bank
- J2EE WTAD Quick Guide
- J2EE WTAD GTU Papers
- J2EE WTAD Practical
- Python
- JAVA Theory
- JAVA Practical
- MIS
Categories
- Android (55)
- CSS (3)
- Configure Tomcat7 (2)
- Decryption (16)
- Difference (1)
- Encryption (16)
- Error Detection and Correction Techniques (3)
- FON (27)
- Framing Technic (2)
- J2EE (29)
- JAVA (13)
- JavaScript (19)
- OS (17)
- PHP (11)
- Protocol (3)
- SERVER SOCKET PROGRAMING (7)
- Servlet (13)
- WTAD (34)
- c (11)
- install Tomcat (2)
- linux (8)
- shell script (33)
- unix (22)
Total Pageviews
© BipinRupadiya.com. Powered by Blogger.





