Find Interview Questions for Top Companies
Ques:- Someone who protect my excel file, m using ms office 2007 and windows 7 operating system, pls help me, how can i unprotect sheet
Asked In :-
Right Answer:
To unprotect a sheet in Excel 2007, go to the "Review" tab, click on "Unprotect Sheet," and enter the password if prompted. If you don't have the password, you may need to use a VBA method or third-party software to recover access.
Ques:- what will this do? function show_alert value=”Show User” eval(“x=10; y=20; document.write(x*y)”);
Asked In :-
Comments
Admin May 17, 2020

it means that toyotanon is dead. OP killed him and his girlfriend.
salt lake city, USA
07/29/2012
toyotanon is hero

Ques:- How do you insert record into scripting using siebel crm
Asked In :-
Right Answer:
To insert a record in Siebel CRM using scripting, you can use the following steps in a script:

1. Create a new record using the `NewRecord` method.
2. Set the field values using the `SetFieldValue` method.
3. Use the `InsertRecord` method to save the new record.

Example in Siebel eScript:

```javascript
var busObj = TheApplication().GetBusObject("Your Business Object");
var busComp = busObj.GetBusComp("Your Business Component");
busComp.NewRecord(0); // 0 for insert at the end
busComp.SetFieldValue("FieldName1", "Value1");
busComp.SetFieldValue("FieldName2", "Value2");
busComp.InsertRecord();
```
Ques:- I have deducted tds on pay slip for employees ist month tell me how to deposit this amt to govt. by bank or any form is available fill the same and deposit the govt. department. Pls explain me which form to be used for deposit the same with due date.
Asked In :-
Right Answer:
To deposit TDS deducted from employee salaries, you need to use Form 281. You can deposit the amount through a bank that is authorized to accept TDS payments. The due date for depositing TDS is the 7th of the following month in which the deduction was made.
Ques:- Why we use Action Script(Multimedia Flash) rather than using other scripting languages (JAVA,VB…etc) ?
Asked In :-
Ques:- what is the difference between 32 bit O.S n 64 bit O.S?
Asked In :-
Right Answer:
The main difference between a 32-bit OS and a 64-bit OS is the amount of memory they can use. A 32-bit OS can address up to 4 GB of RAM, while a 64-bit OS can handle much more, theoretically up to 16 exabytes. Additionally, a 64-bit OS can run 64-bit applications, which can be more efficient and faster than their 32-bit counterparts.
Comments
Admin May 17, 2020

The difference is the amount of information the PC’s processor
can handle at any precise moment. While a computer designed
for a 64-bit operating system has vastly more potential
computing power, it requires fundamental changes to the way
its software is designed.
There are also some significant mathematical limits to the two
different types of processor. A 32-bit processor can only work
with a maximum of 4GB of memory, and this is usually limited
to 2GB for any one program. A 64-bit processor could
theoretically work with 17 billion GB of memory.

Ques:- i a had secured second class in tenth and twelth and i secured first claas.can i apply for job
Asked In :-
Right Answer:
Yes, you can apply for a job.
Ques:- what is the fullform of URL or URI?
Asked In :-
Right Answer:
URL stands for Uniform Resource Locator, and URI stands for Uniform Resource Identifier.
Comments
Admin May 17, 2020

URL -- Universal resource Locater
URI -- Unifor resource identifier

Admin May 17, 2020

URL - Uniform Resource Locator

Ques:- which is best institute for flex and actionscript in hyderabad
Asked In :-
Right Answer:
I don't have specific information on the best institutes for Flex and ActionScript in Hyderabad. It's recommended to check local reviews, online forums, or educational websites for the most current recommendations.
Comments
Admin May 17, 2020

space multimedia is the best in hyderabad, ameerpeta,

Admin May 17, 2020

Space Multimedia, Ameerpet
Teaching by Vivek sir and he has been giving his level best
since 2007.

Ques:- what is the Structure of an ANT file?
Asked In :-
Right Answer:
An ANT file, typically named `build.xml`, has the following structure:

```xml
<project name="project-name" default="default-target" basedir=".">
<property name="property-name" value="property-value"/>

<target name="default-target">
<!-- Tasks go here -->
</target>

<target name="another-target">
<!-- More tasks -->
</target>
</project>
```
Ques:- how do invoke OS task through ANT?
Asked In :-
Right Answer:
You can invoke OS tasks through ANT using the `<exec>` task. Here’s an example:

```xml
<exec executable="your-command">
<arg value="arg1"/>
<arg value="arg2"/>
</exec>
```

Replace `"your-command"` with the command you want to run and add any necessary arguments.
Ques:- how do u define in ur build.xml If I need to execute a task before executing my task?
Asked In :-
Right Answer:
You can define a target in your `build.xml` that specifies the task to be executed first, and then use the `depends` attribute in your main task to reference that target. For example:

```xml
<target name="pre-task">
<!-- Your pre-task actions here -->
</target>

<target name="main-task" depends="pre-task">
<!-- Your main task actions here -->
</target>
```
Ques:- can I name the build.xml with any name? if so how can I invoke ?
Asked In :-
Right Answer:
Yes, you can name the `build.xml` file anything you like. To invoke it, use the command `ant -f your_custom_name.xml`.
Ques:- what is the diff between ANT and MAVEN?
Asked In :-
Right Answer:
ANT is a build tool that uses XML files for configuration and focuses on the process of building applications, while MAVEN is a project management tool that uses a POM (Project Object Model) file to manage project dependencies, build lifecycle, and plugins, emphasizing convention over configuration.
Comments
Admin May 17, 2020

Apache Ant
•Ant doesn't have formal conventions like a common project
directory structure or default behavior. You have to tell
Ant exactly where to find the source and where to put the
output. Informal conventions have emerged over time, but
they haven't been codified into the product.
•Ant is procedural. You have to tell Ant exactly what to do
and when to do it. You have to tell it to compile, then
copy, then compress.
•Ant doesn't have a lifecycle. You have to define goals and
goal dependencies. You have to attach a sequence of tasks
to each goal manually.
Apache Maven
•Maven has conventions. It knows where your source code is
because you followed the convention. Maven's Compiler
plugin put the bytecode in target/classes, and it produces
a JAR file in target.
•Maven is declarative. All you had to do was create a
pom.xml file and put your source in the default directory.
Maven took care of the rest.
•Maven has a lifecycle which was invoked when you executed
mvn install. This command told Maven to execute a series of
sequential lifecycle phases until it reached the install
lifecycle phase. As a side-effect of this journey through
the lifecycle, Maven executed a number of default plugin
goals which did things like compile and create a JAR.

Admin May 17, 2020

Dependency management in ant is nightmare. One should know complete knowledge(or depending on Dev. Team) to build a classpath. Maven solves all dependency issues itself via inheritence.
Versioning of artifacts in Ant nearly not possible(unless managing it independently). Maven by default does it.

Ques:- Need a batch file or VB script to delete old (more than 90datys) roaming profiles
Asked In :-
Right Answer:
```batch
@echo off
setlocal

set "profilePath=C:Users"
set "days=90"
set "cutoffDate=%date:~10,4%-%date:~4,2%-%date:~7,2%"

for /d %%i in ("%profilePath%*") do (
forfiles /p "%%i" /d -%days% /c "cmd /c if exist @path rmdir /s /q @path"
)

endlocal
```
Ques:- why do u need an ANT?
Asked In :-
Right Answer:
ANT is needed for automating the build process in Java projects, managing dependencies, and ensuring consistent builds across different environments.
Ques:- How applet differ from Swings in java ?
Asked In :-
Right Answer:
Applets are lightweight Java programs that run in a web browser, while Swing is a GUI toolkit for building standalone desktop applications. Applets are limited in functionality and security, whereas Swing provides a richer set of components and greater flexibility for creating user interfaces.
Ques:- I have installed QTP version 9.0. I have installed Mozilla firefox version 2.0. But QTP “Record and Run settings” in WEB tab shows FIREFOX 1.5 in drop down to run session begins. So QTP does not record anything which I type in firefox. How can i recognise firefox 2.0 and how can i update browser version in QTP?
Asked In :-
Ques:- I Am Planning to Write ISTQB foundation level Ceritification of inida. can Any Body let me know how to prepare for it & Any Study material can you provide or Any other E-books i should need to Study. Please Mail to me ajaybe_2004@yahoo.co.in THnaks in advance Ajay
Asked In :-
Ques:- What is URL Loader.?
Asked In :-
Right Answer:
URLLoader is a class in ActionScript used to load data from a URL, such as text files or images, into an application. It allows developers to retrieve and handle data asynchronously.
Comments
Admin May 17, 2020

The URLLoader Class is responsible for loading all textual
content and that include in addition to regular text files,
XML, HTML, and CSS.



The term “Scripts All Other” refers to a diverse and expansive category of programming and scripting tasks that do not fit into a single, well-defined discipline. These scripts are the crucial, often-unseen tools that bridge gaps, automate repetitive tasks, and provide custom solutions across a multitude of industries and technical roles. Unlike scripts for specific applications like web development (e.g., JavaScript) or enterprise software, these “other” scripts are highly versatile and are typically written in languages such as Python, Bash, PowerShell, or Ruby to address a unique and specific need.

The primary function of these scripts is to enhance efficiency and productivity. A system administrator might write a Bash script to automate server backups and maintenance tasks, while a data analyst could use a Python script to clean and transform a dataset for a report. A mechanical engineer might develop a custom script to automate a complex calculation or to interface with a piece of laboratory equipment. These scripts are essential for automating mundane, manual processes that would otherwise consume valuable time and resources, freeing up professionals to focus on more strategic and creative work.

Furthermore, “Scripts All Other” also includes the development of small, one-off tools and utilities. This could be a script that converts file formats in bulk, a program that scrapes data from a website, or a simple application that monitors system performance. These solutions are often created in-house to solve a problem that commercial software cannot address or would be too expensive to implement. The ability to write and manage these scripts is a valuable skill for any technical professional, as it demonstrates a capacity for problem-solving, a deep understanding of system operations, and a commitment to creating efficient, tailored solutions. This category represents the spirit of custom development and automation that powers a vast array of modern professional workflows.

AmbitionBox Logo

What makes Takluu valuable for interview preparation?

1 Lakh+
Companies
6 Lakh+
Interview Questions
50K+
Job Profiles
20K+
Users