Nov

29

MODEL PAPER JAVA (BCA-V)

Prepare all questions without any choice. Some of them will definitely be asked in your semester Exam either directly or indirectly.

Nov

29

JAVA SERVER PAGES (JSP)

Nov

29

JAVA SERVLET

Nov

29

UNIT-III (NETWORKING TOPIC)

Nov

19

// insfrm1.jsp

<html>
<body>
<form name=”f1″ method=”post” action=”dbins1.jsp”>
Roll No:<input type=”text” name=”rno”><br>
Student Name:<input type=”text” name=”snm”><br>
<input type=”submit” name=”s1″ Value=”Insert Record”>
</form>
</body>
</html>

 


//dbins1.jsp

<%@page import=”java.sql.*” %>
<%
String rno=request.getParameter(“rno”);
String snm=request.getParameter(“snm”);
try{
Class.forName(“com.mysql.jdbc.Driver”);
Connection con=DriverManager.getConnection(“jdbc:mysql://localhost:3306/sample”,”root”,””);
Statement stmt=con.createStatement();
String str=”insert into stud values(“+rno+”,'”+snm+”‘)”;
//out.println(str);
stmt.execute(str);
response.sendRedirect(“dbsel.jsp”);
//out.println(“Row inserted”);
}
catch(Exception e){
out.println(e);
}
%>


 

// dbsel.jsp

<%@page import=”java.sql.*” %>
<%
try{
Class.forName(“com.mysql.jdbc.Driver”);
Connection con=DriverManager.getConnection(“jdbc:mysql://localhost:3306/sample”,”root”,””);
Statement stmt=con.createStatement();
String str=”select * from stud order by rollno”;
//out.println(str);
ResultSet rs=stmt.executeQuery(str);
while(rs.next()){
out.print(rs.getString(“rollno”)+”—–“+rs.getString(“sname”)+”<br>”);
}
}
catch(Exception e){
out.println(e);
}
%>

Nov

30

DOWNLOAD OOPs INTRO in PHP

Nov

30

TECHNO-10

Sorreal Systems Pvt. Limited, New Delhi in association with School of Management Sciences, Varanasi has started a unique software development centre at the campus of SMS- Varanasi. As its first initiative, this centre has announced “Techno-10: Software Trainee Program” which will run under the banner of the LiveWire – Technical Club.

The aim of this program is to transform 10 software trainees as software engineers, equipped with the contemporary knowledge and tools of IT, who will be ready to be inducted in the IT industry. The key objectives of this programme are:

  1. To develop the analytical techno brain.
  2. To provide real time problem solving exposure using cutting edge technologies.
  3. To build up the ability to manage work pressure.
  4. To understand the SDLC process practically.

Who can join?

Only those students who are appearing MCA 5th Sem Exam and will move to MCA 6th Sem of any institution/ college.

Key benefits of the programs:

  1. Sharpen the technical skills
  2. Students will equip with solution of IT industry demand.
  3. Chance to work on real time environment.
  4. Deployment of projects on real time servers accessible from any nook and corner of world.
  5. Fulfill the MCA 6th sem student’s industrial project requirement.
  6. Chance to grab such opportunity in Varanasi.

How many seats?

Only 10 Software trainees’ seats

How to apply?

Interested students are required to fill the form

CLICK TO ENROLL IN TECHNO-10

What is selection process?

  • Candidates will appear in online examination (technical).
  • Short listed candidate will face interview round.
  • 10 final software trainees will be announced.

Important Dates:

Last Date to apply:                                          30th December 2018
Online Examination (Technical) Date:      13th January 2019
Interview Date:                                               13th January 2019
Final List Announcement:                            15th January 2019
TECHNO -10 Start Date:                               22nd January 2019

Venue of selection process & execution of TECHNO-10 Program:

Software Development Centre, Sorreal Systems at School of Management Sciences, Varanasi Campus

Program Fee:

INR 7,000/-

For Any Enquiry Contact:

Ram Gopal Gupta, Coordinator, LiveWire-Technical Club, SMS Varanasi.
9839424526
[email protected], [email protected]
Website: www.sorrealsystems.com, www.smsvaranasi.com

Techno-10 PDF DOWNLOAD

Nov

30

XML notes for MCA -III Sem (WT)

Unit-1 Note for MCA-III (WT)

Nov

28

PHP File Uploading (27.11.2018)

Nov

26

PHP DB Application with Session Handling (26.11.2018)

Nov

20

PHP MYSQL RECORD UPDATE AND DELETE (VERSION 2 & 3) DATED 20.11.2018

Nov

19

PHP MYSQL Code to Fetch Record from DB dated 17.11.2018

PHP MYSQL Code to Delete & Fetch Record from DB dated 17.11.2018

Nov

13

CLICK TO DOWNLOAD PHP Code for MYSQL DB Insert