Ask Questions & Get Answers at ibibo sawaal

Rupesh's Questions & Answers

455

Rank

970

206

20

0

Is there any way or trick to play mp4 songs on nokia 5300 ?

Asked by RAVINDRA in Computers & Technology at   11:56 AM on August 30, 2008

Rupesh's Answer

hi friend

hi ravi it plays mp3, wma.if you wanna play vid.the only vid. format that it supports is .3gp

you can convert movies(avi, mpeg etc.) to .3gp (h.264)using SUPER video converter.

it's a free software you can download.hope this helped

Answered at 3:50 PM on August 30, 2008

Read all answers

can anyone suggest a site wherefrom i can register nomain name free? If i m a govt. servant, can i host a website in comercial sense. pls answer

Asked by Diptendra in Computers & Technology at   11:22 AM on August 30, 2008

Rupesh's Answer

hi friend
yes u can first select u own name of u choice from rediff webhosting ...if u want .com it is some what costly...then u check in .org..net...these are cheap and free alos ...check those for 500/- per year ...first u need to check in free hostia.com...create an account....register u wanted domain name ...and also create an account in godaddy.com...register u domain name ...select the word press form...and get started ...isnt it simple...go for it ...
their is no prblm whether u are a governemnt servant ...any one can host a site ...

Answered at 3:38 PM on August 30, 2008

Read all answers

Completing my B.Tech in Computers,but not satisfied with the ups n downs of IT,can do MBA but in Finance,will i able 2 cope up as i am a science student?

Asked by shishir in Computers & Technology at   10:35 AM on August 30, 2008

Rupesh's Answer

hi friend
U r going to complete the B. Tech in Computer.. Plz dont jump to Finance Department.
Bcoz IT field gives first perferance and good Pay to B.E and B. Tech. So choose the IT Field either in software line nor Networking(hardware and networking) . U can shine up well in this field.

Answered at 3:32 PM on August 30, 2008

Read all answers

what is the difference between flat plotters and DRUM plotters

Asked by Kanan Sharma in Computers & Technology at   2:48 PM on August 30, 2008

Rupesh's Answer

hi friend
The flatbed plotter looks somewhat like a pool table (Figure 11.4). It has a large flat surface for holding the drawing medium. Flatbed plotters typically have table sizes and, hence, drawing sizes ranging from 30" x 30" to over 60" x 80". The drawing medium is held in place through minute holes in the table surface by a vacuum system. The flatbed plotter is popular in engineering and architectural applications where large drawings must be made. The flatbed plotter also allows a wide variety of drawing media (i.e. vellum, tracings, transparencies, etc.) to be used. Across the width of the plotter is a bridge. Thebridge can move along the length of the plotting surface (the x-axis). This movement is controlled by a special type of motor called a stepping motor. The stepping motor moves a fixed increment every time it is energized. This fixed increment regulates the resolution of any line that can be drawn. Typical flatbed resolutions range from .01" to .0001". Also important is the rate at which the motors can be incremented, or the speed of the plotting. Speeds of 1.5 to 40 inches per second are common. The bridge has a carriage containing one or more pens attached to it. The carriage can move along the bridge (the y-axis) and it's movement is controlled by another stepping motor.
The drum plotter is similar in operation to the flatbed plotter. It has a bridge with a carriage pen riding on it providing y-axis movement. Typical widths of drum plotters range from twelve to thirty inches. The main difference between the drum and flatbed is that the drawing surface is wrapped around the perimeter of a drum (Figure 11.5). The drum is rotated by a stepping motor providing x-axis movement. Since the drawing medium can be wrapped around the drum many times, a very long drawing is possible. Some drum plotters state the capability of making drawings 180 feet long!

Drum plotters are generally smaller than flatbed plotters. Their drum based designs make them more compact, more portable and less expensive. They usually have lower resolutions that flatbeds.

The operation of an incremental pen plotter is very simple; there are only three basic actions that the user can take: pen selection, pen up/down, and pen movement. Through pen selection commands, the user can specify which of the pens in a multiple pen carriage he wishes to use next. The pens can be of different types, line thickness, ink color or type, etc. Upon selection of a new pen, that pen is moved to the current drawing position automatically. A pen can also be moved "up" or "down". When a pen is down, it is in contact with the drawing surface. Any movement of the pen will cause a line to be drawn. If a pen is in the up position, pen movements merely change the location of the pen with respect to the plotting surface and nothing is drawn. Finally, the pen can be moved across the plotting surface.

Answered at 3:18 PM on August 30, 2008

Read all answers

want to buy LCD 32 inches TV, budget around 30 to 35k, suggest me cheap and best tv in mumbai

Asked by Manish Mehta in Computers & Technology at   10:07 AM on August 30, 2008

Rupesh's Answer

hello dear
I SUGGEST U can better take SONY bravia LCD tv...as this is best in market foir now and forver ..even though it might be costly , but u can get all best features ....and also u can check toshiba lcd is gud but try for sony if u could... go for lcd as plasma tech is getting old...go for a full 1080p wit hdmi ports... theres a sumsung dvd player available in the market wich has hdmi out the one i bought 1 year back is dvd-hd860 see if theres a new one availabe after this or go for this one its very gud

Answered at 2:11 PM on August 30, 2008

Read all answers

diff between c# and java

Asked by amit sharma in Computers & Technology at   10:12 AM on August 30, 2008

Rupesh's Answer

hi friend
Java (as originally implemented by Sun) is cross-platform language that relies on its own system foundation called "Java virtual machine". A Java program is usually complied into an intermediate code (called "byte code"), which can theoretically be executed on any computer with any operating system, as long as a standards-compliant Java virtual machine exists on that computer. The function of the Java virtual machine is to translate the byte code into executable code native for the operating system on which the computer runs.

C# is a Windows-specific language that relies on Windows system foundation (more specifically, on the .Net framework). Programs written in C# generally can run only on Windows (although it is sometimes possible to make them cross-platform). Depending on the nature of the program, it can be compiled into a Windows executable or into Microsoft Intermediate Language (MSIL), which is used by .Net to couple pieces of code originally written in different languages.

Answered at 3:23 PM on August 30, 2008

Read all answers

Someone say in C programming Printf( ) function have programme of 208 lines. I want to know what is that?

Asked by kaustubh in Computers & Technology at   11:19 AM on August 02, 2008

Rupesh's Answer

hi friend
The class of printf functions (which stands for "print formatted") is a class of functions, typically associated with curly bracket programming languages, that accept a string parameter (called the format string) which specifies a method for rendering a number of other parameters (of which there typically may be arbitrarily many, of a variety of types) into a string. Usually this string is then printed on the standard output stream, but variants exist that perform other tasks with the result. Characters in the format string are usually copied literally into the function's output, with the other parameters being rendered into the resulting text at points marked by format specifiers, which are typically introduced by a % character. A literal percent sign can be copied into the output using the escape sequence %. And finally let me tell U that yr 208 number is not right.

Answered at 7:48 PM on August 02, 2008

Read all answers

I can't send free SMS through i mobile.What is to do?

Asked by The Stranger in Computers & Technology at   11:09 AM on August 02, 2008

Rupesh's Answer

hi friend
you can do one thing write a mail to admin at feedback@ibibogroup.com and tell him what the problem you are facing , The team ibibo will revert back to you and they will sort out ur problem.

Answered at 7:50 PM on August 02, 2008

Read all answers

Dear all kindly suggest me good computer games.i already played hitman-2,1. need for speed.kindly suggest me strategy games.

Asked by harry potter in Computers & Technology at   11:35 AM on August 02, 2008

Rupesh's Answer

hi friend
1. one of those "previously played" Carbon games for the STINK-box360 this past weekend. ... so i would like to kindly ask if anybody would waste a few ...
http://boardsus.playstati on.com/playstation/board/messa ge?board.id=nfscarbo..


2. Like most great strategy games of its kind, Get Hostile packs an ... You receive points for speed and accuracy, although the latter is given more weight. ...
http://jayisgames.com/tag /education

Answered at 7:44 PM on August 02, 2008

Read all answers

how do i get my name as a sender

Asked by onkar varma in Computers & Technology at   11:42 AM on August 02, 2008

Rupesh's Answer

hi friend
Open up Outlook.

Go to [Tools]
Click on [Accounts]
Click on the [Mail] tab
Select the email account that you want to change
Click [Properties]
Change the name in the [Name] field
Click OK and close the Accounts field.

You're through.

Answered at 7:58 PM on August 02, 2008

Read all answers

Editor's Pick

Categories

sawaal signature
sawaal free visiting card