Showing posts with label General. Show all posts
Showing posts with label General. Show all posts

UpWork (oDesk) & Elance Visual Basic Test Question & Answers

18:09 Add Comment
UpWork (oDesk) & Elance Visual Basic Test Question & Answers are really very important to pass UpWork & Elance test. You will get top score at this skill test exam. If you found any problem or wrong answer please inform me via contact or comments. We will try to solve it in short. This test is extremely valuable to acquire knowledge of Visual Basic. Lets Start test.


Ques : Which of the following is the valid stepping option?
Ans  :  Step Behind
        Step forward
        Step Into

Ques : Which property of the Err object returns the numeric value associated with the most recent runtime error?
Ans  : Number

Ques : Which function or method will you use to get a count of the maximum index limit of an array?
Ans  : UBound function

Ques : Procedures declared in a _____ are local whereas procedures declared in a ______ are  available to the whole application.
Ans  : Form window, standard or code module

Ques : The settings for the Color properties in Visual Basic are indicated by:
Ans  : Hexadecimal Coding

Ques : The Load & Activate events are associated with:
Ans  : Form

Ques : In Visual Basic, which method can you use to send key strokes to other Window applications?
Ans  : SendKeys

Ques : Which of the following will provide the best aggregate performance for a query that is not executed repeatedly?
Ans  : Direct execution

Ques : The ____ function returns the numeric value from a string expression:
Ans  : Val

Ques : You are creating a client application that calls ActiveX DLLs. Which of the following properties of the Err object provides the name of a component that sends an error back to the client application?
Ans  : Source

Ques : Which property of the form changes the form's title?
Ans  : Caption

Ques : To destroy an object and free the memory space occupied by it, the keyword used is:
Ans  : Nothing

Ques : Which event occurs only once in the entire life cycle of an ActiveX control?
Ans  : Initialize

Ques : The _______ function enables a VB application to make use of the idle time and to respond periodically to events.
Ans  : DoEvents

Ques : Which object is used for error handling?
Ans  : Err

Ques :Which of the following approaches to data modifications is the least efficient?
Ans  : An update statement executed directly

Ques :  How can you keep the user from exiting a form by clicking the Close button?
Ans  : Place code in the Unload eventIn order to provide a transparent background to the Form, you must change the _________  property to _______.

Ques : In order to provide a transparent background to the Form, you must change the _________  property to _______.
Ans  : BackStyle, Transparent

Ques : What does the controls collection contain?
Ans  : A list of all controls on a form

Ques : Which event procedure is called only if AutoRedraw property is set to false:
Ans  : Form_Paint

Ques : Which three methods does the collection object support?
Ans  : Add, Remove, Item

Ques : To deactivate the Form UnLoad event, you make the following change in the function definiton:

            Private Sub Query_Unload(Cancel as Integer,UnloadMode as Integer)

To prevent the Form from closing, you will set the:
Ans  : Cancel parameter to a non-zero value

Ques :  The ______ function can be used to run any .com, .exe, .bat or .pif file from a Visual Basic program.
Ans  : Shell

Ques : Which of the following procedure types will execute when you assign a value to a property of an object?
Ans  : Property Assign

Ques : Which line of code listed here can be used to create a string of fixed length:
Ans  : None of the above

Ques : Which event of an ActiveX control data provider runs every time a bound control extracts data through the provider?
Ans  : RetrieveData

Ques : Which is the only event of the timer control?
Ans  : Timer

Ques : What you must do before you make calls to an ActiveX DLL project in the same Project Group?
Ans  :  Check the DLL off in your project's Reference List

Ques : The _______ property changes the tab order at runtime:
Ans  : Tab index

Ques : Message Boxes can hold a maximum of _______ characters.
Ans  : 1024

Ques : To store pictures in an array, Visual Basic provides the _____ control.
Ans  : ImageList

Ques : Which of the following situations would not cause the Initialize event of an ActiveX control to occur?
Ans  : When a control is placed on a form at design time

Ques :  You want to display the code and the description of an error. What would be the correct syntax?
Ans  : Msgbox err.number & err.description

Ques : How do you create a read only property in a form?
Ans  : Create only a Property Get procedure

Ques : Which of the following is an event of the Shape control?
Ans  : A shape control does not have events

Ques : Labels do not respond to _____ and ______ events.
Ans  : Got_Focus , Lost_Focus

Ques : Which of the following tools can be used to change the value of a variable or property during break mode of an application?
Ans  : Locals window

Ques : What data type is the HelpContextID?
Ans  : Integer

Ques : The Kill command in Visual Basic is used for:
Ans  :  Deleting files

Ques : A prepared statement is:
Ans  : Query text cached on the client

Ques : Which of the following statements should you write to cause the component to fire an event?
Ans  : RaiseEvent

Ques : Which of the following locking types will lock a recordset only during an Update process and not immediately when the data modifications are requested?
Ans  : Batch optimistic

Ques :  What is the extension of the Visual Basic project file that stores the design of a user control.
Ans  : .ctl

Ques : Consider the following program code:

(i)    Dim FileName as String
       Open FileName For Input As #FreeFile

(ii)   Dim FileName as String
       FileNum = FreeFile
       Open FileName For Input As #FileNum
Ans  : Only (i) is correct

Ques : Variables that allow sharing of values across event procedures are called:
Ans  : Module level variable

Ques : The event Lost_Focus of one object results in _____ of the other object:
Ans  : Mouse_click

Ques : How do you make a control gray and inaccessible in VB?
Ans  : Set enabled to false

Ques : Which of the following methods is used to inform an ActiveX control's container that one of its properties has been modified?
Ans  : PropertyChanged

Ques : Which of the following is the only valid Resume statement in an error handler?
Ans  : Resume next

Ques : If the CancelError Property of the CommonDialog Box is set to true then which of the following statement is true:
Ans  : None of the above

Ques : In order to enable the DBGridControl or the MSFlexGrid Control to display the contents of a table or query, you need to set only the ______ property:
Ans  : DataSource

Ques : One can convert a Visual Basic Application into ActiveX Document using:
Ans  : ActiveX Document Migration Wizard

Ques : Which event of a text box would you use for validating the data entered by the user?
Ans  : Validate

Ques : Which events enable you to determine which key was pressed by the user?
Ans  : KeyPress, KeyUp and KeyDown

Ques : Only Controls with a ________ property such as Picturebox, Toolbox, Statusbar etc. can be placed on an MDI form:
Ans  :  BorderStyle = 0

Ques : How many root nodes can a TreeView control have?
Ans  : No limit

Ques : In order to overlap the controls (say a command button) during design time, we use the 'Send To Back' or 'Bring To Front' option from the Edit menu. To change it dynamically (i.e. during program execution) we need to change:
Ans  : ZOrder property

Ques : What is the default value for the scalemode property of the form?
Ans  : Twip

Ques : Which of the following ADO recordset types provides the greatest degree of concurrency?
Ans  : Dynamic

Ques : Which collection of an ActiveX control enumerates all of the properties that can be bound to a data source?
Ans  : DataFields

Ques : The _______ property enables Visual Basic to draw complete images in memory before displaying them on the Screen.
Ans  : AutoRedraw = True

Ques : Which event should be used to resize an ActiveX control as the user modifies the size of the control implementation on a form?
Ans  : Resize

Ques : Which event is fired when a text box loses focus?
Ans  : LostFocus

Ques : What do CurrentX and CurrentY return?
Ans  : Current X and Y co-ordinates of mousepointer

Ques : Which property of the ProgressBar determines how much of the bar is filled?
Ans  : CurrentVal

Ques : The _______ method loads the form named 'Form1' in to memory and also displays it.
Ans  : Form1.Show

Ques : Which of the following cannot be included in the Open method of the recordset?
Ans  : User Name

Ques : The caption and the name properties of the command button:
Ans  : Can be different at times

Ques : Which of the following statements forces inline error handling?
Ans  :  None of the above

Ques : Which of the following debug tools would you use to locate your current position in a series of embedded procedure calls?
Ans  : Callstack

Ques : Which of the following can be shown to the user using the Common Dialog control in VB?
Ans  :  Open dialog box

Ques : Consider the following subprogram:

        Sub ChangeText(ByVal X as String,Y as String)
          Y = X
        End Sub


If you are calling it using the following code:

            Call ChangeText(Form1.Caption,Y$)
Ans  : The Caption of Form1 will not change

Ques : Visual Basic fires the _______ event everytime a part of the form         is newly exposed.
Ans  : Paint

Ques : What does the forms collection contain?
Ans  : A list of all forms in a project

Ques : You try to initialize a new Object variable with the following line but receive an error. What could be the possible cause?

      Set MyVar = New Classname
Ans  : You do not have the permission to access the class

Ques : What is the sequence of events when a form is unloaded?
Ans  : Unload only

Ques :  In order to change the mouse pointer shape from glass to watch-glass, the property to be used is:
Ans  :  MousePointer

Ques : The _______ method resets the contents of bound controls to their original values when the user clicks on the cancel button.
Ans  : UpdateControls

Ques : Which of the following are not properties of Command Button:
Ans  : Multi-Line

Ques :Which form event would you use to activate a pop-up menu when the user clicks the right mouse button?
Ans  : MouseUp

Ques : The interval property of the Timer control specifies the time in:
Ans  : Milliseconds

Ques : Which of the following compiled elements does not run in process?
Ans  : Standard DLL

Ques : Which method will you use to remove a form from the Screen but retain it in memory?
Ans  : Show method

Ques :  Global Procedures and Global Variables are declared in:
Ans  : Standard (Code) Modules

Ques : What is the sequence in which the following events are triggered when a form is loaded?
Ans  : Initialize, Load, Resize and Paint

Ques :  An ADO dynamic property is:
Ans  : A property that changes value at runtime

Ques : Which event is triggered when the user moves to another open form?
Ans  : Deactivate

Ques : If one needs to use an ampersand(&) in a Label but does not want it to be an Access Key, the _______ property of the label must be set to False.
Ans  : Locked

Ques : In order to access a file in Non-textual format, you have to open file in:
Ans  : Binary Format

Ques : The vbCritical symbol displays:
Ans  :  A critical message icon

Ques : To save a file in a RichTextBox Control and a picture in a Picture Box Control, you will use the _________ and __________ statements, respectively:
Ans  : RichText1.SaveFile, Picture1.SavePicture

Ques : The ______ property is used to show Tool Tips or Help Balloons when the mouse rests on the object:
Ans  : ToolTipText

Ques : Which line of the following code contains an error?

1      public Sub Command1_Click()
2        Dim str As String
2        str = "Hello World"
3        i = val (str)
4        length = strlen(str)
5        Msgbox "No Of Characters in " & str & " = " & CSstr(length)
6      End Sub
Ans  : Error on line 3

Ques : Visual Basic displays information depending upon the current value of two properties of the form, called as:
Ans  : LeftX and LeftY

Ques : After a Dynaset type recordset has been created and opened, further searching is possible using the:
Ans  : FindNext method

Ques : What is the purpose of the Class Builder add-in in Visual Basic:
Ans  : To create new classes and define their properties, methods & events

Ques : Which events allow you to determine if a Control or Shift key was pressed by the user?
Ans  : KeyPress, KeyUp and KeyDown

Ques : You can create menus by the ________ and _________.
Ans  : Menu Editor, Application Wizard

Thanks for watching this test Question & Answers. Please don't forget to leave a comment about this post. You can also find some more effective test question & answers, information, techniques, technology news, tutorials, online earning information, recent news, results, job news, job exam results, admission details & another related services on the following sites below. Happy Working!

UpWork (oDesk) & Elance Visual Basic 6 Test Question & Answers

17:57 Add Comment
UpWork (oDesk) & Elance Visual Basic 6 Test Question & Answers are really very important to pass UpWork & Elance test. You will get top score at this skill test exam. If you found any problem or wrong answer please inform me via contact or comments. We will try to solve it in short. This test is extremely valuable to acquire knowledge of Visual Basic 6. Lets Start test.


Ques : Which of the following cannot be included in the Open method of the recordset?
Ans  : Cursor Type

Ques : You are creating a client application that calls ActiveX DLLs. Which of the following properties of the Err object provides the name of a component that sends an error back to the client application?
Ans  : Number

Ques :  Which event should you use to store property values into the PropertyBag?
Ans  : Terminate

Ques : Which event should be used to resize an ActiveX control as the user modifies the size of the control implementation on a form?
Ans  :  Resize

Ques : The ______ function can be used to run any .com, .exe, .bat or .pif file from a Visual Basic program.
Ans  : Shell

Ques : Consider the following program code:

(i) Dim FileName as String
Open FileName For Input As #FreeFile

(ii) Dim FileName as String
FileNum = FreeFile
Open FileName For Input As #FileNum
Ans  : Both (i) and (ii) are correct

Ques : What data type is the HelpContextID?
Ans  : String

Ques : To store pictures in an array, Visual Basic provides the _____ control.
Ans  : PictureClip

Ques : What is the sequence of events when a form is unloaded?
Ans  : QueryUnload, Unload and Terminate

Ques : What is the default value for the scalemode property of the form?
Ans  : Twip

Ques : Visual Basic displays information depending upon the current value of two properties of the form, called:
Ans  : CurrentX and CurrentY

Ques : Which of the following statements is capable of abandoning a series of modifications made to a recordset locked with a BatchOptimistic lock?
Ans  :  CancelUpdate

Ques : What is the purpose of the Image List Control?
Ans  : To display images to the user

Ques : A __________ control defaults to displaying the files in the current directory:
Ans  : File List Box

Ques : Which property procedure is used to retrieve the value of a property?
Ans  : Retrieve

Ques : Which method will you use to remove a form from the Screen but retain it in memory?
Ans  : Show method

Ques : Which events allow you to determine if a Control or Shift key was pressed by the user?
Ans  : Click and KeyPress

Ques : In order to overlap the controls (say a command button) during design time, we use the 'Send To Back' or 'Bring To Front' option from the Edit menu. To change it dynamically (i.e. during program execution) we need to change:
Ans  : Background color property

Ques : The ____ function returns the numeric value from a string expression:
Ans  : Val

Ques : What do CurrentX and CurrentY return?
Ans  : Current X and Y co-ordinates of mousepointer

Ques :  Variables that allow sharing of values across event procedures are called:
Ans  : Form level variable

Ques : Which of the following approaches to data modifications is the least efficient?
Ans  :  Updating through a cursor using a recordse

Ques : The interval property of the Timer control specifies the time in:
Ans  : Milliseconds

Ques : Which parameter of the WriteProperty method can be omitted but should be included to increase the efficiency of the control?
Ans  : Name

Ques : A project group is a Project which:
Ans  : Consists of several Projects

Ques : What is the purpose of the Class Builder add-in in Visual Basic:
Ans  : To add classes to the current project

Ques : An ADO dynamic property is:
Ans  : A property that changes value at runtime

Ques :   In order to provide a transparent background to the Form, you must change the _________ property to _______.
Ans  : BackStyle, Opaque

Ques : What does the controls collection contain?
Ans  : A list of all controls on a form

Ques : Global Procedures and Global Variables are declared in:
Ans  : Form Modules

Ques : Given the following code segment, how many instances of the form are created and displayed ?

      dim frmvar1 as frmperson,frmvar2 as frmperson
      set frmvar1 = new frmperson
      set frmvar2 = frmvar1
      load frmvar1
      frmvar2.show
Ans  : None

Ques :  Only Controls with a ________ property such as Picturebox, Toolbox, Statusbar etc. can be placed on an MDI form:
Ans  : Showtips

Ques : Whenever the current record is about to change, Visual Basic generates the ______ event:
Ans  : Validate

Ques : Which of the following will provide the best aggregate performance for a query that is not executed repeatedly?
Ans  : Direct execution

Ques : The _______ property enables Visual Basic to draw complete images in memory before displaying them on the Screen.
Ans  : AutoRedraw = True

Ques : Which event of an ActiveX control data provider runs every time a bound control extracts data through the provider?
Ans  : GetDataMember

Ques : One can convert a Visual Basic Application into ActiveX Document using:
Ans  : Visual Database Manager

Ques :  Which function or method will you use to get a count of the maximum index limit of an array?
Ans  :  UBound function

Ques : Which property of the ProgressBar determines how much of the bar is filled?
Ans  : Min

Ques : In order to change the mouse pointer shape from glass to watch-glass, the property to be used is:
Ans  : MousePointer

Ques : The caption and the name properties of the command button:
Ans  : Are one and the same

Ques : In order to access a file in Non-textual format, you have to open file in:
Ans  : Ascii Format

Ques : What is the extension of the Visual Basic project file that stores the design of a user control.
Ans  : .ctx

Ques : After a Dynaset type recordset has been created and opened, further searching is possible using the:
Ans  : FindNext method

Ques : Which method of the Recordset object should you use to navigate multiple recordsets returned by a stored procedure?
Ans  : NewRecordset

Ques :  Which event procedure is called only if AutoRedraw property is set to false:
Ans  : Form_GotFocus

Ques : Which events enable you to determine which key was pressed by the user?
Ans  :  Click and KeyPress

Ques : The Kill command in Visual Basic is used for:
Ans  : Stopping the current process

Ques : Which method would you use to get a free or unused File identifier while opening any file:
Ans  : FreeFile

Ques : Which event is fired when a text box loses focus?
Ans  : LostFocus

Ques :  Message Boxes can hold a maximum of _______ characters.
Ans  : 256

Ques : Which of the following is the only valid Resume statement in an error handler?
Ans  : Resume prior

Ques : Which is the only event of the timer control?
Ans  : Timer

Ques : Consider the following subprogram:

        Sub ChangeText(ByVal X as String,Y as String)
          Y = X
        End Sub


If you are calling it using the following code:

            Call ChangeText(Form1.Caption,Y$)
Ans  : The Caption of Form1 will change to the value contained in Y$

Ques : If one needs to use an ampersand(&) in a Label but does not want it to be an Access Key, the _______ property of the label must be set to False.
Ans  : Caption

Ques : Which property of the Err object returns the numeric value associated with the most recent runtime error?
Ans  : Description

Ques : The event Lost_Focus of one object results in _____ of the other object:
Ans  : Got_Focus

Ques : Which of the following ADO recordset types provides the greatest degree of concurrency?
Ans  : Static

Ques : The ______ property is used to show Tool Tips or Help Balloons when the mouse rests on the object:
Ans  : ToolTipText

Ques :  Which of the following can be shown to the user using the Common Dialog control in VB?
Ans  : Common messages passed to Windows

Ques :  Which property of the form changes the form's title?
Ans  : Name

Ques : In order to enable the DBGridControl or the MSFlexGrid Control to display the contents of a table or query, you need to set only the ______ property:
Ans  : DataSource

Ques : In Visual Basic, which method can you use to send key strokes to other Window applications?
Ans  : AppActivate

Ques :  The _______ property changes the tab order at runtime:
Ans  : Tab stop

Ques : You want the code of the close command button to execute upon pressing the ESC key, even though the focus may be on another control in the form. Which property of the command button would you set to true?
Ans  : Cancel

Ques : Which collection of an ActiveX control enumerates all of the properties that can be bound to a data source?
Ans  : DataFields

Ques : You can create menus by the ________ and _________.
Ans  : Menu Editor, Application Wizard

Ques :   What is the sequence in which the following events are triggered when a form is loaded?
Ans  : Initialize, Load, Resize and Paint

Ques : Procedures declared in a _____ are local whereas procedures declared in a ______ are  available to the whole application.
Ans  : Form window, standard or code module

Ques : Which property of the ListView control determines which field a sort is based on?
Ans  : Sorted

Ques :  The method used to search for records from within a table type recordset object is:
Ans  : LookUp

Ques : Which event is triggered when the user moves to another open form?
Ans  : Unload

Ques : Which of the following is an event of the Shape control?
Ans  : GotFocus

Ques :  Which line of code listed here can be used to create a string of fixed length:
Ans  : Dim strFirstName as String

Ques : Which of the following statements is incorrect regarding toolbars?
Ans  : There can be only one toolbar on a form

Ques : The settings for the Color properties in Visual Basic are indicated by:
Ans  : Decimal Coding

Ques : What does the forms collection contain?
Ans  : A list of all forms in a project

Ques : Which of the following will perform a direct execution of a Command object?
Ans  : The Execute method

Ques : The _______ function enables a VB application to make use of the idle time and to respond periodically to events.
Ans  :  GetTime()

Ques : The Load & Activate events are associated with:
Ans  : All controls

Ques : What you must do before making calls to an ActiveX DLL project in the same Project Group?
Ans  : Compile the DLL

Ques : Name the only property supported by a collection?
Ans  : Name

Ques : Which event of a text box would you use for validating the data entered by the user?
Ans  : Validate

Ques : Which event occurs only once in the entire life cycle of an ActiveX control?
Ans  : Initialize

Ques : How can you keep the user from exiting a form by clicking the Close button?
Ans  : Place code in the Terminate event

Ques : Which of the following debug tools would you use to locate your current position in a series of embedded procedure calls?
Ans  :  Locals window

Ques : You are creating an ActiveX component that raises user-defined errors. Which of the following statements correctly raises an error to the client with error number 20000?
Ans  : Err.Raise vbObjectError + 20000

Ques :  A prepared statement is:
Ans  : Query text cached on the server

Ques : The _______ method loads the form named 'Form1' in to memory and also displays it.
Ans  :  Load Form1

Ques : You want to display the code and the description of an error. What would be the correct syntax?
Ans  : Msgbox err.no & err.text

Ques : If the CancelError Property of the CommonDialog Box is set to true then which of the following statement is true:
Ans  : A runtime error can result if the user clicks the cancel button

Ques : How do you create a read only property in a form?
Ans  : Create only a Property Set procedure

Ques : Which three methods does the collection object support?
Ans  : Let, Get, Set

Ques : Labels do not respond to _____ and ______ events.
Ans  : Got_Focus , Lost_Focus

Ques : The _______ method resets the contents of bound controls to their original values when the user clicks on the cancel button.
Ans  : UpdateControls

Ques : Which of the following is the only drag related event?
Ans  : DragEnter

Ques : You are creating an ActiveX component that raises user-defined errors. What is the valid range of error numbers that you can use for user-defined errors?
Ans  : 1-1000

Ques : Which of the following procedure types will execute when you assign a value to a property of an object?
Ans  : Property Get

Thanks for watching this test Question & Answers. Please don't forget to leave a comment about this post. You can also find some more effective test question & answers, information, techniques, technology news, tutorials, online earning information, recent news, results, job news, job exam results, admission details & another related services on the following sites below. Happy Working!
News For Todays ARSBD UpWorkElanceTests ARSBD-JOBS DesignerTab UpLance

UpWork (oDesk) & Elance Time Management Test Question & Answers

17:53 Add Comment
UpWork (oDesk) & Elance Time Management Test Question & Answers are really very important to pass UpWork & Elance test. You will get top score at this skill test exam. If you found any problem or wrong answer please inform me via contact or comments. We will try to solve it in short. This test is extremely valuable to acquire knowledge of Time Management. Lets Start test.


Ques : Which of the following '5S' tools makes things easier to locate?
Ans  : Standardize

Ques : Which of the following activities is not an example of 'investing' time?
Ans  : Designing a more efficient process

Ques : Which of these is not necessarily a key element of a Time Management plan?
Ans  : Prioritizing goals

Ques : Which of these is a principle of Time Management?
Ans  : Be reactive, not proactive

Ques : The time spent planning an activity should
Ans  : not be included in calculating its overall cost.

Ques : The 'Just-In-Time' approach to production means
Ans  : prioritising 'schedule' above any other variable.

Ques : Who proposed the Pareto principle?
Ans  : Henry Kissinger

Ques : Using __________ is an easy and fast way to achieve consensus on an issue.
Ans  : Delegation

Ques : Which of these techniques is usually associated with the Nominal Group Technique?
Ans  : Delphi Method

Ques : Which of the following is NOT a sensible way of handling stress?
Ans  :  Increased alcohol consumption.

Ques : What do the lengths of the bars in a Pareto chart indicate?
Ans  : Urgent Tasks

Ques : Which of the following exacerbates rather than actually causes stress?
Ans  : Excess workload.

Ques : Which of these is a time stealer?
Ans  :  Red Tape

Ques : Which is the first step in a Time Management schedule?
Ans  : Reviewing your plan

Ques : What are 'displacement activities'?
Ans  : Activities undertaken to put off starting something more difficult.

Ques : Which of the following statements is/are true?

i)You should not worry about things you cannot change.
ii)You should always set yourself unachievable targets so that you are always striving as hard as possible.
Ans  : Only i is true

Ques : According to Time Management principles, meetings are _______
Ans  : primarily about avoiding getting on with real work.

Ques : Which of the following is NOT an application of a Gantt chart?
Ans  :  Mapping the dependencies between activities.

Ques : Delivering a motivating speech to employees can best be described as __________.
Ans  : investing time.

Ques : Which of the following statements is/are true?
i)It is generally better to implement a fit-for-purpose rather than perfect solution.
ii)Non-IT-based tools should not be used to assist in planning one's time.
Ans  : Only i is true

Ques : Which of the following statements is/are true?
i)Time should not be wasted in reviewing performance, but used to plan the next task.
ii)To be of any value, monitoring activities must result in decisions being made.
Ans  : Only ii is true

Ques : Which of the following statements is/are true?
i)It is generally more efficient to respond to crises as they arise rather than invest time in preventing them.
ii)An effective process should never be modified.
Ans  : Only ii is true

Ques : For effective time management, SMART objectives should be set.  Which of the following is not part of the acronym 'SMART'
Ans  : Achievable

Ques : Which of the following symptoms could NOT be the result of stress?
Ans  : Headaches

Ques : Which of the following statements is/are true?
i)Deadlines are always a motivating factor.
ii)Time management principles do not apply to the staff primarily engaged In routine tasks.
Ans  : Only ii is true

Ques : Which of the following techniques was/were created by Jiro Kawakita?
Ans  : Nominal Group Technique

Ques : Which of the following statements is/are true?
i)For optimal performance, work should be entirely stress-free.
ii)Stress only applies to work-related issues.
Ans  : Only ii is true

Ques : Which of these is a hindrance in overcoming procrastination?
Ans  : Following a Time Management schedule

Ques : Which of the following might hinder the implementation of a Time Management approach?
i)Highly-motivated employees
ii)Lack of funds to invest in tools
iii)Predictable tasking
iv)Workplace culture
Ans  : Only i and ii

Ques : In which of the following situations would investing time be inadvisable?
Ans  :  Where the cost of the investment is high.

Ques : Which of the following variables must be balanced against 'schedule' to assess the effectiveness of a process?
i)Quality
ii)Scale
iii)Cost
Ans  : Only ii

Ques : Which of the following statements is/are true?
i)Managers who delegate usually experience lower absenteeism and staff turnover.
ii)Someone who manages their time efficiently should never have to refuse to take on a task.
Ans  : Only ii is true

Ques : ________ is a drive and a stimulus that helps you to accomplish goals.
Ans  : Motivation

Ques : A/An ___________ is a specialized chart that exhibits data collected in such a way that important points necessary for the process under improvement can be demarcated.
Ans  : Time Chart

Ques : Which of the following is the best definition of 'spending' time?
Ans  : Using time unproductively.

Ques : Conducting a 'time and motion study' is primarily a means of:
Ans  : identifying underperforming workers.

Ques : Which of the following may affect your ability to handle stress?
i)Illness
ii)Hormones
iii)Tiredness
Ans  :  Only i

Ques : Which of the following statements is/are true?
i)Some types of tasks are better suited to certain times of the day than others.
ii)It is always better to prioritize 'urgent' tasks above 'important' ones.
Ans  : Only i is true

Ques : According to the '5S' approach, which of the following implies keeping your environment clean and clear?
Ans  : Setting in Order

Ques : A/an ________ is an organized set of schedules which lists the time and the task/s to be executed.
Ans  : timetable

Ques : In which of the following situations is 'Nominal Group Technique' used?
i)When the group has new members
ii)When some members are not participating
iii)When tasks are allotted scores according to their importance
iv)When the manager wants to reduce his workload
Ans  : Only ii and iii

Ques : 'Pareto Analysis' is also known as the ________ rule.
Ans  :  80/20

Ques : Which of the following statements is/are true?
i)Time should not be invested in training unskilled staff.
ii)Investing time incurs short-term opportunity costs.
Ans  : Both are true

Ques : 'Load-smoothing' is best defined as:
Ans  :  minimising risk by using multiple suppliers.

Ques : Which of the following is NOT an effect associated with a 'Just-In-Time' approach to production?
Ans  :  Increased vulnerability to the reliability of suppliers.

Ques : Which of these does not get increased when you adopt a Time Management schedule?
Ans  : Efficiency

Ques : On what basis are the scores allotted in an Action Priority Matrix?
i)The effect of the activity that is undertaken
ii)The time that gets wasted in procrastination
iii)The effort involved in doing the work
Ans  : None of the above

Ques : Which of the following statements is/are true?
i)A complicated task is best decomposed into a series of discrete, manageable tasks.
ii)It is better to switch frequently between concurrent tasks rather than complete them sequentially.
Ans  : Only ii is true

Ques : Every item is allotted a/an _________ in Time Charts.
Ans  : house

Thanks for watching this test Question & Answers. Please don't forget to leave a comment about this post. You can also find some more effective test question & answers, information, techniques, technology news, tutorials, online earning information, recent news, results, job news, job exam results, admission details & another related services on the following sites below. Happy Working!
News For Todays ARSBD UpWorkElanceTests ARSBD-JOBS DesignerTab UpLance

UpWork (oDesk) & Elance C Programming Test Question & Answers

17:42 Add Comment
UpWork (oDesk) & Elance C Programming Test Question & Answers are really very important to pass UpWork & Elance test. You will get top score at this skill test exam. If you found any problem or wrong answer please inform me via contact or comments. We will try to solve it in short. This test is extremely valuable to acquire knowledge of C Programming. Lets Start test.


Ques : Which of the following statements will result in a compilation error?
Ans  :  int n=5, x; x= ++n++;
        int n=5, x; x= (n+1)++;
        int n=5, x=6; x= (n+x)++;


Ques : Which of the following statements are correct for the keyword register?
Ans  : It requests that the variable be kept in the CPU register for maximum speed
       It does not guarantee that the variable value is kept in CPU register for maximum speed

Ques : Which is/are the type/s of memory allocation that needs/need the programmer to take care of memory management?
Ans  : Dynamic memory allocation
       Memory allocation on stack

Ques : Given the array:

int num[3][4]= {
                    {3,6,9,12},
                    {15,25,30,35},
                    {66,77,88,99}
                    };
what would be the output of *(*(num+1)+1)+1?
Ans  : 26

Ques : Given the array:

int num[3][4]=
{
{3,6,9,12},
{15,25,30,35},
{66,77,88,99}
};

what would be the output of *(*(num+1))?
Ans  : 15

Ques : What would be printed on the standard output as a result of the following code snippet?

main()
{
        int i=5;
        char option = 5;
        switch(option)
        {
                case '5':
                                printf("case : 1 \n");
                                break;
                case i:
                                printf("case : 2 \n");
                                break;
                default:
                                printf("case : 3 \n");
                                break;
        }
        return 0;
}
Ans  : Result in compilation error

Ques : What is the return value in case a file is not opened successfully by using fopen()?
Ans  : NULL

Ques : What will be the output of following code?

int main()
   {
      int i;
      i = 0;
      for (i = 1; i <2 b="" i="">
      {
          i++;
          printf( "%d", i );
          continue;
          printf( "%d", i );
      }
      return 0;
   }
Ans  : 2

Ques : What would be printed on the standard output as a result of the following code snippet?

char *str1 = "Hello World";
strcat(str1, '!');
printf("%s", str1);
Ans  : The code snippet will throw a compilation error

Ques : Given the following array:

int a[8] = {1,2,3,4,5,6,7,0};
what would be the output of
        printf("%d",a[4]); ?
Ans  : 5

Ques : In order to read structures/records from a file, which function will you use?
Ans  :  fscanf()

Ques :  An array is defined with the following statement in a file, file1.c

        int a[ ] = { 1, 2, 3, 4, 5, 6 };

In another file, file2.c, the following code snippet is written to use the array a:

extern int a[];
int size = sizeof(a);

What is wrong with the above code snippet?
Ans  : An extern array of unspecified size is an incomplete type. The size of the operator during compile time is unable to learn the size of an array that is defined in another file

Ques : What would be printed on the standard output as a result of the following code snippet?

main()
{
        char *s="Hello World";
        char s1[20], s2[20];
        int len = sscanf(s,"%s",s1);
        printf("%s : %d", s1, len);
}
Ans  : Hello : 1

Ques :  Suppose there is a file a.dat which has to be opened in the read mode using the FILE pointer ptr1, what will be the correct syntax?
Ans  :  ptr1 = fopen("a.dat","r");

Ques : Given the following array:
     
char books[][40]={
                         "The Little World of Don Camillo",
                         "To Kill a Mockingbird",
                         "My Family and Other Animals",
                         "Birds, Beasts and Relatives"
                         };
what would be the output of printf("%s",books[3]);?
Ans  : Birds, Beasts and Relatives

Ques : What would be printed on the standard output as a result of the following code snippet?

void main()
{
    unsigned char a=25;
    a = ~a;
    signed char b = 25;
    b = ~b;
    printf("%d %d ", a, b);
}
Ans  : 230 -26

Ques : What will be printed on the standard output as a result of the following code snippet?

void main()
{
        int num1 = 30, num2 = 4;
        float result;
        result = (float)(num1/num2);
        printf("%.2f", result);
        return 0;
}
Ans  : 7.00

Ques : Which of the following is/are the correct signature/s of main with command line arguments?
Ans  :  int main(int argc, char *argv[])

Ques : From which of the following loop or conditional constructs, is "break" used for an early exit?
Ans  :  All of the above

Ques : Given the operators:

1) *
2) /
3) %

What would be the order of precedence?
Ans  : 1 and 2 have the same precedence, 3 is of lower precedence

Ques : Which of the following declarations of structures is/are valid?

        1)
                struct node {
                int count;
                char *word;
                struct node next;
                }Node;
        2)
                struct node {
                int count;
                char *word;
                struct node *next;
                }Node;
        3)
                struct node {
                int count;
                char *word;
                union u1 {
                        int n1;
                        float f1;
                }U;
                }Node;
Ans  : 1,2,3

Ques : What would be printed on the standard output as a result of the following code snippet?

main()
{
        int n=5, x;
        x = n++;
        printf("%d ", x);
        x = ++n;
        printf("%d ", x++);
        printf("%d", x);
        return 0;
}
Ans  : 5 7 8

Ques : In which area of memory are static variables allocated?
Ans  :   heap

Ques : Read the statement below:

extern int a;

Which of the following statement/s pertaining to the above statement is/are correct?
Ans  :  Brings the scope of the variable defined outside the file to this file

Ques : What would be printed on the standard output as a result of the following code snippet?

main()
{
char *pmessage = "asdfgh";
*pmessage++;
printf("%s", pmessage);
return 0;
}
Ans  : sdfgh

Ques :  Which function returns the current pointer position within a file?
Ans  : ftell()

Ques : Which of the following is a function for formatting data in memory?
Ans  : sprintf()

Ques : Which function allocates memory and initializes elements to 0?
Ans  :   calloc()

Ques : Is the following statement correct? If not, why not? If yes, what is the size of the array?

int array[][3] = { {1,2}, {2,3}, {3,4,2} };
Ans  : Yes, the size is three columns by two rows

Ques : Which of the following sets of conversion statements may result in the loss of data?
Ans  :    int i; float f; i=f; f=i;

Ques : Consider the following code.

int i = 4, *j, *k;

Which one of the following statements will result in Compilation error?
Ans  : j = j * 2;

Ques : By which file function you can position the file pointer in accordance with the current position?
Ans  : fseek()

Ques : What will be printed on the standard output as a result of the following code snippet?

void main()
{
        int arr[][2] = {1,2,3,4,5,6};
        printf("%d",arr[2][1]);
}
Ans  : 6

Ques : Which function will you use to position the file pointer at the beginning of the file?
Ans  : rewind()

Ques : Which header file are methods(or macros) isalpha(), islower() a part of?
Ans  :  ctype.h

Ques : What will be printed on the standard output as a result of the following code snippet?

void main()
{
    int i,j,k;
    i=4;
    j=30;
    k=0;
    k=j++/i++;
    ++k;
    printf("%d %d %d",i,j,k);
}
Ans  :  5 31 8

Ques :  What would be printed on the standard output as a result of the following code snippet?

main()
{
enum {red, green, blue = 6, white};
printf("%d %d %d %d", red, green, blue, white);
return 0;
}
Ans  :  0 1 6 7

Ques : What would be printed on the standard output as a result of the following code snippet?

main()
{
    int a[5] = {1,4,5,6,9};
    printf("%d\t", *a);    //Line 1
    printf("%d", *++a);    //Line 2
return 0;
}
Ans  : Compilation Error in "Line 2"

Ques : Which of the following standard functions is used to close a file?
Ans  :  fclose()

Ques : Identify the incorrect statement.
Ans  : Memory is reserved when a structure label is defined

Ques : Which of the following comparison statements will be true if an integer is 16 bits and a long is 32 bits on a machine?
Ans  : -1L > 1U

Ques :  Which of the following is the correct way of initializing a two-dimensional array?
Ans  :  char str[2][4]={ {'a','b','c','\0'}, {'d','e','f','\0'} };

Ques :   Which function will you use to write a formatted output to the file?
Ans  :  fprintf()

Ques : What would be printed on the standard output as a result of the following code snippet?

main()
{
        char option = 5;
        switch(option)
        {
                case '5':
                                printf("case : 1 \n");
                                break;
                case 5:
                                printf("case : 2 \n");
                                break;
                default:
                                printf("case : 3 \n");
                                break;
        }
        return 0;
}
Ans  : case : 2

Ques : What would be printed on the standard output as a result of the following code snippet?

#define func(t, a, b) { t temp; temp=a; a=b; b=temp; }
main()
{
        int a=3, b=4;
        float c=4.5, d = 5.99;
        func(int, a, b);
        func(float, c, d);
        printf("%d %d ", a, b);
        printf("%.2f %.2f\n", c, d);
}
Ans  : 4 3 5.99 4.50

Ques : What would be printed on the standard output as a result of the following code snippet?

main()
{
        void addup (int b);
                addup(b);
        return 0;
}
int b = 5;
void addup (int b)
{
        static int v1;
        v1 = v1+b;
        printf("%d ", v1);
}
Ans  : Will result in Compilation Error

Ques : Given the following array declaration:

       int a[2][3][4];
what would be the number of elements in array a?
Ans  : 24

Ques : Which file header is to be included for file handling in a C program?
Ans  : stdio.h

Ques : What is the return type of the following function declaration?

func(char c);
Ans  : undefined

Ques : What is the function to concatenate two strings?
Ans  :      strcat()

Ques : Which of the following statements is valid and correct?
Ans  : char amessage[] = "lmnop"; amessage++;

Ques : Which of the following is not a valid mode for opening a file?
Ans  : i

Ques : Given the following array:

        char books[][40]={
                         "The Little World of Don Camillo",
                         "To Kill a Mockingbird",
                         "My Family and Other Animals",
                         "Birds, Beasts and Relatives"
                          };
what would be the output of printf("%c",books[2][5]);?
Ans  : m

Ques : What will be printed on the standard output as a result of the following code snippet?

void main()
{
        char arr[] = {'R','A','M','\0'};
        printf("%d",strlen(arr));
}
Ans  : 3

Ques : Which function will convert a string into a double precision quantity?
Ans  : atof()

Ques : Which of the following is not a type of operator ?

Ans  : Ternary

Ques : The declaration int *(*p)[10] indicates:
Ans  :  p is a pointer to an array of integer pointers

Ques : What is the output of the following program ?

main()
{

int u = 1, v = 3;
printf("%d %d",u,v);
funct1(&u,&v);
printf(" %d %d\n",u,v);
}

void funct1(int *pu, int *pv)
{
*pu=0;
*pv=0;
return;
}
Ans  :  1 3 0 0

Ques : What would be printed on the standard output as a result of the following code snippet?

main( )
{
char *str[ ] = {
"Manish"
"Kumar"
"Choudhary"
};
printf ( "\nstring1 = %s", str[0] );
printf ( "\nstring2 = %s", str[1] );
printf ( "\nstring3 = %s", str[2] );
}
Ans  : string1 = ManishKumarChoudhary string2 = (null) string3 = (null)

Ques : Which standard function is used to deallocate memory allocated by the malloc() function?
Ans  : free

Ques : The declaration int (*p[5])() means:
Ans  : p is an array of pointers to functions the return type of which is an integer

Ques :What will be printed on the standard output as a result of the following code snippet?

void main()
{
        int arr[5]={1,2,3,4,5};
        printf("%d\n", *(arr+4));
}
Ans  : 5

Ques : What does the argv[0] represent?
Ans  :  The program name

Ques : What will happen when the following code is executed?

void main()
{
    char arr1[] = "REGALINT";
    char arr2[10] = "REGALINT";
    printf("%d,",sizeof(arr1));
    printf("%d",sizeof(arr2));
}
Ans  :   9,10

Ques : What would be printed on the standard output as a result of the following  code snippet?

main()
{
        enum {red, green, blue = 0, white};
        printf("%d %d %d %d", red, green, blue, white);
        return 0;
}
Ans  : 0 1 0 1

Ques : What is wrong with the following function prototype statement?

int func();
Ans  : While calling a function, the type int is not needed

Ques : What will be printed on the standard output as a result of the following code snippet?

void main()
{
        char arr[] = {'R','A','M'};
        printf("%d",strlen(arr));
}
Ans  : Cannot be determined

Ques : Which of the following is not a storage type?
Ans  :  auto

Ques :If a two dimensional array arr[4][10](an array with 4 rows and 10 columns) is to be passed in a function, which of the following would be the valid parameters in the function definition?
Ans  :  fn(int arr[4][10])

Ques : Which of the following is not a string function?
Ans  : strcomp()

Ques : What would be printed on the standard output as a result of the following code snippet?

char i = 'A';
char *j;
j = & i;
*j = *j + 32;
printf("%c",i);
Ans  : a

Ques : What will be printed on the standard output as a result of the following code snippet?

void main()
{
        char arr1[] = "REGALINT";
        printf("%d,",strlen(arr1));
        printf("%d",sizeof(arr1));
}
Ans  : 8,9

Ques : What will be printed on the standard output as a result of the following code snippet?

int funr(int x, int y)
{
        if(x <= 0)
        {
                   return y;
        }
        else
        {
                return (1+funr(x-1,y));
        }
}

void main()
{
    printf("%d",funr(2,3));
}
Ans  : 5

Ques : What would be printed on the standard output as a result of the following code snippet?

#define Name Manish
main()
{
printf("My name""Name");
}
Ans  : My nameName

Ques : What will be printed on the standard output as a result of the following code snippet?

main()
{
        int num = 425;
        printf("%d", printf("%d", num));
}
Ans  : 4253

Ques : What would be printed on the standard output as a result of the following code snippet?

main()

{

        signed char i = 1;

        for (; i<=255; i++)

        printf ("%d ",i);

        return 0;

}
Ans  : 1 2 3 . . . 127 -128 -127 ... 0 1 2 3 . . . (infinite times)

Ques :   What would be printed on the standard output as a result of the following code snippet?

#define max(a, b) ((a) > (b)?(a):(b))
main()
{
        int a=4;
        float b=4.5;
        printf("%.2f\n",max(a, b));
}
Ans  : 4.50

Ques :  Which of the following is not a file related function?
Ans  : puts()

Ques : What would be printed on the standard output as a result of the following code snippet?

#define max(a, b)((a) > (b)?(a):(b))
main()
{
int a=4, c = 5;
printf("%d ", max(a++, c++));
printf("%d %d\n", a,c);
}
Ans  : 6 5 7

Ques : Which of the following file modes would mean read + append?
Ans  : a+

Ques : What would be printed on the standard output as a result of the following code snippet?

int Recur(int num)
{
if(num==1 || num==0)
return 1;
if(num%2==0)
return Recur(num/2)+2;
else
return Recur(num-1)+3;
}

int main()
{
        int a=9;
        printf("%d\n", Recur(a));
        return 0;
}
Ans  : 10

Ques : What will happen when the following code is executed?

{
int num;
num =0;
do {-- num;
printf("%d\n", num);
num++;
} while (num >=0);
}
Ans  : The loop will run infinitely

Ques : Which of the following functions is used to extract formatted input from a file?
Ans  :  fscanf()

Ques : What does the following function do?

int fn(unsigned int x)
{
        int count = 0;
        for(; x!=0; x&=(x-1))
                count++;
        return count;
}
Ans  : Returns the number of 1 bits(bits having one) in the number x

Thanks for watching this test Question & Answers. Please don't forget to leave a comment about this post. You can also find some more effective test question & answers, information, techniques, technology news, tutorials, online earning information, recent news, results, job news, job exam results, admission details & another related services on the following sites below. Happy Working!
News For Todays ARSBD UpWorkElanceTests ARSBD-JOBS DesignerTab UpLance

UpWork (oDesk) & Elance Objective-C Test Question & Answers

14:33 Add Comment
UpWork (oDesk) & Elance Objective-C Test Question & Answers are really very important to pass UpWork & Elance test. You will get top score at this skill test exam. If you found any problem or wrong answer please inform me via contact or comments. We will try to solve it in short. This test is extremely valuable to acquire knowledge of Objective-C. Lets Start test.


Ques : Which of the following is the fastest?
Ans  : Mutex implicit locking

Ques : How do you free an object?
Ans  :  [obj release]

Ques :  What is the isa variable in objects?
Ans  : Object class identification

Ques : What is true regarding C functions inside .m files?
Ans  : They can contain Obj-C code

Ques : What does the following imply?

Worker *ceo = [[Worker alloc] init];
ceo->boss = nil;
Ans  : That the boss instance variable is declared @public

Ques : Can you send messages to nil?
Ans  : Yes

Ques :  In which version of Objective-C did the fast enumeration system appear?
Ans  : 2.0

Ques : What comments are supported in Obj-C?
Ans  :  // Line comments

Ques : What type of variable do you need to use to implement singletons?
Ans  : static

Ques : As categories can't have instance variables, what class could you use to implement a full class only with categories?
Ans  :  NSMutableDictionary

Ques : How do you throw an exception?
Ans  : @throw exception

Ques : What is true regarding strings?
Ans  : Obj-C strings are not of static storage

Ques : How do you include the root "Object" class?
Ans  : It depends on the compiler

Ques : What is true regarding @protected?
Ans  : The instance variable is accessible within the class that declares it and within classes that inherit it

Ques : What is a protocol?
Ans  :  An interface without an implementation

Ques :  Which of the following is incorrect?
Ans  : [AClass release]

Ques : How do you allocate an object?
Ans  : MyClass *obj = [MyClass alloc];

Ques : What will be the output of the following code?

static int
a (void)
{
printf ("a\n");
return 0;
}

static int
b (void)
{
printf ("b\n");
return 1;
}

static int
c (void)
{
printf ("c\n");
return 2;
}

int
main (int argc, const char *argv[])
{
printf ("%d %d %d", a (), b (), c ());
return 0;
}
Ans  : a b c 0 1 2

Ques : What is nil?
Ans  : The null object

Ques : Can an exception caught in @catch be re-thrown?
Ans  : Yes

Ques : What class specifiers are supported?
Ans  : There is no such thing as class specifiers

Ques : Which of the following declares a protocol?
Ans  : @protocol ProtocolName

Ques : What is the Obj-C runtime?
Ans  : A C library

Ques : What's the difference between copy and deepCopy?
Ans  : copy creates a copy at the first level, while deepCopy copies the instance variables

Ques : Which of the following can be inherited?
Ans  : Protocols

Ques : A method can be tagged to be called only by a specific class and its subclasses.
Ans  : False

Ques : Which of the following is not recommended?
Ans  : None of the above

Ques : A class can have two methods with the same name, but with different argument types.
Ans  : False

Ques : What are @try and @catch?
Ans  :  Exception keywords

Ques : A class can conform to only one protocol.
Ans  : False

Ques : Which of the following creates a class that conforms to a protocol?
Ans  : @interface ClassName

Ques : What is the id type?
Ans  :  A generic C type that Objective-C uses for an arbitrary object

Ques : What is a @finally block?
Ans  :  A block of code that is run whenever an exception is thrown or not

Ques : Is the following code a correct allocation?

MyClass myObj;
[&myObj aMessage];
Ans  : No

Ques : What is not supported in Obj-C?
Ans  : Method argument default value

Ques : Which of the following does not happen when you throw an exception in a @synchronized block?
Ans  : The object is deallocated

Ques : What can be linked to an Obj-C program without any particular process?
Ans  : C libraries

Ques : What is the C type used to work with objects in Obj-C?
Ans  : pointer

Ques : What is a category?
Ans  :  A category is a way to add methods to a class which already exists

Ques : Protocols are like classes; they can inherit.
Ans  : True

Ques : Which of the following is false?
Ans  : When a method is called, the send is automatically available as the sender variable, like self or super

Ques : What happens if two categories define methods with the same names for the same class?
Ans  :  At runtime, either method will be called

Ques : What can you do with categories?
Ans  : Add methods to a class without subclassing it

Ques : In which version of Objective-C did the properties system appear?
Ans  :  2.0

Ques : What is the default visibility for instance variables?
Ans  : @protected

Ques : What happens if you release an unretained object twice?
Ans  : MemoryException is raised

Ques : In Obj-C 2.0, what do the fast enumeration protocols rely on to provide fast Enumerations?
Ans  :  C arrays

Ques : What can you use to avoid the msgSend function overhead?
Ans  : SEL

Ques : Which C feature is not supported in Obj-C?
Ans  :  Support is compiler dependant

Ques : What does Obj-C not support?
Ans  : Automatic variables

Ques : When using the garbage collector, which method, that is normally called without the collector, is not called on your objects where they are collected?
Ans  : dealloc

Ques : What can be used as Object instance variables?
Ans  : pointers

Ques : What is a SEL?
Ans  : A pointer to a method

Ques : What is an IMP?
Ans  : The C type of a method implementation pointer

Ques : What is true regarding @public?
Ans  : It breaks encapsulation

Ques : What is an autoreleased object?
Ans  : An object that will be released when the current AutoreleasePool is deallocated.

Ques : If you need to allocate custom memory, in which method will you do so?
Ans  : None of the above

Ques : What is #import
Ans  :  C preprocessor construct to avoid multiple inclusions of the same file

Ques : What is true regarding messaging?
Ans  :  Messaging is fully dynamic, which means you can compile some code that sends a message to a class that doesn't implement it, and add a category later, in a dynamic library for example

Thanks for watching this test Question & Answers. Please don't forget to leave a comment about this post. You can also find some more effective test question & answers, information, techniques, technology news, tutorials, online earning information, recent news, results, job news, job exam results, admission details & another related services on the following sites below. Happy Working!
News For Todays ARSBD UpWorkElanceTests ARSBD-JOBS DesignerTab UpLance

UpWork (oDesk) & Elance Management Skills Test Question & Answers

10:19 Add Comment
UpWork (oDesk) & Elance Management Skills Test Question & Answers are really very important to pass UpWork & Elance test. You will get top score at this skill test exam. If you found any problem or wrong answer please inform me via contact or comments. We will try to solve it in short. This test is extremely valuable to acquire knowledge of Management Skills. Lets Start test.


Ques : Which of the following is a current liability of a business?
Ans  : Debtors

Ques : Which of the following characterise a 'differentiation'-based business model?
1.High sales volume
2.High profit margin
3.Well-regarded brand
4.High-quality manufacture
Ans  : 1,2 and 4

Ques : Which item appears in both the balance sheet and the profit and loss account?
Ans  : Sales

Ques : What does the term 'Unity of Control' stand for under Principles of Organizing?
Ans  : That there should be a limit to the number of persons that can be supervised effectively by one boss.

Ques : A Mission Statement: ------------------- .
Ans  :  provides information as to what the organization is trying to achieve.

Ques : Which term refers to an activity or a series of activities that transform inputs into outputs?
Ans  : Process

Ques : Computers have helped immensely in the design and development of products for the manufacturing sector. With reference to this statement, which computer-related technology supports the above statement?
Ans  : CAD

Ques : Which of the following is correctly ordered as a Management Process?
Ans  :  Planning, Organizing, Staffing, Directing, Co-ordinating, Controlling

Ques : Which one of the following is not the function of Personnel Management?
Ans  : Training and development of employees.

Ques : Which of the following is generally an inappropriate reason for delegation?
Ans  :  Someone else is better qualified to do the task that needs to be done.

Ques : Which of the following is not a financial statement?
Ans  : Statement of Cash Flow

Ques : Long-term budgets are useful for those industries where the gestation period is long. Which of the following is not relevant to the above statement?
Ans  : Electricity

Ques : A tool to plot the duration of activities in a project and its dependencies is named after:
Ans  : Henry Gantt

Ques : Which of the following is not included in calculating working capital?
Ans  :  Stock of work in progress

Ques : A manager is seeking to introduce new working conditions. Which of the following is the best way to gain employees' cooperation?
Ans  :    Send an email to the entire staff informing them of the new conditions.

Ques : A tool for evaluating organizational performance across the full range of a business is known as a 'balanced ________'.
Ans  : scorecard

Ques :   What is the main advantage of employing staff on a temporary basis?
Ans  :  Improved productivity

Ques : Which of the following statements is false?
Ans  : Decision-making should involve key stakeholders.

Ques : Which of the following can be used as a term for Supervisor?
Ans  :  Area manager

Ques : Which of the following is not a feature of a good organizational structure?
Ans  : Simple and flexible structure

Ques : Which ratio shows an organization's effectiveness in minimizing production costs?
Ans  : Gross profit ratio

Ques : A member of the Board of Directors of a company who is not an employee of the company is called a-------------------- .
Ans  :  non-executive director

Ques : Which one of the following best completes the sentence: "Division of work promotes ____________."
Ans  :  Effective management

Ques : The degree to which a company owns its upstream suppliers and its downstream buyers is known as---------------- .
Ans  : monopolization

Ques : Which of the following is not a key function of leadership?
Ans  :   Closely monitoring the execution of tasks.

Ques : Which two factors are combined to evaluate the size of risks facing an organization?
Ans  :  Probability and Scale.

Ques : If a company's productivity is rising, it means ------------ .
Ans  :  output is rising at a faster rate than costs.

Ques : Which of the following best completes the sentence: "Repetitive decisions are known as _____________ ."
Ans  : standard decisions

Ques :  If a manager is attempting to establish motivational goals for his employees, which of the following should he do?
Ans  :  Involve subordinates in the goal-setting process

Ques : Jack Smith was reviewing the performance of his employees and was trying to decide which of them could profit the most from some additional managerial involvement. Listed below are the four employees he is considering. Everything else being equal, which of the following employees will benefit from the additional managerial involvement as a result of his/her performance being most appreciated?
Ans  : Baker, who has been employed with the firm in a variety of related positions for nearly fifteen years.

Ques : Which one of the following is not the purpose of Performance Appraisal?
Ans  : It can serve as a basis for job change or promotion.

Ques : Delegation takes place when ______________.
Ans  : a superior abrogates responsibility for a task.

Ques : Which of the following is an external source of recruitment?
Ans  : Staff returning from maternity leave

Ques : Selling stock not actually owned in the expectation that the price will fall is known as----------------------- .
Ans  : short-selling

Ques :  Why does a business analyze its financial accounts to assess its solvency?
Ans  :  To monitor depreciation.

Ques : Which of the following is neither a cash in-flow nor cash out-flow?
Ans  : Depreciation

Ques : Which of the following is not a function of a 'transactional' leader?
Ans  : Recognizing and clarifying roles and task requirements.

Ques : In which of the following circumstances is the directive method of introducing planned change inappropriate?
Ans  :  When the employees are achievement-motivated and willing to accept the change.

Ques : Budgetary control systems involve ______________.
Ans  : Preparation of budgets

Ques : Which of the following are incorrect?
1.Policies are established after a thorough study and analysis of work. Procedures are often established without any study and analysis.
2.Policies help us in fulfilling the objectives of the enterprise. Procedures show us the way to implement policies.
3.Policies are specific and lay down the sequence of definite acts. Procedures are generally broad and allow some discretion.
4.Policies are general guides to both thinking and action of people at higher levels. Procedures are general guides to action only, usually at lower levels.
Ans  : 2 and 4

Ques : Which is not a characteristic of a 'democratic leader' as identified by Lewin, Lippitt and White?
Ans  :  Involving subordinates in decision-making.

Ques : Which of the following is incorrect?
Ans  :  Operations Research Techniques can be effectively applied in many situations where the underlying variables cannot be quantified, e.g. situations involving human qualities and interpersonal relations.

Ques : Which of the following activities should not be outsourced?
Ans  : Core business

Ques :  Self-regulation, one of the characteristics of an effective leader, is defined as the ability to -----.
Ans  :  control oneself and to reflect in complex situations.

Ques : Which of the following characterizes the difference between Managers and Leaders?
Ans  : Managers are concerned with directing others; leaders tend to do the work themselves

Ques : According to the team roles identified by Belbin, a 'plant' is someone who is------------- .
Ans  : good at turning ideas into action

Ques : Which term refers to a document that sets out an organization's 'rules' regarding a particular issue?
Ans  : Policy

Ques : An employee's desire and commitment to perform that is manifested in job related effort defines his/her----------------------- .
Ans  : ability

Ques : In the 'situational' leadership style, the manager is concerned with ___________.
Ans  : human relations and teamwork

Ques : Which of the following would help a company manufacture products to the standard required by the customer?
Ans  : Quality control

Ques : If the financial year starts in January, the Fixed Budget will be prepared ------------ .
Ans  :  a month or two earlier

Ques : Which term refers to an internal framework for ensuring that an organization behaves responsibly?
Ans  : Strategy

Ques : Which of the following statements is not likely to characterize a planning approach to strategy development?
Ans  : Strategies are developed by negotiation and bargaining between interest groups

Ques : What is a 'stakeholder map'?
Ans  : A means of plotting the location of customers.

Ques : According to the Myers-Briggs classification of personality types, the opposite of 'perception' is--------------- .
Ans  : judgment

Ques : According to Bruce Tuckman's model of group development, which is the second stage through which a team passes?
Ans  : Storming

Ques : There are some important measures which a company can use to determine the effects of training. Which of the following is not one of them?
Ans  : Job applications

Ques : Which one of the following best completes the sentence:
The principle of 'Unity of Command' is concerned with ------------------ .
Ans  : activities

Ques : Set-up costs that make it difficult for new companies to enter a particular market are known as--------------------- .
Ans  : barriers to entry

Ques : Which of the following defines 'apprenticeship' training?
Ans  :  A method of training meant to give the trainee sufficient knowledge and skill in those trades and crafts in which a long period of training is required for gaining complete proficiency.

Ques : In decentralization, subordinates ----------------- .
Ans  : are no longer managed

Ques :   If a subordinate is having difficulty carrying out a delegated task, what should a manager do?
Ans  : Be available as a role model and resource in identifying alternative solutions.

Ques : Which of the following are not legitimate risk management options?
1.Terminate
2.Turn
3.Tolerate
4.Treat
5.Test
6.Transfer
Ans  : 2 and 3

Ques : Which motivation strategy is characterized by a high emphasis on performance and a low emphasis on satisfaction?
Ans  : Imposing

Ques : Which of the following represents the implementation of a 'Just-in-Time' production approach?
Ans  :  Having a large supply of materials ready to be processed.

Ques : Which of the listed management functions involves creating an environment where everyone works together to achieve the common goals of the organization?
Ans  : Organizing

Ques : Recruitment, selection, and training is a function of-------------- .
Ans  : staffing

Ques : The 'Principle of Order' applies to-------------- .
Ans  : right person in right job

Ques : Operations can be classified according to their volume and variety of production, as well as the degree of variation and visibility. Which of the following operations would be classified as high-volume, low-variety?
Ans  : A front-office bank's

Ques :  In which order would the following strategic planning activities take place?
1.Evaluating performance
2.Devising strategy
3.Documenting plans
4.Executing plans
Ans  : 3, 2, 1, 4

Ques : Which of the following constitutes a fixed asset in a business?
Ans  : Stock

Ques : 'Span of Control' relates to the ------------ .
Ans  : number of persons to be supervised

Ques : In which context are the terms Unfreezing and Refreezing used?
Ans  : Management of Change

Microsoft PowerPoint 2010 Test
Computer Skills, Computer, Skills, Microsoft, PowerPoint, Graphics, Designing, UpWork, Elance, oDesk
Ques : What feature lets you have several shows within the same presentation, for example, a 30-minute show and a 60-minute show?
Ans  : Custom Shows

Ques : What does the Broadcast Slide Show feature do?
Ans  : It broadcasts your presentation for remote viewers to watch in a web browser

Ques : How do you insert a new slide master into a presentation?
Ans  : In Master View, click the Insert Slide Master button

Ques : Which of the following properties allows you to set the orientation of the notes/handouts/outline of a Microsoft PowerPoint 2010 presentation?
Ans  : Layout

Ques :  In addition to turning on the slide numbers in the Header and Footer dialog on the Insert menu, you also need a ___________ available on the slide masters and layouts.
Ans  : Placeholder

Ques : Which State whether True or False:

When adding commands to the Ribbon, you must first create a custom group for those commands
Ans  : False

Ques : What does the Remove Background tool do?
Ans  : Removes graphics from a slide background

Ques : When you double-click the file icon on your desktop, your presentation should open in Slide Show View as a full-screen presentation. Which file format will you use to save your presentation so it behaves in this manner?
Ans  : .ppsx

Ques : How would you play a sound as background music throughout a presentation?
Ans  : Insert the sound on the slide master and on the Audio Tools Playback tab, choose Start: Play Across Slides

Ques : What does a trigger animation do?
Ans  : Starts an animation when an object is clicked

Ques : To add a second animation to an object you must
Ans  :  Click Add Animation on the Animations tab of the Ribbon

Ques : Which of the following is not true regarding Action buttons in Microsoft PowerPoint 2010?
Ans  :  Action buttons contain mathematical values.

Ques : Which of the following views displays the slides in thumbnail form, as shown in the picture?
Ans  : Slide Sorter view

Ques : Refer to the given image. Which table style option should be selected when the last row of the table has to be emphasized?
Ans  : B

Ques : Which of the following is an invalid file name for saving a Microsoft PowerPoint 2010?
Ans  : AB*CD

Ques : What does the Animation Painter do?
Ans  : Applies animations from one object to another

Ques : Suppose you've created a SmartArt Diagram on your slide, but then you decided you want to use a different diagram. How can you change the SmartArt Diagram without starting over completely?
Ans  : Choose another layout from the SmartArt Layouts gallery

Ques : What does the Compare tool do?
Ans  :  Compares changes in two presentations

Ques : Suppose you have 5 slides in your presentation and you want to print specific slides 3 to 5. Which of the following ranges is correct?
Ans  :  3-5

Ques :   What type of animation does this yellow icon denote?
Ans  :   Emphasis

Ques :   Which of the following is true about the symbol denoted as 'A' in the picture?
Ans  :  This symbol appears when you add either an animation or a transition to a slide.

Ques : What has been applied to transform the picture on the left to the one on the right?
Ans  : An Artistic Effect

Ques :  Which of the following is not a category of transition?
Ans  :  Emphasis

Ques :  In Microsoft PowerPoint 2010, how would you crop a picture to an exact set of dimensions?
Ans  : Under Picture Tools, on the Format tab, in the Size group, click Dialog Box Launcher, then Crop. Enter the size numbers in the Width, Height, Left and Top boxes.

Ques : What is the "Browsed at a kiosk" option in the Set Up Show dialog box used for?
Ans  : It sets the exact length of time for a slide to appear.

Ques : Which of the following options would you choose to turn off the narration?
Ans  :   On the Slide Show tab, in the Set Up group, click Set Up Slide Show. Select the 'Show without narration' check box.

Ques :   How do you change the colors of a SmartArt Diagram?
Ans  : Use the Change Colors button on the SmartArt Design tab

Ques : When you paste slides into a presentation, how do you maintain their original formatting?
Ans  : Right-click in the Slides Pane and click the "Keep Source Formatting" icon in the Paste Options area

Ques : Which file format includes macros that can be used in a presentation?
Ans  : .pptm

Ques : How will you enable or disable Message Bar alerts in Microsoft PowerPoint 2010?
Ans  : Click on the File Menu, then click Options. Click on Trust Center, then click Trust Center Settings, and then click Message bar.

Ques :How would you write on the slides during a slide show?
Ans  :   In the Slide Show view, right-click on the slide that you want to write on, point to Pointer Options, and then click on a pen or a highlighter option. Hold down the left mouse button and drag to write.

Ques : How do you display the keyboard accelerators in Microsoft PowerPoint 2010?
Ans  : Press and hold the ALT button

Ques :  Which of the following tools does not appear on the Arrange dropdown on the Home tab?
Ans  : Size and position

Ques :       Refer to the given image.

Which of the following fill options does not have a transparency option?
Ans  : D

Ques : State whether True or False:

You can add your own placeholders to the Slide Layouts.
Ans  : True

Ques : Which chart type is represented in the given picture?
Ans  : XY (scatter) charts

Ques : How will you read comments that reviewers have added to your presentation?
Ans  : On the Review tab, in the Comments group, click on Show Markup.

Ques : How would you create text in the shape of a half-circle?
Ans  : Drawing Tools Format, Text Effects, Transform

Ques : What type of hidden data and personal information cannot be detected by the Document Inspector in Microsoft PowerPoint 2010?
Ans  :  It cannot remove pictures that are added to the notes section of a presentation.

Ques : By default, when you paste a chart from Excel into PowerPoint 2010, is it linked or embedded?
Ans  : It is embedded

Ques : You've applied an Orbit transition to a slide. How do you make it enter from the bottom instead of the right?
Ans  : Use the Effect Options button on the Transitions tab

Ques : How do you adjust the hanging indent in a bulleted list?
Ans  : Drag the indent markers on the ruler

Ques : In which video file format does the Create a Video feature save the presentation in Microsoft Powerpoint 2010.
Ans  : WMV

Ques :  Which picture format maintains transparency in Microsoft PowerPoint 2010?
Ans  : .png

Ques : You've applied a motion path animation to an object and locked it. When you move the object on the slide in Normal editing View, the locked motion path does what?
Ans  : Moves with the object

Ques : Which of the following paste options is used to paste a slide and maintain its original formatting?
Ans  : A

Ques : Which of the following defines the correct purpose of using a poster frame image?
Ans  : To add still image introduction to the video

Ques : How do you turn on the Developer tab in Microsoft PowerPoint 2010?
Ans  :  Choose File, Options, Customize the Ribbon, and click the box to choose Developer Tab in the Main Tabs command well

Ques : How do you apply a template to just a few slides in a presentation?
Ans  : Select the slides, then right-click the template or theme in the Design Gallery and choose Apply to Selected Slides

Ques : How would you add a logo to all the slides in a presentation?
Ans  : In the Slide Master View, add the logo to the blank slide layout.

Ques : State whether True or False:

You can change the orientation of just a few slides in the presentation.
Ans  : False

Ques : What is the use of the SmartArt Graphic Control in Microsoft PowerPoint 2010 as shown in the picture?
Ans  : It is used to display the Text Input Pane.

Ques : Which of the following is not a View type in Microsoft PowerPoint 2010?
Ans  : Reading view

Ques : Which of the following views allows the user to add pictures to the printed notes?
Ans  : Handout Master View

Ques : How do you save a Microsoft PowerPoint 2010 presentation as a video file?
Ans  : Choose File -> Save & Send -> Create a Video

Ques : Which of the following presentation views would you select when you need to change a placeholder that appears on multiple slides?
Ans  : Slide Master View

Ques : How will you hide a slide in Microsoft PowerPoint 2010?
Ans  : All of the above

Ques : When your cursor is in the last cell of a table, what does pressing Tab do?
Ans  : Adds a row at the bottom of the table

Ques :  What does the Set Transparent Color Wand do?
Ans  : Makes one color in a picture or clip art transparent

Ques : Which type of sound files can be embedded in a presentation?
Ans  :  All of the above

Ques : How do you turn off the video control bar so that it doesn't show when your presentation is in Slide Show View?
Ans  : On the Slide Show tab, uncheck Show Media Controls

Ques : What is meant by Slide Transitions?
Ans  : They are animation-like effects that occur in the Slide Show View when the user moves from one slide to the next.

Ques : Which option adds an icon on a slide master as shown in the picture?
Ans  :  Master layout

Ques :  What tool is being used?
Ans  : Remove Background

Ques : Which of the following animation Effect Options will you choose when you want the SmartArt diagram to animate piece by piece?
Ans  : One by one

Ques : How do you add a shape to a SmartArt Diagram?
Ans  : Use the Add Shape button on the SmartArt Tools Design tab

Ques : How do you resize a picture and maintain its aspect ratio?
Ans  :  Press SHIFT and drag the corner of the picture

Ques :  What does the Reset button on the Home tab do?
Ans  : Returns placeholders to their original positions and formatting

Ques : What is the quickest method to import multiple photographs into a slide show, two on each slide?
Ans  : Apply a multiple-picture layout to several slides and use the Clip Art icon in the placeholders to import your pictures.

Ques : Which of the following is a feature of the Selection and Visibility pane?
Ans  : All of the above

Ques : Which of the following handles is indicated by 'A' as shown in the picture?
Ans  : The Cropping handle.

Ques : What is one way to ensure that the sound icon doesn't show in the presentation?
Ans  : All of the above

Ques : In the Customize Ribbon dialog, choosing Reset All Customizations does what?
Ans  : It restores both the Ribbon and the Quick Access Toolbar to the default settings.

Ques : What is one thing the Compress Pictures feature does?
Ans  :  Decreases the contrast of all pictures in the presentation

Ques : The image given above is that of the Recording toolbar, which appears when you Rehearse Timings. What does the part of the toolbar marked 'A' in the image refer to?
Ans  : It displays the slide time.

Ques : How would you remove the first two minutes from a 5-minute video that's been inserted into a Microsoft PowerPoint 2010 presentation?
Ans  :  On the Video Tools Playback tab of the Ribbon, choose Trim Video

Ques : Which of the following areas can be used in a slide to add Text?
Ans  :  All of the above

Ques : Refer to the given image.

What happens if you click the icon marked A?
Ans  : It takes you to Normal View.

Ques : Which of the following options is not included under the File tab in Microsoft PowerPoint 2010?
Ans  : Page Layout

Ques : You have applied a circle motion path to an object. How do you make the object animate counterclockwise instead of clockwise?
Ans  : On the Animations tab of the Ribbon, click Effect Options and choose Reverse Path Direction

Ques : Which multimedia file formats can be embedded into Microsoft PowerPoint 2010?
Ans  :  .wmv

Ques :  Refer to the given picture. What does the icon marked 'A' on the status bar represent?
Ans  : None of the above

Thanks for watching this test Question & Answers. Please don't forget to leave a comment about this post. You can also find some more effective test question & answers, information, techniques, technology news, tutorials, online earning information, recent news, results, job news, job exam results, admission details & another related services on the following sites below. Happy Working!
News For Todays ARSBD UpWorkElanceTests ARSBD-JOBS DesignerTab UpLance