Monday, 26 September 2016

CASE STUDY 6 : WESTSIDE BANK NIIT PDF ~ mkniit ~ gniitsolution

CASE STUDY 6 : WESTSIDE B...
Read More »

CASE STUDY 5 : SOUND & STAGE ENTERTAINMENT NIIT PDF ~ mkniit ~ gniitsolution

CASE STUDY 5 : SOUND & STAGE ENTERTAINM...
Read More »

CASE STUDY 4 : SUREVAC TECHNOLOGIES NIIT PDF ~ mkniit ~ gniitsolution

CASE STUDY 4 : SUREVAC TECHNOLOG...
Read More »

CASE STUDY 3 : SMART ACCESSORIES INC PDF ~ mkniit ~ gniitsolution

CASE STUDY 3 : SMART ACCESSORIES ...
Read More »

CASE STUDY 2 : RAINBOW ENTERTAINMENT NIIT PDF ~ mkniit ~ gniitsolution

CASE STUDY 2 : RAINBOW ENTERTAINM...
Read More »

CASE STUDY 1 : FAST LEARN NIIT PDF ~ mkniit ~ gniitsolution

CASE STUDY 1 : FAST LE...
Read More »

NIIT FAST LEARN PROJECT ~ mkniit ~ gniitsolution

FAST LEARN PROJ...
Read More »

ONLINE SHOPPING CART ASP.NET WEBFORM PROJECT ~ mkniit ~ gniitsolution

ONLINE SHOPPING CART PROJ...
Read More »

Sunday, 25 September 2016

CarrotCakeCMS (MVC) PROJECT ~ mkniit ~ gniitsolution

CarrotCakeCMS (MVC) PROJECT mkniit...
Read More »

ASP.NET MVC CHESS GAME PROJECT ~ mkniit ~ gniitsolution

ASP.NET MVC CHESS GAME PROJECT mkniit ...
Read More »

Love Percentage Calculator using PHP Project ~ mkniit

[PHP PROJECTS] LOVE PERCENTAGE USING PHP SOURCE CODE mkniit Love Percentage Calculator using PHP source code: This PHP project is used to calculate your love percentage. This code will provide you approximate values. Do not take this as a serious one. This simple project was developed for fun making purposes. Lovers can use this calculator for valuing their love. Users have to enter...
Read More »

Friday, 16 September 2016

WINDOWS APP LAB@HOME 10 ~mkniit

WINDOWS APP LAB@HOME...
Read More »

WINDOWS APP LAB@HOME 9 ~mkniit

WINDOWS APP LAB@HOME...
Read More »

WINDOWS APP LAB@HOME 8 ~mkniit

WINDOWS APP LAB@HOME...
Read More »

WINDOWS APP LAB@HOME 7 ~mkniit

WINDOWS APP LAB@HOME...
Read More »

WINDOWS APP LAB@HOME 6 ~mkniit

WINDOWS APP LAB@HOME...
Read More »

WINDOWS APP LAB@HOME 5 ~mkniit

WINDOWS APP LAB@HOME...
Read More »

WINDOWS APP LAB@HOME 4 ~mkniit

WINDOWS APP LAB@HOME...
Read More »

WINDOWS APP LAB@HOME 3 ~mkniit

WINDOWS APP LAB@HOME...
Read More »

WINDOWS APP LAB@HOME 2 ~mkniit

WINDOWS APP LAB@HOME...
Read More »

WINDOWS APP LAB@HOME 1 ~mkniit

WINDOWS APP LAB@HOME...
Read More »

Friday, 9 September 2016

SOFTWARE ENGINEERING OBJECTIVE MT SOLVED ~ mkniit

THERE ARE 57 QUESTIONS THE ANSWERS OF SELECTED QUESTIONS WERE MAY BE RIGHT OR WRONG SO TRY IT YOURSELF ...
Read More »

JEANS STATION PROJECT DOCUMENTATION ~mkniit

JEANS STATION PROJECT DOCUMENTATIO...
Read More »

Thursday, 8 September 2016

NIIT DUMPS ~ mkniit

SOFTWARE TRACK CFSV2 SEM A MT 1 (CFSV2) Click Here SEM A MT 2 (CFSV2) Click Here File:-1 = 1-50 questionsFile:-2 = 51-100 questi...
Read More »

Thursday, 1 September 2016

CORE JAVA CYCLE TEST 6 ~ mkniit

...
Read More »

CORE JAVA CYCLE TEST 3 ~ mkniit

Question's & Answer. ...
Read More »

CORE JAVA CYCLE TEST 2 ~ mkniit

Question's & Answer ...
Read More »

CORE JAVA CYCLE TEST 1 ~ mkniit

Question's & Answer:- ...
Read More »

CORE JAVA PMR 4

Question-1  Implement the Employee DAO Factory & JDBC  Answer:- package temp; public class EmployeeDAOFactory {           public static void main(String[] args){   EmployeeDAOJDBCImpl edji=new EmployeeDAOJDBCImpl();   edji.AddEmployee(1,"hita", "IT");   edji.AddEmployee(2, "meenal", "IT");   edji.AddEmployee(3, "deepika", "IT");   edji.AddEmployee(4, "aniket", "IT");   edji.AddEmployee(5,...
Read More »

CORE JAVA PMR 3

Question-1  Write a java program to check the URL. Answer:- import java.util.Scanner; import java.util.regex.Matcher; import java.util.regex.Pattern; class UrlChecker  {         public static void main(String[] args) {         Pattern Mypattern = Pattern.compile("^((https?|ftp)://|(www|ftp)\\.)[a-z0-9-]+(\\.[a-z0-9-]+[a-z]+)+([/?].*)?$");         Scanner input = new Scanner(System.in);  ...
Read More »

CORE JAVA PMR 2

Question-1  Area Abstraction.Answer:- import java.util.Scanner;   abstract class calcArea {     abstract void findTriangle(double b, double h);     abstract void findRectangle(double l, double b);     abstract void findSquare(double s);     abstract void findCircle(double r); }   class findArea extends calcArea {       void findTriangle(double b, double h)     {         double...
Read More »

CORE JAVA LAB@HOME 12

Question-1  Solve the Errors in the bank application.                                         1. Create a Java application. Chapter10_Exercise03.  2. Create a class. FileOperation. in the Java application. Chapter10_Exercise03.      3. Replace the existing code in the FileOperation.java file with the following code: Answer:- import java.io.BufferedReader; import...
Read More »

CORE JAVA LAB@HOME 11

Question-predict the output.Answer:- Animal ELEPHANT TIGER BUFFALO GIRAFFE LEOPARD Country...
Read More »

CORE JAVA LAB@HOME 10

Question-1 Accept the two number and perform the operation.Answer:- import java . util . Scanner; public class Divison {  public static void main (String args []) {      int num1, num2, result;   Scanner input = new Scanner (System . in);   System.out.println ("Enter the 1st number");   num1 = input . nextInt ()...
Read More »

CORE JAVA LAB@HOME 9

Question-1 Differentiate Between the checked and unchecked also write algorithm.Answer:- view sourceprint? 01 package com.javacodegeeks.snippets.basics; 02 03 import java.io.File; 04 import java.io.IOException; 05 06 07 public class CheckedUncheckedExceptions { 08 09 public static void main(String[] args) { 10 ...
Read More »

CORE JAVA LAB@HOME 8

Question-1 Accept the three letter an the display the matching lettter the user.Answer:- import java . util . Scanner; import java . util . regex . Matcher; imort java  . util . regex . Pattern;  public class TestRegx {  public static void main (String [] args) {  Scanner sc = new Scanner (System . in);  String input;  System.out..print ("Enter the string: ...
Read More »

CORE JAVA LAB@HOME 7

Question-1 Deque Object.Answer:-   The following answer are in the Image format. ...
Read More »

CORE JAVA LAB@HOME 6

Question-1 Create Interface write all step that would be followed.Answer:- 1 open the petcomposition project as the main project.  a select file > open project.  b browse t d:\labs\06-interfaces\practices.  c select petcomposition and select the "open as main project chek box.  d click the open project button. 2 expand the project diretories. 3 run the project. you should see output in the output window. 4 centralize all <name> functionality.  ...
Read More »