Saturday, 2 September 2017

Download Practice Pages

Download Practice Pages


Download the files and extract Practice Pages folder open the folder and copy all the pages and paste that all in your visual studio project.As shown in video

Friday, 1 September 2017

Download Admin Pages

Download Exam Pages

JavaScript Questions

Java script can be used for Storing the forms contents to a database file on the server


True   
False   
Both   
None of above    


2


``````````````````````````````````````````````````````````````````````````````````````````````````````


Java Script supports all boolean operators   


True   
False   
Both   
None of these   


2




``````````````````````````````````````````````````````````````````````````````````````````````````````
JavaScript ignores extra spaces   


True   
False   
Both   
None of these   


1




``````````````````````````````````````````````````````````````````````````````````````````````````````


Which machine actually executes the Java Script?   


The web server   
The machine which is running a web browser   
Java Script engine   
Both A and C   


2


``````````````````````````````````````````````````````````````````````````````````````````````````````


How does Java Script store dates in objects of Date type?   


The number of days since January 1st, 1900   
The number of seconds since January 1st, 1970   
The number of milliseconds since January 1st, 1970   
The number of picoseconds since January 1st, 1970   


3


``````````````````````````````````````````````````````````````````````````````````````````````````````


Which attribute needs to be changed to make elements invisible?   


visibilty   
visible   
invisibility   
invisible   


1


``````````````````````````````````````````````````````````````````````````````````````````````````````
Which of the following statements are false for Java script?   


JavaScript can react to events   
JavaScript can read and write HTML elements   
JavaScript cannot be used to create cookies   
Both b and c above   


3


``````````````````````````````````````````````````````````````````````````````````````````````````````


Why so Java and JavaScript have similar name?   


Java Script is a stripped-down version of Java   
The syntax of JavaScript is loosely based on Java syntax   
They both support Object Oriented Programming   
None of the above   


2


``````````````````````````````````````````````````````````````````````````````````````````````````````


Which of the following method is used to evaluate a string of Java Script code in the context of the specified object?   


Eval   
ParseDoule   
ParseObject   
Efloat   


1


``````````````````````````````````````````````````````````````````````````````````````````````````````
 What is the purpose of <noscript> tag in Java Script?   


Prevents scripts on the page from executing.
   
Enclose text to be displayed by non-JavaScript browsers    Suppresses the result to be displayed on the web page
   
None of the above   


2


``````````````````````````````````````````````````````````````````````````````````````````````````````
Which of the ways below is incorrect of instantiating a date?   


new Date(dateString)   
new Date()   
new Date(seconds)   
new Date(year, month, day, hours, minutes, seconds, milliseconds)   


3


``````````````````````````````````````````````````````````````````````````````````````````````````````
To insert a JavaScript into an HTML page, which tag is used?   


< script=java>   
< javascript>   
< script>   
< js>   


3


``````````````````````````````````````````````````````````````````````````````````````````````````````
What language defines the behavior of a web page?   


HTML   
CSS   
XML   
JAVA SCRIPT   


4


``````````````````````````````````````````````````````````````````````````````````````````````````````
Which of the following is correct to write Hello World on the web page?   


System.out.println(Hello World)   
print(“Hello World”)   
document.write(Hello World)   
response.write(Hello World)   


3


``````````````````````````````````````````````````````````````````````````````````````````````````````
What java wrapper type is created when a JavaScript object is sent to Java?   


ScriptObject   
JavaObject   
Jobject   
JSObject   


4


``````````````````````````````````````````````````````````````````````````````````````````````````````
File is a server-side JavaScript object?   


True   
False   
Both   
None of these   


1


``````````````````````````````````````````````````````````````````````````````````````````````````````
If we don’t want the script to write page content, under which HTML tag should the JS tag be placeD?   
< body>   
< head>   
Any of a and b above   
Both b and c above   


1


``````````````````````````````````````````````````````````````````````````````````````````````````````
Which of the following is a server-side Java Script object?   


Function   
File   
FileUpload   
Date   


2


``````````````````````````````````````````````````````````````````````````````````````````````````````
C-style block-level scoping is not supported in Java script   


True   
False   
Both   
None of these   


1


``````````````````````````````````````````````````````````````````````````````````````````````````````
Which of the following syntax is correct to refer an external script called formValidation.js?   


< script href = formValidation.js>   
< script source = formValidation.js>   
< script name = formValidation.js>   
< script src = formValidation.js>   


4


``````````````````````````````````````````````````````````````````````````````````````````````````````
Which of the following is used to capture all click events in a window?   


window.captureEvents(Event.CLICK);   
window.routeEvents(Event.CLICK );   
window.handleEvents (Event.CLICK);   
window.raiseEvents(Event.CLICK );   


1


``````````````````````````````````````````````````````````````````````````````````````````````````````


What is the alternate name for Java script?   


LimeScript   
Both a and d   
ECMScript   
ECMAScript   


4


``````````````````````````````````````````````````````````````````````````````````````````````````````
Which of the following statements are true for Java script?   


JavaScript is case sensitive   
JavaScript statements can be grouped together in blocks   
semicolon at the end of statement is mandatory   
Both a and b above   


4


``````````````````````````````````````````````````````````````````````````````````````````````````````
Is it possible to declare a variable in Javascript along its type?   


Yes   
No    
Both   
None of these   


2


``````````````````````````````````````````````````````````````````````````````````````````````````````
Java Script entities start with ____________ and end with ______________   


Semicolon, colon   
Semicolon, Ampersand   
Ampersand, colon   
Ampersand, semicolon   


4





































SQL QUestion

What type of join is needed when you wish to include rows that do not have matching values?


Equi-join   
Natural join    
Outer join   
All of the above.   


3


``````````````````````````````````````````````````````````````````````````````````````````````````````


What type of join is needed when you wish to return rows that do have matching values?   


Equi-join   
Natural join   
Outer join   
All of the above.
   
4


``````````````````````````````````````````````````````````````````````````````````````````````````````


Which of the following is true concerning a procedure?   


You do not create them with SQL.   
They do not need to have a unique name.   
They include procedural and SQL statements.   
They are the same thing as a function.   


1


``````````````````````````````````````````````````````````````````````````````````````````````````````
Which of the following is one of the basic approaches for joining tables?   


Subqueries   
Union Join   
Natural join   
All of the above   


4


``````````````````````````````````````````````````````````````````````````````````````````````````````
Which of the following is true concerning systems information in an RDBMS?
   
RDBMS store database definition information in system-created tables.   
This information can be accessed using SQL.   
This information often cannot be updated by a user.   
All of the above.


4


``````````````````````````````````````````````````````````````````````````````````````````````````````


Embedded SQL is which of the following?   


Hard-coded SQL statements in a program language such as Java.   
The process of making an application capable of generating specific SQL code on the fly.   
Hard-coded SQL statements in a procedure.   
Hard-coded SQL statements in a trigger.   


1


``````````````````````````````````````````````````````````````````````````````````````````````````````


A UNION query is which of the following?   


Combines the output from no more than two queries and must include the same number of columns.    Combines the output from no more than two queries and does not include the same number of columns.    Combines the output from multiple queries and must include the same number of columns.     
Combines the output from multiple queries and does not include the same number of columns.   


3


``````````````````````````````````````````````````````````````````````````````````````````````````````


Which of the following statements is true concerning subqueries?   


Involves the use of an inner and outer query.   
Cannot return the same result as a query that is not a subquery.   
Does not start with the word SELECT.   
All of the above.   


1


``````````````````````````````````````````````````````````````````````````````````````````````````````


Which of the following is a correlated subquery?     


Uses the result of an inner query to determine the processing of an outer query.   
Uses the result of an outer query to determine the processing of an inner query.   
Uses the result of an inner query to determine the processing of an inner query.   
Uses the result of an outer query to determine the processing of an outer query.   


2


``````````````````````````````````````````````````````````````````````````````````````````````````````


How many tables may be included with a join?   


one   
two   
three   
all   


4


``````````````````````````````````````````````````````````````````````````````````````````````````````


Which of the following is true concerning triggers?   


You do not create them with SQL.   
They execute against only some applications that access a database.   
They have an event, condition, and action.     
They cannot cascade (cause another trigger to fire).   


3
``````````````````````````````````````````````````````````````````````````````````````````````````````


The fact that the same operation may apply to two or more classes is called what?   


Inheritance   
Polymorphism   
Encapsulation   
Multiple classification   


2


``````````````````````````````````````````````````````````````````````````````````````````````````````


The object-oriented development life cycle is which of the following?   




Analysis, design, and implementation steps in the given order and using multiple iterations.    Analysis, design, and implementation steps in the given order and going through the steps no more than one time.
Analysis, design, and implementation steps in any order and using multiple iterations.    Analysis, design, and implementation steps in any order and going through the steps no more than one time.   
1


``````````````````````````````````````````````````````````````````````````````````````````````````````


Multiplicity is the same as what concept for an ERD?   


Relationship   
Attribute   
entity   
Cardinality   


4


``````````````````````````````````````````````````````````````````````````````````````````````````````


Composition is a stronger form of which of the following?   


Aggregation   
Encapsulation   
Inheritance   
all   


1


``````````````````````````````````````````````````````````````````````````````````````````````````````


An abstract class is which of the following?   


A class that has direct instances, but whose descendants may have direct instances.     
A class that has no direct instances, but whose descendants may have direct instances.   
A class that has direct instances, but whose descendants may not have direct instances.   
A class that has no direct instances, but whose descendants may not have direct instances   


2
``````````````````````````````````````````````````````````````````````````````````````````````````````


The term Complete for a UML has the same meaning as which of the following for an EER diagram?


Overlapping rule     
Disjoint rule   
Total specialization rule   
Partial specialization rule   


3


``````````````````````````````````````````````````````````````````````````````````````````````````````


A UML diagram includes which of the following?   


Class name   
List of attributes   
List of operations
All of the above.   


4


``````````````````````````````````````````````````````````````````````````````````````````````````````


An object can have which of the following multiplicities?     


Zero   
one   
More than one   
all   


4


``````````````````````````````````````````````````````````````````````````````````````````````````````


Which of the following statement is true concerning objects and/or classes?   


An object is an instance of a class.   
A class is an instance of an object.     
An object includes encapsulates only data.   
class includes encapsulates only data.   


1


``````````````````````````````````````````````````````````````````````````````````````````````````````


Which of the following applies to a class rather than an object?   


Query   
update   
scope   
constructor   


3


``````````````````````````````````````````````````````````````````````````````````````````````````````


The benefits of object-oriented modeling are which of the following?   


The ability to tackle more challenging problems   
Reusability of analysis, design, and programming results   
Improved communication between users, analysts, etc.     
All of the above.   


4


``````````````````````````````````````````````````````````````````````````````````````````````````````


The term Incomplete for a UML has the same meaning as which of the following for an EER diagram?   
Overlapping rule   
Disjoint rule   
Total specialization rule   
Partial specialization rule
   
4


``````````````````````````````````````````````````````````````````````````````````````````````````````


A constructor operation does which of the following?   


Creates a new instance of a class   
Updates an existing instance of a class   
Deletes and existing instance of a class   
All of the above.   


1


``````````````````````````````````````````````````````````````````````````````````````````````````````


Which of the following is a technique for hiding the internal implementation details of an object?   
Encapsulation   
Polymorphism   
Inheritance   
All of the above.   


1

Java Questions

Download JAVA Questions




Which one of these lists contains only Java programming language keywords?   


class, if, void, long, Int, continue   
goto, instanceof, native, finally, default, throws   
try, virtual, throw, final, volatile, transient   
strictfp, constant, super, implements, do   


2


```````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````
Which will legally declare, construct, and initialize an array?   


int [] myList = {1, 2, 3};   
int [] myList = (5, 8, 2);   
int myList [] [] = {4,9,7,0};   
int myList [] = {4, 3, 7};   


4


```````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````
Which is a reserved word in the Java programming language?   


method   
native   
subclasses   
reference   


2


``````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````
Which is a valid keyword in java?   


interface   
string   
Float   
unsigned   


1


````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````
Which is true about an anonymous inner class?   


It can extend exactly one class and implement exactly one interface   
It can extend exactly one class and can implement multiple interfaces.   
It can extend exactly one class or implement exactly one interface.   
It can implement multiple interfaces regardless of whether it also extends a class.   


3


`````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````
Which is true about a method-local inner class?   


It must be marked final.   
It can be marked abstract.   
It can be marked public.   
It can be marked static.   


2


``````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````
Which statement is true about a static nested class?   


You must have a reference to an instance of the enclosing class in order to instantiate it.   
It does not have access to nonstatic members of the enclosing class.   
It's variables and methods must be static.   
It must extend the enclosing class.   


2


``````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````
Which constructs an anonymous inner class instance?   


Runnable r = new Runnable() { };   
Runnable r = new Runnable(public void run() { });
Runnable r = new Runnable { public void run(){}}   
System.out.println(new Runnable() {public void run() { }});   


4


``````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````
You want subclasses in any package to have access to members of a superclass. Which is the most restrictive access that accomplishes this objective?   


public   
private   
protected   
transient   


3


``````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````


What is the most restrictive access modifier that will allow members of one class to have access to members of another class in the same package?   


public   
abstract   
protected   
default access   


4


`````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````


Which cause a compiler error?   


int[ ] scores = {3, 5, 7};   
int [ ][ ] scores = {2,7,6}, {9,3,45};   
String cats[ ] = {Fluffy, Spot, Zeus};   
boolean results[ ] = new boolean [] {true, false, true};   


2


````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````
You want a class to have access to members of another class in the same package. Which is the most restrictive access that accomplishes this objective?   


public   
private   
protected   
default access   


4


`````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````
Which one creates an instance of an array?   


int[ ] ia = new int[15];   
float fa = new float[20];   
char[ ] ca = Some String;   
int ia[ ] [ ] = { 4, 5, 6 }, { 1,2,3 };   


1


```````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````


Which of the following class level (nonlocal) variable declarations will not compile?   


protected int a;   
transient int b = 3;   
private synchronized int e;   
volatile int d;   


3


`````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````


What is the name of the method used to start a thread execution?   


init();   
start();   
run();   
resume();   


2


`````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````


Which cannot directly cause a thread to stop executing?   


Calling the SetPriority() method on a Thread object.
Calling notify() method on an object.   
Calling the wait() method on an object.   
Calling read() method on an InputStream object.   


2


```````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````


Which of the following will directly stop the execution of a Thread?   


wait();   
start();   
stop();   
main();   


1


```````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````
Which method registers a thread in a thread scheduler?   


run();   
construct();   
start();   
register();   


3


`````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````
Which of the following will not directly cause a thread to stop?   


notify()   
wait()   
InputStream access   
sleep()   


1


``````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````


Which class or interface defines the wait(), notify(),and notifyAll() methods?   


Object   
Thread   
Runnable   
Class   


1


````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````


Which of the following would compile without error?   


int a = Math.abs(-5);   
int b = Math.abs(5.0);   
int c = Math.abs(5.5F);   
int d = Math.abs(5L);   


1


````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````


Suppose that you would like to create an instance of a new Map that has an iteration order that is the same as the iteration order of an existing instance of a Map. Which concrete implementation of the Map interface should be used for the new instance?   


TreeMap   
HashMap   
LinkedHashMap   
The answer depends on the implementation of the existing instance.


3


```````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````
Which class does not override the equals() and hashCode() methods, inheriting them directly from class Object?   


java.lang.String   
java.lang.Double   
java.lang.StringBuffer   
java.lang.Character   


3


``````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````
Which collection class allows you to grow or shrink its size and provides indexed access to its elements, but whose methods are not synchronized?   


java.util.HashSet   
java.util.LinkedHashSet   
java.util.List   
java.util.ArrayList   


4


```````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````


You need to store elements in a collection that guarantees that no duplicates are stored and all elements can be accessed in natural order. Which interface provides that capability?   


java.util.Map   
java.util.Set   
java.util.List   
java.util.Collection   


2





C# Question

Download C# Questions




Which of the following utilities can be used to compile managed assemblies into processor-specific native code?


gacutil
ngen
sn
dumpbin


2


```````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````
Which of the following components of the .NET framework provide an extensible set of classes that can be used by any .NET compliant programming language?


.NET class libraries
Common Language Runtime
Common Language Infrastructure
Component Object Model


1


````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````
Which of the following .NET components can be used to remove unused references from the managed heap?


Common Language Infrastructure
CLR
Garbage Collector
Class Loader


3


````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````
Which of the following assemblies can be stored in Global Assembly Cache?  


Private Assemblies  
Friend Assemblies
Shared Assemblies  
Public Assemblies  


3
``````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````
Code that targets the Common Language Runtime is known as  


Unmanaged  
Native Code  
Legacy  
Managed Code  


4
``````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````


Which of the following is NOT an Arithmetic operator in C#.NET?  


**  
+  
/  
%  


1
``````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````
Which of the following is NOT a Bitwise operator in C#.NET?  


&   
|    
<<  
^  


3
```````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````
Which of the following is the correct output for the C#.NET code snippet given below? Console.WriteLine(13 / 2 +  + 13 % 2);    


6.5 1  
6.5 0  
6 0  
6 1  


4
``````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````
Which of the following statements is correct?  


A constructor can be used to set default values and limit instantiation.  
C# provides a copy constructor.  
Destructors are used with classes as well as structures.  
A class can have more than one destructor.  


1
````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````
Which of the following statements is correct about constructors?  


If we provide a one-argument constructor then the compiler still provides a zero-argument constructor  
Static constructors can use optional arguments.
Overloaded constructors cannot use optional arguments.
If we do not provide a constructor, then the compiler provides a zero-argument constructor  


4
``````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````
How many times can a constructor be called during lifetime of the object?  


As many times as we call it.  
Only once.  
Depends upon a Project Setting made in Visual Studio.NET.  
Any number of times before the object gets garbage collected.  


2


`````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````
If s1 and s2 are references to two strings, then which of the following is the correct way to compare the two references?  


s1 is s2
s1 = s2  
s1 == s2  
s1.Equals(s2)  


4


````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````
Which of the following statements is correct about properties used in C#.NET?  


A property can simultaneously be read only or write only.  
A property can be either read only or write only.
A write only property will have only get accessor.  
A write only property will always return a value.  


2


`````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````


Which of the following statements is correct about properties used in C#.NET?  


Every property must have a set accessor and a get accessor.  
Properties cannot be overloaded.  
Properties of a class are actually methods that work like data members.  
A property has to be either read only or a write only.  


3


`````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````
Which of the following keyword is used to change the data and behavior of a base class by replacing a member of a base class with a new derived member?  


new  
base  
override  
overloads  


1


``````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````


Which of the following statements is correct?  
When used as a modifier, the new keyword explicitly hides a member inherited from a base class.  
Operator overloading works in different ways for structures and classes.  
It is not necessary that all operator overloads are static methods of the class.  
The cast operator can be overloaded.  


1


````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````


Which of the following keyword is used to overload user-defined types by defining static member functions?  


op  
opoverload  
operator  
operatoroverload   


3


`````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````


Which of the following statements is incorrect about delegate?  


Delegates are reference types.  
Delegates are object oriented.     
Delegates serve the same purpose as function pointers in C and pointers to member function operators in C++.  
Only one method can be called using a delegate.


4


```````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````


Which of the following is the necessary condition for implementing delegates?  


Class declaration  
Inheritance  
Run-time Polymorphism   
Exceptions  


1


```````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````


Which of the following statements are correct about delegates?  


Delegates cannot be used to call a static method of a class.  
Delegates cannot be used to call procedures that receive variable number of arguments.  
If signatures of two methods are same they can be called through the same delegate object.    
Delegates cannot be used to call an instance function. Delegates cannot be used to call an instance subroutine.  


2


``````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````


Suppose on pushing a button an object is to be notified, but it is not known until runtime which object should be notified. Which of the following programming constructs should be used to implement this idea?    


Attribute  
Delegate  
Namespace  
Interface  


2


`````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````


Which of the following is an 8-byte Integer?   


Char  
Long  
Short  
Byte  


2


```````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````
Which of the following is NOT an Integer?  


Char  
Byte  
Integer   
Short  


1


``````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````
Which of the following statements is correct?  


Information is never lost during narrowing conversions.
The CInteger() function can be used to convert a Single to an Integer.  
Widening conversions take place automatically.  
Assigning an Integer to an Object type is known as Unboxing.  


3

C++ Question

Download C++ Questions




Which of the following type of class allows only one object of it to be created?


Virtual class
Abstract class
Singleton class
Friend class


3


```````````````````````````````````````````````````````````````````````````````````````````````````````
Which of the following is not a type of constructor?


Copy constructor
Copy constructor
Default constructor
Parameterized constructor


2


````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````
Which of the following statements is correct?


Base class pointer cannot point to derived class.
Derived class pointer cannot point to base class.
Pointer to derived class cannot be created.
Pointer to base class cannot be created.


2


``````````````````````````````````````````````````````````````````````````````````````````````````````````````


Which of the following is not the member of class?


Static function
Friend function
Const function
Virtual function


2
`````````````````````````````````````````````````````````````````````````````````````````````````````````````````
Which of the following concepts means determining at runtime what method to invoke?


Data hiding
Dynamic Typing
Dynamic binding
Dynamic loading


3
``````````````````````````````````````````````````````````````````````````````````````````````````````````````````````
Which of the following statements is incorrect?


Friend keyword can be used in the class to allow access to another class.
Friend keyword can be used for a function in the public section of a class.
Friend keyword can be used for a function in the private section of a class.
Friend keyword can be used on main().


4
````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````
Which of the following statement is correct regarding destructor of base class?   


Destructor of base class should always be static.
Destructor of base class should always be virtual.
Destructor of base class should not be virtual.
Destructor of base class should always be private.


2
````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````
Which of the following two entities (reading from Left to Right) can be connected by the dot operator?


A class member and a class object.
A class object and a class.
A class and a member of that class.
A class object and a member of that class.


4
`````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````
How can we make a class abstract?


By making all member functions constant.
By making at least one member function as pure virtual function.
By declaring it abstract using the static keyword.
By declaring it abstract using the virtual keyword.


4


````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````


Which of the following statement is correct?


C++ enables to define functions that take constants as an argument.
We cannot change the argument of the function that that are declared as constant.
Both A and B.
We cannot use the constant while defining the function.


3


``````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````
Which of the following statement is correct?


Overloaded functions can have at most one default argument.
An overloaded function cannot have default argument.
Overloaded function must have default arguments starting from the left of argument list.
A function if overloaded more than once cannot have default argument


3


````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````


Which of the following statement is correct?


Two functions having same number of argument, order and type of argument can be overloaded if both functions do not have any default argument.
Overloaded function must have default arguments.
Overloaded function must have default arguments starting from the left of argument list.
A function can be overloaded more than once.


4
``````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````
Which of the following statement will be correct if the function has three arguments passed to it?


The trailing argument will be the default argument.
The first argument will be the default argument.
The middle argument will be the default argument.
All the argument will be the default argument.


1
```````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````
A constructor that accepts __________ parameters is called the default constructor.


one
two
no
three


`````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````
What happens when a class with parameterized constructors and having no default constructor is used in a program and we create an object that needs a zero-argument constructor?


Compile-time error.
Runtime error.
Runtime error.
Preprocessing error.


1
````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````
Destructor has the same name as the constructor and it is preceded by ______


!
?
`
$


3
````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````
For automatic objects, constructors and destructors are called each time the objects


enter and leave scope
inherit parent class
are constructed
are destroyed


1
``````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````


Which of the following statement is correct?


A reference is stored on heap
A reference is stored on stack
A reference is stored in a queue.
A reference is stored in a binary tree.


2
```````````````````````````````````````````````````````````````````````````````````````````````````````````````````


Which of the following statement is correct about the references?


A reference must always be initialized within functions.
A reference must always be initialized outside all functions.
A reference must always be initialized.
Both A and C


3


``````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````


A reference is declared using the _____ symbol.




&&
&
||
!


2


``````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````


Which of the following statement is correct?


Once a reference variable has been defined to refer to a particular variable it can refer to any other variable.
A reference is indicated by using && operator.
Once a reference variable has been defined to refer to a particular variable it cannot refer to any other variable.
A reference can be declared beforehand and initialized later.


3


```````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````
Which of the following statement is correct?


A referenced has to be de-referenced to access a value
A referenced does not need to be de-referenced to access a value
A referenced has to be double de-referenced to access a value
Whether a reference should be de-referenced or not depends on the type of the reference


2


```````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````


Reference is like a _____.


Pointer
Structure
Macro
Enum


1


```````````````````````````````````````````````````````````````````````````````````````````````````````````````````
Which of the following statement is correct?


A reference is a constant pointer.
A reference is not a constant pointer.
An array of references is acceptable.
It is possible to create a reference to a reference.


1


````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````
Which of the following statement is correct?


A reference is declared using * operator.
Once a reference variable has been defined to refer to a particular variable it can refer to any other variable.
A reference must always be initialized within classes.
A variable can have multiple references.


4


````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````


Which of the following statement is correct?


An array of references is acceptable.
Once a reference variable has been defined to refer to a particular variable it can refer to any other variable.
An array of references is not acceptable.
Reference is like a structure.


3

C Question



Download C question text file








Which of the following statements should be used to obtain a remainder after dividing 3.14 by 2.1 ?


rem = 3.14 % 2.1;
rem = modf(3.14, 2.1);
rem = fmod(3.14, 2.1);
Remainder cannot be obtain in floating point division.


3
`````````````````````````````````````````````````````````````````````````````````````````````````````````````````````
What are the types of linkages?


Internal and External
External, Internal and None
External and None
Internal


2
`````````````````````````````````````````````````````````````````````````````````````````````
Which of the following special symbol allowed in a variable name?


* (asterisk)
| (pipeline)
- (hyphen)
_ (underscore)


4
`````````````````````````````````````````````````````````````````````````````````````````````````````````````````````


How would you round off a value from 1.66 to 2.0?


ceil(1.66)
floor(1.66)
roundup(1.66)
roundto(1.66)


1
````````````````````````````````````````````````````````````````````````````````````````````````
What are the different types of real data type in C ?




float, double
short int, double, long int
float, double, long double
double, long int, float


3
```````````````````````````````````````````````````````````````````````````````````````````````````````````````````````
What will you do to treat the constant 3.14 as a long double?


use 3.14LD
use 3.14L
use 3.14DL
use 3.14LF


2
``````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````


What is (void*)0?


Representation of NULL pointer
Representation of void pointer
Error
None of above


1
````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````


In which header file is the NULL macro defined?


stdio.h
stddef.h
stdio.h and stddef.h
math.h


3


``````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````
How many bytes are occupied by near, far and huge pointers (DOS)?




near=2 far=4 huge=4
near=4 far=8 huge=8
near=2 far=4 huge=8
near=4 far=4 huge=8


1
`````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````


If a variable is a pointer to a structure, then which of the following operator is used to access data members of the structure through the pointer variable?


.
&
*
->


4


````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````


How will you free the allocated memory ?


remove(var-name);
free(var-name);
delete(var-name);
dalloc(var-name);


2
``````````````````````````````````````````````````````````````````````````````````````````````````````````````````


What is the similarity between a structure, union and enumeration?


All of them let you define new values
All of them let you define new data types
All of them let you define new pointers
All of them let you define new structures


2
`````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````
In which numbering system can the binary number 1011011111000101 be easily converted to?


Decimal system
Hexadecimal system
Octal system
No need to convert


2
````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````


Which bitwise operator is suitable for turning off a particular bit in a number?


&& operator
& operator
|| operator
! operator


2


```````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````
Which header file should be included to use functions like malloc() and calloc()?


memory.h
stdlib.h
string.h
dos.h


2


``````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````
What function should be used to free the memory allocated by calloc() ?


strnchar()
strchar()
strrchar()
strrchr()


4


```````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````
What is stderr ?


standard error
standard error types
standard error streams
standard error definitions


3


```````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````
In mathematics and computer programming, which is the correct order of mathematical operators ?


Addition, Subtraction, Multiplication, Division
Addition, Subtraction, Multiplication, Division
Multiplication, Addition, Division, Subtraction
Addition, Division, Modulus, Subtraction


2


`````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````
Which of the following cannot be checked in a switch-case statement?


Character
Integer
Float
Enum


3


`````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````
The keyword used to transfer control from a function back to the calling function is


switch
goto
go back
return


4


`````````````````````````````````````````````````````````````````````````````````````````````````


What will happen if in a C program you assign a value to an array element whose subscript exceeds the size of array?


The element will be set to 0.
The compiler would report an error.
The program may crash if some important data gets overwritten
The array size would appropriately grow.


3

SignIn.aspx.cs

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Data;
using System.Configuration;
using System.Data.SqlClient;

public partial class SignIn : System.Web.UI.Page
{
    string strConnString = ConfigurationManager.ConnectionStrings["ConnectionString"].ConnectionString;


    string str, email, password;

    SqlCommand com;

    SqlDataAdapter sqlda;

    DataTable dt;

    int RowCount;
    protected void Page_Load(object sender, EventArgs e)
    {

    }
    protected void Button1_Click(object sender, EventArgs e)
    {
        SqlConnection con = new SqlConnection(strConnString);

        con.Open();

        str = "Select * from Registration";

        com = new SqlCommand(str);

        sqlda = new SqlDataAdapter(com.CommandText, con);

        dt = new DataTable();

        sqlda.Fill(dt);

        RowCount = dt.Rows.Count;

        for (int i = 0; i < RowCount; i++)
        {

            email = dt.Rows[i]["Email"].ToString();

            password = dt.Rows[i]["Password"].ToString();

            if (email == emailid.Text && password == lpassword.Text)
            {

                Session["emailid"] = email;

                if (dt.Rows[i]["role"].ToString() == "Admin")

                    Response.Redirect("Admin.aspx");

                else

                    Response.Redirect("HOME2.aspx");

            }

            else
            {

                Label1.Text = "Invalid User Name or Password! Please try again!";

            }

        }
        con.Close();
       
    }
}

SignIn.aspx

<%@ Page Title="" Language="C#" MasterPageFile="~/MasterPage.master" AutoEventWireup="true" CodeFile="SignIn.aspx.cs" Inherits="SignIn" %>



<asp:Content ID="Content1" ContentPlaceHolderID="title" Runat="Server">
SignIn
</asp:Content>
<asp:Content ID="Content2" ContentPlaceHolderID="head" Runat="Server">

    <style type="text/css">
body {
background-color: #f4f4f4;
color: #5a5656;
font-family: 'Open Sans', Arial, Helvetica, sans-serif;
font-size: 16px;
line-height: 1.5em;
}
#a1
{
    font-size:x-large;
}
a { text-decoration: none; }
h1 { font-size: 1em; }
h1, p {
margin-bottom: 10px;
}
strong {
font-weight: bold;
}
.uppercase { text-transform: uppercase; }

/* ---------- LOGIN ---------- */
#login {
margin: 50px auto;
width: 300px;
}
form fieldset input[type="text"], input[type="password"] {
background-color: #e5e5e5;
border: none;
border-radius: 3px;
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
color: #5a5656;
font-family: 'Open Sans', Arial, Helvetica, sans-serif;
font-size: 14px;
height: 50px;
outline: none;
padding: 0px 10px;
width: 280px;
-webkit-appearance:none;
}

form fieldset input[type="submit"] {
background-color: #008dde;
border: none;
border-radius: 3px;
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
color: #f4f4f4;
cursor: pointer;
font-family: 'Open Sans', Arial, Helvetica, sans-serif;
height: 50px;
text-transform: uppercase;
width: 280px;
-webkit-appearance:none;
}
form fieldset a {
color: #5a5656;
font-size: 10px;
}

h1
{
    color:Black;
}
</style>

</asp:Content>



<asp:Content ID="Content3" ContentPlaceHolderID="body" Runat="Server">

    <div id="login">
<h1><strong>Welcome.</strong> Please login.</h1>
  
<fieldset> 
Email ID:<br /><br />
<asp:TextBox ID="emailid" runat="server" ControlToValidate="emailid"></asp:TextBox>
    <asp:RequiredFieldValidator ID="RequiredFieldValidator2" runat="server"
        ErrorMessage="*" ControlToValidate="emailid" ForeColor="Red"></asp:RequiredFieldValidator>
    <asp:RegularExpressionValidator ID="RegularExpressionValidator1" runat="server"
        ErrorMessage="email format:abc@xyz.com" ControlToValidate="emailid"
        ForeColor="Red"
        ValidationExpression="\w+([-+.']\w+)*@\w+([-.]\w+)*\.\w+([-.]\w+)*"></asp:RegularExpressionValidator>

   <br /><br />
   Password:<br /><br /><asp:TextBox ID="lpassword" runat="server" TextMode="Password"></asp:TextBox>
    <asp:RequiredFieldValidator ID="RequiredFieldValidator1" runat="server"
        ErrorMessage="*" ControlToValidate="lpassword" ForeColor="Red"></asp:RequiredFieldValidator>
<p><a href="ForgotPassword.aspx">Forgot Password?</a></p>
    <p>
    <asp:Label ID="Label1" runat="server" ForeColor="#FF3300"></asp:Label>
    </p>


    <asp:Button ID="Button1" runat="server" Text="Login" onclick="Button1_Click"  />
    <br /><br />
   
  <p>New User? click Here for</p> <h1> <a href="Registration.aspx" id="a1"> SignUP </a></h1>
   
</fieldset><br />
    <br />
    <br />
&nbsp;
</div>


</asp:Content>

Registration.aspx.cs

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Data.SqlClient;
using System.Data.Sql;
using System.Data;
using System.Configuration;

public partial class Registration : System.Web.UI.Page
{

    SqlConnection con = new SqlConnection(System.Configuration.ConfigurationManager.ConnectionStrings["ConnectionString"].ToString());
    protected void Page_Load(object sender, EventArgs e)
    {
       
    }
    protected void Button2_Click(object sender, EventArgs e)
    {
     
        con.Open();
        SqlCommand cmd = con.CreateCommand();
        cmd.CommandType = CommandType.Text;
        cmd.CommandText = "insert into Registration values('" + name.Text + "','" + email.Text + "','" + mobile.Text + "','" + password.Text + "' ,'" + user_type.Text + "')";
        cmd.ExecuteNonQuery();
       
        con.Close();

        Response.Redirect("SignIn.aspx");
    }
}

Registration.aspx

<%@ Page Title="" Language="C#" MasterPageFile="~/MasterPage.master" AutoEventWireup="true" CodeFile="Registration.aspx.cs" Inherits="Registration" %>



<asp:Content ID="Content1" ContentPlaceHolderID="title" Runat="Server">
Registration
</asp:Content>
<asp:Content ID="Content2" ContentPlaceHolderID="head" Runat="Server">

 <style type="text/css">
body {
background-color: #f4f4f4;
color: #5a5656;
font-family: 'Open Sans', Arial, Helvetica, sans-serif;
font-size: 16px;
line-height: 1.5em;
}
a { text-decoration: none; }
h1 { font-size: 1em; }
h1, p {
margin-bottom: 10px;
}
strong {
font-weight: bold;
}
.uppercase { text-transform: uppercase; }

/* ---------- LOGIN ---------- */
#login {
margin: 50px auto;
width: 300px;
}
form fieldset input[type="text"], input[type="password"] {
background-color: #e5e5e5;
border: none;
border-radius: 3px;
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
color: #5a5656;
font-family: 'Open Sans', Arial, Helvetica, sans-serif;
font-size: 14px;
height: 50px;
outline: none;
padding: 0px 10px;
width: 280px;
-webkit-appearance:none;
}

form fieldset input[type="submit"] {
background-color: #008dde;
border: none;
border-radius: 3px;
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
color: #f4f4f4;
cursor: pointer;
font-family: 'Open Sans', Arial, Helvetica, sans-serif;
height: 50px;
text-transform: uppercase;
width: 280px;
-webkit-appearance:none;
}
form fieldset a {
color: #5a5656;
font-size: 10px;
}

h1
{
    color:Black;
}
</style>

</asp:Content>
<asp:Content ID="Content3" ContentPlaceHolderID="body" Runat="Server">

   
<div id="login">
<h1><strong>Welcome.</strong> Please Enter the following details.</h1><br />
  
<fieldset>
Full Name:<br /><br />
  <asp:TextBox ID="name" runat="server"></asp:TextBox>
   <asp:RequiredFieldValidator ID="RequiredFieldValidator1" ForeColor="Red" runat="server" ErrorMessage="*" ControlToValidate="name"></asp:RequiredFieldValidator>
   
    <br /><br />
    Email Id:<br /><br /><asp:TextBox ID="email" runat="server"></asp:TextBox>
    <asp:RequiredFieldValidator ID="RequiredFieldValidator2" ForeColor="Red" runat="server" ErrorMessage="*" ControlToValidate="email"></asp:RequiredFieldValidator>

 <br />
    <asp:RegularExpressionValidator ID="RegularExpressionValidator1" runat="server"
        ControlToValidate="email" ErrorMessage="Email format should be:abc@xyz.com"
        ForeColor="Red"
        ValidationExpression="\w+([-+.']\w+)*@\w+([-.]\w+)*\.\w+([-.]\w+)*"></asp:RegularExpressionValidator>
    <br />
 Mobile Number:<br /><br /><asp:TextBox ID="mobile" runat="server"></asp:TextBox>
    <asp:RequiredFieldValidator ID="RequiredFieldValidator3" ForeColor="Red" runat="server" ErrorMessage="*" ControlToValidate="mobile"></asp:RequiredFieldValidator>


   <br /><br />
   Password:<br /><br /><asp:TextBox ID="password" runat="server" TextMode="Password"></asp:TextBox>
    <asp:RequiredFieldValidator ID="RequiredFieldValidator4" ForeColor="Red" runat="server" ErrorMessage="*" ControlToValidate="password"></asp:RequiredFieldValidator>
     Confirm Password:<br /><br /> <asp:TextBox ID="cpassword" runat="server" TextMode="Password"></asp:TextBox>
    <asp:RequiredFieldValidator ID="RequiredFieldValidator5" ForeColor="Red" runat="server" ErrorMessage="*" ControlToValidate="cpassword"></asp:RequiredFieldValidator>
        <asp:CompareValidator ID="CompareValidator1" runat="server"
        ErrorMessage="Password is not matching" ControlToCompare="cpassword"
        ControlToValidate="password" ForeColor="Red"></asp:CompareValidator>

   
      <br /><br />
  <asp:TextBox ID="user_type" runat="server" Enabled="False" ForeColor="Green"
        Visible="False">Normal User</asp:TextBox>
   <asp:RequiredFieldValidator ID="RequiredFieldValidator6" ForeColor="Red" runat="server" ErrorMessage="*" ControlToValidate="user_type"></asp:RequiredFieldValidator>
   
    <br /><br />
    <asp:Button ID="Button2" runat="server" Text="Sign Up"
        onclick="Button2_Click" />
</fieldset><br />
    <br />
    <br />
    <asp:Label ID="Label1" runat="server" Text=""></asp:Label>
</div>

</asp:Content>

Download static pages

Download Pages


Download Pages and copy it to your project in visual studio

Home2.aspx

<%@ Page Title="" Language="C#" MasterPageFile="~/MasterPage2.master" AutoEventWireup="true" CodeFile="Home2.aspx.cs" Inherits="Home2" %>



<asp:Content ID="Content1" ContentPlaceHolderID="title" runat="Server">
    Home
</asp:Content>
<asp:Content ID="Content2" ContentPlaceHolderID="head" runat="Server">
    <%-- ------ CSS ------ --%>
    <link href="css/bootstrap.min.css" rel="stylesheet" type="text/css" />
    <link href="css/font-awesome.min.css" rel="stylesheet" type="text/css" />
    <link href="css/animate.min.css" rel="stylesheet" type="text/css" />
    <link href="css/prettyPhoto.css" rel="stylesheet" type="text/css" />
    <link href="css/main.css" rel="stylesheet" type="text/css" />
    <link href="css/responsive.css" rel="stylesheet" type="text/css" />
    <link href="http://maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css"
        rel="stylesheet" type="text/css" />



    <!--<if lt IE 9>>
    <script src="js/html5shiv.js"></script>
    <script src="js/respond.min.js"></script>
    <!<endif>-->
    <script src="js/jquery.js" type="text/javascript"></script>
    <script src="js/bootstrap.min.js" type="text/javascript"></script>
    <script src="js/jquery.prettyPhoto.js" type="text/javascript"></script>
    <script src="js/jquery.isotope.min.js" type="text/javascript"></script>
    <script src="js/main.js" type="text/javascript"></script>
    <script src="js/wow.min.js" type="text/javascript"></script>
    <style type="text/css">
    .aboutSection
    {
        background-color:Silver;
    }
    .img
    {
        height:100px;
        width:100px;
        right:400px;
    }
    #p1
    {
        height:70px;
    }
        .style1
        {
            left: 0px;
            top: 0px;
        }
    </style>

</asp:Content>
<asp:Content ID="Content3" ContentPlaceHolderID="body" Runat="Server">



  <section id="main-slider" class="no-margin">
        <div class="carousel slide" data-ride="carousel">
            <ol class="carousel-indicators">
                <li data-target="#main-slider" data-slide-to="0" class="active"></li>
                <li data-target="#main-slider" data-slide-to="1"></li>
                <li data-target="#main-slider" data-slide-to="2"></li>
                <li data-target="#main-slider" data-slide-to="3"></li>
                <li data-target="#main-slider" data-slide-to="4"></li>
                <li data-target="#main-slider" data-slide-to="5"></li>
            </ol>
            <div class="carousel-inner">

                <div class="item active" style="background-image: url(images/slider/bg1.jpg)">
                    <div class="container">
                        <div class="row slide-margin">
                            <div class="col-sm-6">
                                <div class="carousel-content">
                                    <h1 class="animation animated-item-1">What is C Programming?</h1>
                                    <h2 class="animation animated-item-2">C was originally developed by Dennis Ritchie between 1969 and 1973 at Bell Labs,and used to re-implement the Unix operating system.It has since become one of the most widely used programming languages of all time.Unix was one of the first operating system kernels implemented in a language other than assembly.</h2>
                                    <a class="btn-slide animation animated-item-3" href="InfoC.aspx">Read More</a>
                                </div>
                            </div>

                            <div class="col-sm-6 hidden-xs animation animated-item-4">
                                <div class="slider-img">
                                    <img src="images/slider/C.png" class="img-responsive">
                                </div>
                            </div>

                        </div>
                    </div>
                </div><!--/.item-->

                <div class="item" style="background-image: url(images/slider/bg2.jpg)">
                    <div class="container">
                        <div class="row slide-margin">
                            <div class="col-sm-6">
                                <div class="carousel-content">
                                    <h1 class="animation animated-item-1">What is C++?</h1>
                                    <h2 class="animation animated-item-2">C++ is a general-purpose programming language. It has imperative, object-oriented and generic programming features, while also providing facilities for low-level memory manipulation.</h2>
                                    <a class="btn-slide animation animated-item-3" href="InfoC++.aspx">Read More</a>
                                </div>
                            </div>

                            <div class="col-sm-6 hidden-xs animation animated-item-4">
                                <div class="slider-img">
                                    <img src="images/slider/Cpp.png" class="img-responsive">
                                </div>
                            </div>

                        </div>
                    </div>
                </div><!--/.item-->

                <div class="item" style="background-image: url(images/slider/bg3.jpg)">
                    <div class="container">
                        <div class="row slide-margin">
                            <div class="col-sm-6">
                                <div class="carousel-content">
                                    <h1 class="animation animated-item-1">What is Java?</h1>
                                    <h2 class="animation animated-item-2">Java is a general-purpose computer programming language that is concurrent, class-based, object-oriented, and specifically designed to have as few implementation dependencies as possible. It is intended to let application developers "write once, run anywhere" (WORA)</h2>
                                    <a class="btn-slide animation animated-item-3" href="InfoJava.aspx">Read More</a>
                                </div>
                            </div>
                            <div class="col-sm-6 hidden-xs animation animated-item-4">
                                <div class="slider-img">
                                    <img src="images/slider/java.png" class="img-responsive">
                                </div>
                            </div>
                        </div>
                    </div>
                </div><!--/.item-->


               
                <div class="item" style="background-image: url(images/slider/sbgimg4.jpg)">
                    <div class="container">
                        <div class="row slide-margin">
                            <div class="col-sm-6">
                                <div class="carousel-content">
                                    <h1 class="animation animated-item-1">What is JavaScript?</h1>
                                    <h2 class="animation animated-item-2">JavaScript is a high-level, dynamic, untyped, and interpreted programming language.It has been standardized in the ECMAScript language specification.Alongside HTML and CSS, JavaScript is one of the three core technologies of World Wide Web content production, the majority of websites employ it.</h2>
                                    <a class="btn-slide animation animated-item-3" href="InfoJavaScript.aspx">Read More</a>
                                </div>
                            </div>

                            <div class="col-sm-6 hidden-xs animation animated-item-4">
                                <div class="slider-img">
                                    <img src="images/slider/Javascript.png" class="img-responsive">
                                </div>
                            </div>

                        </div>
                    </div>
                </div><!--/.item-->



               
                <div class="item" style="background-image: url(images/slider/sbgimg5.jpg)">
                    <div class="container">
                        <div class="row slide-margin">
                            <div class="col-sm-6">
                                <div class="carousel-content">
                                    <h1 class="animation animated-item-1">What is C#?</h1>
                                    <h2 class="animation animated-item-2">C# is a simple, modern, general-purpose, object-oriented programming language developed by Microsoft within its .NET initiative led by Anders Hejlsberg. This tutorial will teach you basic C# programming and will also take you through various advanced concepts related to C# programming language.</h2>
                                    <a class="btn-slide animation animated-item-3" href="InfoCSharp.aspx">Read More</a>
                                </div>
                            </div>

                            <div class="col-sm-6 hidden-xs animation animated-item-4">
                                <div class="slider-img">
                                    <img src="images/slider/CSharp.png" class="img-responsive">
                                </div>
                            </div>

                        </div>
                    </div>
                </div><!--/.item-->



               
                <div class="item" style="background-image: url(images/slider/sbgimg6.jpg)">
                    <div class="container">
                        <div class="row slide-margin">
                            <div class="col-sm-6">
                                <div class="carousel-content">
                                    <h1 class="animation animated-item-1">What is MySql?</h1>
                                    <h2 class="animation animated-item-2">MySQL is the most popular Open Source Relational SQL database management system. MySQL is one of the best RDBMS being used for developing web-based software applications.</h2>
                                    <a class="btn-slide animation animated-item-3" href="InfoMySql.aspx">Read More</a>
                                </div>
                            </div>

                            <div class="col-sm-6 hidden-xs animation animated-item-4">
                                <div class="slider-img">
                                    <img src="images/slider/MySQL.png" class="img-responsive">
                                </div>
                            </div>

                        </div>
                    </div>
                </div><!--/.item-->
            </div><!--/.carousel-inner-->
        </div><!--/.carousel-->
        <a class="prev hidden-xs" href="#main-slider" data-slide="prev">
            <i class="fa fa-chevron-left"></i>
        </a>
        <a class="next hidden-xs" href="#main-slider" data-slide="next">
            <i class="fa fa-chevron-right"></i>
        </a>
    </section>
    <!--/#main-slider-->
    <!--Subjects-->
    <div class="container">
        <div class="row">
            <div class="col-lg-12">
                <h2>
                    What should you know before giving Practice and Exam?</h2>
            </div>
        </div>
        <div class="row">
            <div class="col-lg-4 col-md-3 col-sm-6">
                <a href="SyllabusC.aspx" class="thumbnail">
                    <p>
                        C Programming</p>
                    <img src="images/slider/C.png" />
                </a>
            </div>
            <div class="col-lg-4 col-md-3 col-sm-6">
                <a href="SyllabusC++.aspx" class="thumbnail">
                    <p>
                        C++</p>
                    <img src="images/Cpp.png" />
                </a>
            </div>
            <div class="col-lg-4 col-md-3 col-sm-6">
                <a href="SyllabusJava.aspx" class="thumbnail">
                    <p>
                        Java</p>
                    <img src="images/java.png" />
                </a>
            </div>
        </div>
        <div class="row">
            <div class="col-lg-4 col-md-4 col-sm-6">
                <a href="Syllabus JavaScript.aspx" class="thumbnail">
                    <p>
                        JavaScript</p>
                    <img src="images/slider/Javascript.png" />
                </a>
            </div>
            <div class="col-lg-4 col-md-4 col-sm-6">
                <a href="SyllabusMySql.aspx" class="thumbnail">
                    <p>
                        MySql</p>
                    <img src="images/MySQL.png" />
                </a>
            </div>
            <div class="col-lg-4 col-md-4 col-sm-6">
                <a href="SyllabusCSharp.aspx" class="thumbnail">
                    <p>
                        C#</p>
                    <img src="images/CSharp.png" />
                </a>
            </div>
        </div>
    </div>
    </div>
    <!--Programmin langugge used-->
    <section id="middle">
        <div class="container">
            <div class="row">
                <div class="col-sm-12 wow fadeInDown">
                    <div class="skill">
                        <h2>Use of Programming and Scripting languages in present Time(2016-17)</h2>
                       
                        <div class="progress-wrap">
                            <h3>SQL</h3>
                            <div class="progress">
                              <div class="progress-bar  color1" role="progressbar" aria-valuenow="40" aria-valuemin="0" aria-valuemax="100" style="width: 90%">
                                <span class="bar-width">90%</span>
                              </div>

                            </div>
                        </div>

                        <div class="progress-wrap">
                            <h3>JAVA</h3>
                            <div class="progress">
                              <div class="progress-bar color2" role="progressbar" aria-valuenow="20" aria-valuemin="0" aria-valuemax="100" style="width: 84%">
                               <span class="bar-width">84%</span>
                              </div>
                            </div>
                        </div>

                        <div class="progress-wrap">
                            <h3>JavaScript</h3>
                            <div class="progress">
                              <div class="progress-bar color3" role="progressbar" aria-valuenow="60" aria-valuemin="0" aria-valuemax="100" style="width: 80%">
                                <span class="bar-width">80%</span>
                              </div>
                            </div>
                        </div>

                        <div class="progress-wrap">
                            <h3>C#</h3>
                            <div class="progress">
                              <div class="progress-bar color4" role="progressbar" aria-valuenow="80" aria-valuemin="0" aria-valuemax="100" style="width: 58%">
                                <span class="bar-width">58%</span>
                              </div>
                            </div>
                        </div>

                        <div class="progress-wrap">
                            <h3>Python</h3>
                            <div class="progress">
                              <div class="progress-bar color2" role="progressbar" aria-valuenow="20" aria-valuemin="0" aria-valuemax="100" style="width: 45%">
                               <span class="bar-width">45%</span>
                              </div>
                            </div>
                        <div class="progress-wrap">

                       
                        <div class="C++">
                            <h3>JAVA</h3>
                            <div class="progress">
                              <div class="progress-bar color2" role="progressbar" aria-valuenow="20" aria-valuemin="0" aria-valuemax="100" style="width: 40%">
                               <span class="bar-width">40%</span>
                              </div>
                            </div>
                        </div>

                        <div class="progress-wrap">
                            <h3>pHp</h3>
                            <div class="progress">
                              <div class="progress-bar color3" role="progressbar" aria-valuenow="60" aria-valuemin="0" aria-valuemax="100" style="width: 35%">
                                <span class="bar-width">35%</span>
                              </div>
                            </div>
                        </div>

                        <div class="progress-wrap">
                            <h3>IOS</h3>
                            <div class="progress">
                              <div class="progress-bar color4" role="progressbar" aria-valuenow="80" aria-valuemin="0" aria-valuemax="100" style="width: 28%">
                                <span class="bar-width">28%</span>
                              </div>
                            </div>
                        </div>

                        <div class="progress-wrap">
                            <h3>RUBY/RAILS</h3>
                            <div class="progress">
                              <div class="progress-bar color2" role="progressbar" aria-valuenow="20" aria-valuemin="0" aria-valuemax="100" style="width: 10%">
                               <span class="bar-width">10%</span>
                              </div>
                            </div>
                        </div>
                        </div>

                    </div>

                </div><!--/.col-sm-6-->
                </div>
                </div>
                </div>
                </section>
              

               

    <footer class="row back aboutSection">
        <div class="container" id="aboutSection">
            <div  class="col-md-3 col-sm-6 col-xs-12">
                <h3>About Us</h3>
<img src="images/my_pic.jpg" class="img-circle img" />
               
                    <p>Myself Vishal V. Upadhyay</p>
                <p>Currently I'm Studend and hosting ProgrmmingSkills.com website</p>
               
                    <p>My Blogspot:</p>
                    <p><a href="www.vishalprogrammingskills.blogspot.in">Programming Skills</a></p>
               
                    <p>My Youtube Channel:</p>
                    <a href="#">Programming Skills</a>
               
           
            </div>
            <div  class="col-md-3 col-sm-6 col-xs-12">
                <h3>Our Vision</h3>
               
<img src="images/vision.jpg"  class="img-circle img" />
                <div class="one_tweet">
                    <p>To provide you a platform where you can enhance your programmming skills</p>
                   
                </div>
                <div class="one_tweet">
                    <p>To make you comfortable with languages by knowing their different kinds of Questions</p>
                </div>
                   
                <div class="one_tweet">
                    <p>To Certifed you in your knlowledged programming language</p>
                </div>
            </div>
           
            <div  class="col-md-3 col-sm-6 col-xs-12">
                <h3>Contact us</h3>
               
<img src="images/contactus.jpg"  class="img-circle img" />
                <p>  uvvishalupadhyay@gmail.com</p>
                <p>  www.vishalprogrammingskills.blogspot.in</p>
                <p>91-8999999911</p>
       
            </div>
            <div  class="col-md-3 col-sm-6 col-xs-12">
                <h3>Comming Soon</h3>
               
<img src="images/coming soon.jpg"  class="img-circle img" />
                <div class="one_tweet">
                <p>We're comming with more languages like pHp,RUBY,Python</p>
                </div>
               
                <div class="one_tweet">
                    <p>We always keep update the questons so you can get more Idea about questoins</p>
                </div>
                <div class="one_tweet">
                    <p>
                <a href="Feedback.aspx">Feedback</a></p>
                </div>
               
            </div>
           
        </div></footer>
</asp:Content>

Code

<html> <head> <title>Implimentation</title> <script type="text/javascript"> fu...