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 2934

How do you do Boolean logic operators in shell scripting?

1 2605

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

1 2777

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

1 2591

How do you write a for loop in shell?

1 2635

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

1 2775

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

1 2431

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

1 2669

How do you stop a process?

1 2573

How do you find out about all running processes?

1 2639

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

1 2844

How do you define a function in a shell script?

1 2395

How do you read keyboard input in shell scripts?

1 3019

How does a case statement look in shell scripts?

1 2648

Consider the following markup:

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

1 8151


Un-Answered Questions { Code Snippets }

How we work on N tire architecture in asp.net Please give me Examle...

17879


I am attempting to work on a game panel with multi-server support, so in one of the pages there is a dropdown menu with servers on it, this is the part i am having issues with is server 1 is chosen i need access to the username running a script to server 1 chosen i need a script that will realize its been chosen and pop up below with a username thats associated with it because the users differ on each server so i choose server 1 i need a code to pull from the db and choose the user associated with the said server please help..

2575


What is the functionality of EnumChildWindows?

493


What is GUID anyway?

588


What is XSL?

568


Do you think about CMM(Capability Maturity Model) process?

940


For printing a message we use System.out.println in normal programs. We use String msg="text....."; Can't we use String msg=" " in normal programs and System.out.println("........") in applets. Please answer this question?

2598


plzzzzzzzzz xplain this code import java.awt.*; import java.awt.event.*; public class Link extends Frame implements ActionListener { Label l1; Button b1; public static void main(String sr[]) { new Link().setVisible(true); } public Link() { super("Warning"); setSize(500,500); setBackground(Color.lightGray); setLayout(null); l1=new Label("There is no Link"); l1.setBounds(0,0,500,460); l1.setFont(new Font("TimesRoman",Font.BOLD,35)); l1.setAlignment(Label.CENTER); add(l1); b1=new Button("QUIT"); b1.setBackground(Color.orange); b1.setBounds(0,460,500,40); b1.addActionListener(this); add(b1); } public void actionPerformed(ActionEvent e) { this.dispose(); } }

1857


Using C# Write a program that performs the following. The user inputs a number and then enters a series of numbers from 1 to that number. Your program should determine which number (or numbers) is missing or duplicated in the series, if any. For example, if the user entered 5 as the initial number and then entered the following sequences, the results should be as shown. Input Sequence Output ---------------------- --------------- 1 2 3 4 5 Nothing bad However, if 7 were the high number, the user would see the results on the right for the following number entries: Input Sequence Output ---------------------- --------------- 1 3 2 4 5 Missing 6 Missing 7 And if 10 were the high number and the user entered the numbers shown on the left, note the list of missing and duplicate numbers: Input Sequence Output ---------------------- --------------- 1 2 4 7 4 4 5 10 8 2 6 Duplicate 2 ( 2 times) Missing 3 Duplicate 4 ( 3 times ) Missing 9 The program should check the high number that the user inputs to ensure that it does not exceed the size of any array you might be using for storage.

4201


How can restrict user to type upto 8 characters in textbox in php?

1917


Devise a program to implement the Fibonacci sequence.

873


How can export database using php code?

1953


how to test pierrot divisor

2725


Write a program that implements a date class containing day, month and year as data members. Implement assignment operator and copy constructor in this class.

836


How can you apply a DTD to an XML document?

560