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...



Scripts_Markup Code Interview Questions
Questions Answers Views Company eMail

How do you list currently running process?

1 2419

How do you find out what’s your shell?

1 2664

How do you fire a process in the background?

1 2725

How do you refer to the arguments passed to a shell script?

1 2364

What’s the conditional statement in shell scripting?

1 2900

How do you do number comparison in shell scripts?

1 2588

How do you test for file properties in shell scripts?

1 2932

How do you do Boolean logic operators in shell scripting?

1 2604

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

1 2776

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

1 2589

How do you write a for loop in shell?

1 2635

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

1 2774

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

1 2430

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

1 2669

How do you stop a process?

1 2573


Un-Answered Questions { Scripts_Markup Code }

Write a function that takes an integer and returns the smallest number that is greater than the given number which is a palendrome. For example, if the input was 111 the next palindromic number would be 121.

1762


How to store the iterations value in some variable/ in excel? Dim objExcel, ObjFolder, objPath, objWorkbook, objSheet, ObjFSo, ObjFolderName, strExcelPath Const xlExcel7 = 39 ObjFolderName = "Testing" & Hour(time()) & Minute(time()) &Second(time()) objPath = "D:\" strExcelPath = objPath & ObjFolderName & "\testing.xls" Set ObjFSo = CreateObject("Scripting.FileSystemObject") Set objFolder = objFSO.CreateFolder(objPath & ObjFolderName) On Error Resume Next Set objExcel = CreateObject("Excel.Application") If (Err.Number <> 0) Then On Error GoTo 0 Wscript.Echo "Excel application not found." Wscript.Quit End If On Error GoTo 0 Set objWorkbook = objExcel.Workbooks.Add() Set objSheet = objExcel.ActiveWorkbook.Worksheets(1) Dim arr1, arr2, arr3 Set outputLines = CreateObject ("System.Collections.ArrayList") arr1 = 123arr2 = 99 arr3 = 10 outputLines.Add arr1 outputLines.Add arr2 outputLines.Add arr3 outputLines.Sort() For Each outputLine in outputLines WScript.Echo outputLine ' how to store this value in excel/ variable? Next objExcel.ActiveWorkbook.SaveAs strExcelPath, xlExcel7 objExcel.ActiveWorkbook.Close objExcel.Application.Quit This above code is working fine but the qs is is there any way to store the sort data in variables / in the excel and how?

2793


What is the output when we execute list(“hello”)?

978


Write a python program to swap the first and last value of a list?

869


How can a procedure fetch data from FTP? I need a general code for this..

1365


What is well formed XML document?

575


Given a string=”me,I,myself”; .Using javascript only create an array out of this string and then send a POST request to the url “record.php” without reloading the page. The post key parameters should be n1,n2 and n3 respectively.

2682


Write a function that takes an array of integers and returns that array rotated by N positions. For example, if N=2, given the input array [1, 2, 3, 4, 5, 6] the function should return [5, 6, 1, 2, 3, 4]

2190


How to call JavaScript Function from Code-behind in asp.net?

659


code to Hide and Show form controls

2247


how to create a Custom Scrollbar

2495


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

1421


Discuss an algorithm to traverse a tree, depth first.

1653


how to remove or delete multiple selected items from listbox in on button click in asp?

643


Write a program to find sum of the digits of a number in python?

812