0% found this document useful (0 votes)
19 views9 pages

Sample Accenture Set1 Technical Assesment

Uploaded by

mrgofear
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
19 views9 pages

Sample Accenture Set1 Technical Assesment

Uploaded by

mrgofear
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 9

(1)A collection of hyperlinked documents on the internet forms the ?.?

*(a)World Wide Web (WWW)


(b)E-mail system
(c)Mailing list
()Hypertext markup language

(2)Which one of the following is not true?


(a) kernel remains in the memory during the entire computer session
*(b) kernel is made of various modules which can not be loaded in running operating system
(c) kernel is the first part of the operating system to load into memory during booting
(d) kernel is the program that constitutes the central core of the operating system

(3)Which of the following is true with regard to the ping command?


(a)Ping stands for Packet Internet Generator.
(b)The ping command checks the port level connectivity between source destinations and
end points.
*(c)Ping summarizes the packet loss and round-trip delay between two IP end points.
(d)The ping command activates the RARP protocol of the IP layer.

(4)The portion of the process scheduler in an operating system that dispatches processes
is concerned with ____________
(a) assigning ready processes to waiting queue
(b) assigning running processes to blocked queue
*(c) assigning ready processes to CPU
(d) all of the mentioned

(5)The IP network 192.168.50.0 is to be divided into 10 equal sized subnets. Which of the
following subnet masks can be used for the above requirement?
(a)255.243.240
*(b)255.255.0.0
(c)255.255.0
(d)255.255.255
(6)The _________ presents a uniform device-access interface to the I/O subsystem,
much as system calls provide a standard interface between the application and the
operating system.
*(a) Device drivers
(b) I/O systems
(c) Devices
(d) Buses

(7)If there are N routers from source to destination, the total end to end delay in sending
packet P(L-> number of bits in the packet R-> transmission rate) is equal to
______________
(a) N
*(b) (N*L)/R
(c) (2N*L)/R
(d) L/R

(8)What are the characteristics of stack based IDS?


(a) It is programmed to interpret a certain series of packets
(b) It models the normal usage of the network as a noise characterization
*(c) They are integrated closely with the TCP/IP stack and watch packets
(d) The host operating system logs in the audit information

(9)Which programming paradigm emphasizes on writing code that is easy to read and
maintain?
(a) Procedural programming
*(b) Object-oriented programming
(c) Functional programming
(d) Structured programming

(10)Transmission control protocol ___________


(a) is a connection-oriented protocol
(b) uses a three way handshake to establish a connection
(c) receives data from application as a single stream
*(d) all of the mentioned
(11)Which data structure is used for storing a collection of elements in a non-linear
fashion?
(a) Array
(b) Stack
(c) Queue
*(d) Tree

(12)Identify the incorrect statement regarding FTP.


(a) FTP stands for File Transfer Protocol
(b) FTP uses two parallel TCP connections
*(c) FTP sends its control information in-band
(d) FTP sends exactly one file over the data connection

(13)Which of the following is not a valid variable name in most programming languages?
(a) myVariable
*(b) 123Variable
(c) _myVariable
(d) my_variable

(14)The total nodal delay is given by ____________


(a) dnodal = dproc – dqueue + dtrans + dprop
(b) dnodal = dproc + dtrans – dqueue
*(c) dnodal = dproc + dqueue + dtrans + dprop
(d) dnodal = dproc + dqueue – dtrans – dprop

(15)In SCSI disks used in high end PCs, the controller maintains a list of _________ on the
disk. The disk is initialized during ________ formatting which sets aside spare sectors
not visible to the operating system.
(a) destroyed blocks, partitioning
*(b) bad blocks, low level formatting
(c) destroyed blocks, high level formatting
(d) bad blocks, partitioning
(16)Which of the following is a popular open-source database management system?
*(a) MongoDB
(b) Oracle
(c) Microsoft SQL Server
(d) IBM DB2

(17)Find the answer for the following pseudocode:


Integer j
Integer arr[2][2] = {{0,2}, {1,3}}
arr[0][0]=arr[0][1]&arr[1][0]
if((arr[0][1]&6)<arr[0][1])
arr[1][1]=4+arr[1][1]
End if
arr[0][1]=arr[1][1]+4)^arr[0][1]
if((1+3)<(7-arr[1][1]))
arr[0][1]=arr[0][1]+4)+arr[0][1]
Else
arr[0][1]=(8+11)&arr[1][1]
End if
Print arr[1][1]+arr[0][1]+arr[1][1]
(a)3
(b)21
(c)15
*(d)9

(18)In C, parameters are always


*(a)Passed by value
(b)Passed by reference
(c)Non-pointer variables are passed by value and pointers are passed by reference
(d)Passed by value result

(19)Which of the following is not a web browser?


(a) Chrome
(b) Safari
(c) Firefox
*(d) Photoshop
(20)Which of the following is a type of cloud computing service?
(a) Infrastructure as a Service (IaaS)
(b) Platform as a Service (PaaS)
(c) Software as a Service (SaaS)
*(d) All of the above

(21)Microsoft Word, Microsoft Excel, and Microsoft PowerPoint are the part of
*(a) Microsoft Office Suite
(b) Microsoft Windows
(c) Mac OS X
(d) None of these

(22)Using Print Preview is useful when you want to-


(a) Color the document
(b) Save the document
(c) Delete the document
(d) Copy the document
*(e) View how trip document will appear when printed

(23)What will be the output of the following C++ code?


#include <iostream>
#include <string>
using namespace std;
int main(int argc, char const *argv[])
{
char s1[6] = "Hello";
char s2[6] = "World";
char s3[12] = s1 + " " + s2;
cout<<s3;
return 0;
}
(a) Hello
(b) World
*(c) Error
(d) Hello World
(24)Why do bugs and failures occur in software?
(a) Because of Developers
(b) Because of companies
*(c) Because of both companies and Developers
(d) None of the mentioned

(25)Which of the following is not a commonly used web development framework in


JavaScript?
(a) React
(b) Angular
(c) Vue.js
*(d) Django

(26)Which one of the following is an internet standard protocol for managing devices on an
IP network?
(a) dynamic host configuration protocol
*(b) simple network management protocol
(c) internet message access protocol
(d) media gateway protocol

(27)Which programming language is used for developing iOS apps?


(a) Java
(b) C#
(c) Python
*(d) Swift

(28)A feature of MS Office that saves the document automatically after certain interval is
called ____
(a)Save
(b)Save as
*(c)Auto Save
(d)Backup
(29)Which statement is true about Java?
(a) Java is a sequence-dependent programming language
(b) Java is a code dependent programming language
(c) Java is a platform-dependent programming language
*(d) Java is a platform-independent programming language

(30)What will be the output of the following Java program?


class variable_scope {
public static void main(String args[])
{
int x;
x = 5;
{
int y = 6;
System.out.print(x + " " + y);
}
System.out.println(x + " " + y);
}
}
*(a) Compilation error
(b) Runtime error
(c) 5 6 5 6
(d) 5 6 5

(31)Which of the following is a type of polymorphism in Java Programming?


(a) Multiple polymorphism
*(b) Compile time polymorphism
(c) Multilevel polymorphism
(d) Execution time polymorphism

(32) In HTTP pipelining ________________


*(a) multiple HTTP requests are sent on a single TCP connection without waiting for the
corresponding responses
(b) multiple HTTP requests can not be sent on a single TCP connection
(c) multiple HTTP requests are sent in a queue on a single TCP connection
(d) multiple HTTP requests are sent at random on a single TCP connection
(33)Which of the following alignment cannot be placed where the tab stops?
(a) Decimal Alignment
(b) Center Alignment
(c) Bar Alignment
(d) Justify Alignment
*(e) None of the above

(34)Which of the following is a type of computer network?


(a) Local Area Network (LAN)
(b) Wide Area Network (WAN)
(c) Metropolitan Area Network (MAN)
*(d) All of the above

(35)What purpose do bookmarks serve?


(a) To save the document in a specific location
*(b) To save a website’s URL for future reference
(c) To use the document for search
(d) To save alignments as it is.
(e) None of the above

(36)The conditional GET mechanism


(a) Imposes conditions on the objects to be requested
(b) Limits the number of response from a server
*(c) Helps to keep a cache upto date
(d) None of the mentioned

(37)What will be the output of the following Java code snippet?


class abc {
public static void main(String args[]) {
if(args.length>0)
System.out.println(args.length);
}
}
*(a) The snippet compiles and runs but does not print anything
(b) The snippet compiles, runs and prints 0
(c) The snippet compiles, runs and prints 1
(d) The snippet does not compile
(38)Which of the following is not a feature of DBMS?
(a) Minimum Duplication and Redundancy of Data
(b) High Level of Security
*(c) Single-user Access only
(d) Support ACID Property

(39)What is the order of precedence in python?


(a) Exponential, Parentheses, Multiplication, Division, Addition, Subtraction
(b) Exponential, Parentheses, Division, Multiplication, Addition, Subtraction
(c) Parentheses, Exponential, Multiplication, Division, Subtraction, Addition
*(d) Parentheses, Exponential, Multiplication, Division, Addition, Subtraction

(40)What are the values of the following Python expressions?


2**(3**2)
(2**3)**2
2**3**2
*(a) 512, 64, 512
(b) 512, 512, 512
(c) 64, 512, 64
(d) 64, 64, 64

You might also like