Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...



Code Snippets Interview Questions
Questions Answers Views Company eMail

How do you test for file properties in shell scripts?

1 3019

How do you do Boolean logic operators in shell scripting?

1 2671

How do you find out the number of arguments passed to the shell script?

1 2858

What’s a way to do multilevel if-else’s in shell scripting?

1 2688

How do you write a for loop in shell?

1 2702

How do you find out the current directory you’re in?

1 2867

What’s the command to find out users on the system?

1 2517

What’s the command to find out today’s date?

1 2766

How do you stop a process?

1 2660

How do you find out about all running processes?

1 2712

How do you stop all the processes, except the shell window?

1 2940

How do you define a function in a shell script?

1 2482

How do you read keyboard input in shell scripts?

1 3112

How does a case statement look in shell scripts?

1 2729

Consider the following markup:

London by night
A landscape of London by night
Is it valid? If not, can you explain why?

1 8237


Un-Answered Questions { Code Snippets }

Is there any static classes are in java give some examples

2135


Create a ViewState Property?

2706


How to encode and decode URL strings?

2305


1+1/2!+1/3!+...+1/n!

2419


Code for Using Keyboard Events?

2612


Is it possible to write JAVA program without including any of the packages,such as "import java.io.*"; bcoz I instantly wrote a code without "import..." statement and runned the program on command Line & it worked. the code is: class Person { String name; int age; Person(String s,int a) { name = s; age = a; } accept() { System.out.println(name+"Hi!!!!!"); System.out.println(age); } } class Demo { public static void main(Strings args[])throws IOException { String name = args[0]; int age = Integer.parseInt(args[1]); Person p = new Person(name,age); p.accept(); } }

2112


What are the features of XML?

603


what mean void creat_object?in public class in this code class A{ public: int x; A(){ cout << endl<< "Constructor A";} ~A(){ cout << endl<< "Destructor A, x is\t"<< x;} }; void create_object(); void main() { A a; a.x=10; { A c; c.x=20; } create_object(); } void create_object() { A b; b.x=30; }

2597


3. Program to find the Sum of give series. a. (1)+(1+2)+(1+2+3)+(1+2+3+4)+……………………………….. b. 1/1+1/9+1/25+1/49+……………...

4954


program for straight line(y=mx+c)

6022


Which keyword is alias for count keyword in php?

2057


write a vb script to check equal two 2*2 matrix

1477


Give the code for Handling Mouse Events?

2391


I need your help, i need a Turbo C code for this problem.. hope u'll help me guys.? Your program will have a 3x3 array. The user will input the sum of each row and each column. Then the user will input 3 values and store them anywhere, or any location or index, temporarily in the array. Your program will supply the remaining six (6) values and determine the exact location of each value in the array. Example: Input: Sum of row 1: 6 Sum of row 2: 15 Sum of row 3: 24 Sum of column 1: 12 Sum of column 2: 15 Sum of column 3: 18 Value 1: 3 Value 2: 5 Value 3: 6 Output: Sum of Row 1 2 3 6 4 5 6 15 7 8 9 24 Sum of Column 12 15 18 Note: Your program will not necessary sort the walues in the array Thanks..

3327


Write a python program to check if a number is an armstrong number?

786