Showing posts with label GTU. Show all posts
Showing posts with label GTU. Show all posts

postheadericon 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

postheadericon 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


postheadericon GTU MCA Programming in JAVA - 4639302


GUJARAT TECHNOLOGICAL UNIVERSITY'S (GTU)
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.

postheadericon 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 ]

postheadericon GTU LAMP Question Bank


Programming with Linux, Apache, MySQL, and PHP (LAMP)

UNIT-1 Setting up Apache Web Server, MySQL and PHP Basics Apache Installation and Configuration


Chapter -3 Installing and Configuring MySQL

  1. Explain how to install Apache on LINUX/ UNIX?
  2. Explain apache configuration in detail.
  3. Explain Pre-directory configuration in detail.


postheadericon 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]

postheadericon 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


postheadericon GTU WTAD Old Question Paper


postheadericon 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;

postheadericon 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;

postheadericon 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;

postheadericon 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[];

postheadericon 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)
{

postheadericon 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.


postheadericon 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

Total Pageviews

© BipinRupadiya.com. Powered by Blogger.