Tuesday, 18 October 2011

Java Important Interview FAQ

What are Encapsulation, Inheritance and Polymorphism?- Encapsulation is the mechanism that binds together code and data it manipulates and keeps both safe from outside interference and misuse. Inheritance is the process by which one object acquires the properties of another object. Polymorphism is the feature that allows one interface to be used for general class actions.
What is OOPs?- Object oriented programming organizes a program around its data, i. e. , objects and a set of well defined interfaces to that data. An object-oriented program can be characterized as data controlling access to code.
What are Class, Constructor and Primitive data types?- Class is a template for multiple objects with similar features and it is a blue print for objects. It defines a type of object according to the data the object can hold and the operations the object can perform. Constructor is a special kind of method that determines how an object is initialized when created. Primitive data types are 8 types and they are: byte, short, int, long, float, double, boolean, char.
What is an Object and how do you allocate memory to it?- Object is an instance of a class and it is a software unit that combines a structured set of data with a set of operations for inspecting and manipulating that data. When an object is created using new operator, memory is allocated to it.
What are methods and how are they defined?- Methods are functions that operate on instances of classes in which they are defined. Objects can communicate with each other using methods and can call methods in other classes. Method definition has four parts. They are name of the method, type of object or primitive type the method returns, a list of parameters and the body of the method. A method’s signature is a combination of the first three parts mentioned above.
What is the use of bin and lib in JDK?- Bin contains all tools such as javac, appletviewer, awt tool, etc., whereas lib contains API and all packages.

What is casting?- Casting is used to convert the value of one type to another.


How many ways can an argument be passed to a subroutine and explain them?- An argument can be passed in two ways. They are passing by value and passing by reference. Passing by value: This method copies the value of an argument into the formal parameter of the subroutine. Passing by reference: In this method, a reference to an argument (not the value of the argument) is passed to the parameter.


What are different types of access modifiers?- public: Any thing declared as public can be accessed from anywhere. private: Any thing declared as private can’t be seen outside of its class. protected: Any thing declared as protected can be accessed by classes in the same package and subclasses in the other packages. default modifier : Can be accessed only to classes in the same package.

What is final, finalize() and finally?- final : final keyword can be used for class, method and variables. A final class cannot be subclassed and it prevents other programmers from subclassing a secure class to invoke insecure methods. A final method can’t be overridden. A final variable can’t change from its initialized value. finalize() : finalize() method is used just before an object is destroyed and can be called just prior to garbage collection. finally : finally, a key word used in exception handling, creates a block of code that will be executed after a try/catch block has completed and before the code following the try/catch block. The finally block will execute whether or not an exception is thrown. For example, if a method opens a file upon exit, then you will not want the code that closes the file to be bypassed by the exception-handling mechanism. This finally keyword is designed to address this contingency.

What is UNICODE?- Unicode is used for internal representation of characters and strings and it uses 16 bits to represent each other.


What is Garbage Collection and how to call it explicitly?- When an object is no longer referred to by any variable, java automatically reclaims memory used by that object. This is known as garbage collection. System. gc() method may be used to call it explicitly.

What is finalize() method?- finalize () method is used just before an object is destroyed and can be called just prior to garbage collection.

What are Transient and Volatile Modifiers?- Transient: The transient modifier applies to variables only and it is not stored as part of its object’s Persistent state. Transient variables are not serialized. Volatile: Volatile modifier applies to variables only and it tells the compiler that the variable modified by volatile can be changed unexpectedly by other parts of the program.


What is method overloading and method overriding?- Method overloading: When a method in a class having the same method name with different arguments is said to be method overloading. Method overriding : When a method in a class having the same method name with same arguments is said to be method overriding.


What is meant by Inheritance and what are its advantages?- Inheritance is the process of inheriting all the features from a class. The advantages of inheritance are reusability of code and accessibility of variables and methods of the super class by subclasses.

What modifiers may be used with top-level class?- public, abstract and final can be used for top-level class.

What are inner class and anonymous class?- Inner class : classes defined in other classes, including those defined in methods are called inner classes. An inner class can have any accessibility including private. Anonymous class : Anonymous class is a class defined inside a method without a name and is instantiated and declared in the same place and cannot have explicit constructors.

What is a package?- A package is a collection of classes and interfaces that provides a high-level layer of access protection and name space management.

What is a reflection package?- java. lang. reflect package has the ability to analyze itself in runtime.

Written interview apptitude Questions II

46. Six swimmers A, B, C, D, E, F compete in a race.
The outcome is as
follows.
i. B does not win.
ii. Only two swimmers separate E & D
iii. A is behind D & E
iv. B is ahead of E , with one swimmer intervening
v. F is a head of D
1. Who stood fifth in the race ?
(a) A
(b) B
(c) C
(d) D
(e) E
Ans: (e)
2. How many swimmers seperate A and F ?
(a) 1
(b) 2
(c) 3
(d) 4
(e) cannot be determined
Ans: (d)
3. The swimmer between C & E is
(a) none
(b) F
(c) D
(d) B
(e) A
Ans: (a)


4. If the end of the race, swimmer D is disqualified
by the Judges
then swimmer B finishes in which place
(a) 1
(b) 2
(c) 3
(d) 4
(e) 5
Ans: (b)
47. Five houses lettered A,B,C,D, & E are built in a
row next to each
other. The houses are lined up in the order A,B,C,D, &
E. Each of the
five houses has a colored chimney. The roof and
chimney of each
housemust be painted as follows.
i. The roof must be painted either green,red ,or
yellow.
ii. The chimney must be painted either white, black,
or red.
iii. No house may have the same color chimney as the
color of roof.
iv. No house may use any of the same colors that the
every next house
uses.
v. House E has a green roof.
vi. House B has a red roof and a black chimney
1. Which of the following is true ?
(a) At least two houses have black chimney.
(b) At least two houses have red roofs.
(c) At least two houses have white chimneys
(d) At least two houses have green roofs
(e) At least two houses have yellow roofs
Ans: (c)
2. Which must be false ?
(a) House A has a yellow roof
(b) House A & C have different color chimney
(c) House D has a black chimney
(d) House E has a white chimney
(e) House B&D have the same color roof.
Ans: (b)
3. If house C has a yellow roof. Which must be true.
(a) House E has a white chimney
(b) House E has a black chimney
(c) House E has a red chimney
(d) House D has a red chimney
(e) House C has a black chimney
Ans: (a)
4. Which possible combinations of roof & chimney can
house
I. A red roof 7 a black chimney
II. A yellow roof & a red chimney
III. A yellow roof & a black chimney

(a) I only
(b) II only
(c) III only
(d) I & II only
(e) I&II&III
Ans: (e)
48. Find x+2y
(i). x+y=10
(ii). 2x+4y=20
Ans: (b)


49. Is angle BAC is a right angle
(i) AB=2BC
(2) BC=1.5AC
Ans: (e)
50. Is x greater than y
(i) x=2k
(ii) k=2y
Ans: (e)

Monday, 17 October 2011

Technical Questions On Computer Architecture and Design

1. What is pipelining?
2. What are the five stages in a DLX pipeline?
3. For a pipeline with ‘n’ stages, what’s the ideal throughput? What prevents us from achieving this ideal throughput?
4. What are the different hazards? How do you avoid them?
5. Instead of just 5-8 pipe stages why not have, say, a pipeline with 50 pipe stages?
6. What are Branch Prediction and Branch Target Buffers?
7. How do you handle precise exceptions or interrupts?
8. What is a cache?
9. What’s the difference between Write-Through and Write-Back Caches? Explain advantages and disadvantages of each.
10. Cache Size is 64KB, Block size is 32B and the cache is Two-Way Set Associative. For a 32-bit physical address, give the division between Block Offset, Index and Tag.
11. What is Virtual Memory?
12. What is Cache Coherency?
13. What is MESI?
14. What is a Snooping cache?
15. What are the components in a Microprocessor?
16. What is ACBF(Hex) divided by 16?
17. Convert 65(Hex) to Binary
18. Convert a number to its two’s compliment and back
19. The CPU is busy but you want to stop and do some other task. How do you do it?

Sunday, 16 October 2011

Technical Questions on Digital Electronics

if we are measuring dc voltage of battery then why would we get ac voltage component in it?
A signed no is stored in 10-bit register, what is the max and min possible value of the number. Cadence
Which range of signals are used for terrestrial transmission?
what happen when unit step signal is applied to a integrater circuit.explain with graph BARC
How can you convert an SR Flip-flop to a JK Flip-flop?
differnce between timer & counter TCS
HI FRDS AM saranya i did BE (2009 PASSOUT)I PLAN TO DO DOTNET. CAN ANYBODY TELL ME WHICH TRINEE CENTRE WILL BE BEST FOR DOTNET WITH PLACEMENTS
What are Rectifiers and what is the use of it?
i/p sec of atransformer is 230V 5a o/p spc is 12v 1a so i/p power will be 1150w o/p power will be 12w then how the power transfer theorm matching with this?? Bosch
why is there -48 v DC voltage use in CISCO Router.?? is there any advatage to use this type of negative voltage rather than positive voltage??
in a distortion factor meter , the filter at the front end is used supress ?
what is the physical need to find 3bd frequencies?
why scanning is necessary in t.v. transmission and why it is carried out at fast rate?
why we use vsb transmission for video signal transmission and why dont we use ssb transmission?
what is unijunction transistor(ujt)?
Which type of architecture 8085 has?
Telecom BSS related ques: For cascaded 1800 BTS with master 900 BTS,if 900 master BTS is down for its own equipment fault,cascaded slave 1800 BTS gets down/stop carrying traffic without any fault as BCCH and other controllong channels are in master 900 BTS.Is there any technology/system to turn the slave 1800 BTS to a single 1800 BTS autometcally when 900 master BTS is down for its own equipment fault???It is possible to make the slave 1800 BTS single live BTS manually.But I want to know the autometic system/process.if there is any....if not available, how can we generate the system?? Grameen-Phone
What is JKMS FF?
what is a MEMS sensor? What is its advantage? Bosch
Distinguish between Angle modulation and Amplitude modulation

Search here for "Freshers Jobs"