Copa 2024 File
Copa 2024 File
1
1. SILARIS.PVT.LTD.VIKASPURI
1 NOV 2023
JATIN CHOPRA
A-39 VISHNU GARDEN
NEW DELHI-110018
Dear, Ramesh
SILARIS Company is pleased to offer you the position of Assistant Director, Customer Relations. Your
skillsand experience will be an ideal fit for our customer service department.
As we discussed, your starting date will be 11 DEC 2023.The starting salary is 18,000 per year and is paid on a
weekly basis. Direct deposit is available.
Full family medical coverage will be provided through our company's employee benefit plan and will be
effective on 11 DEC 2023. Dental and optical insurance are also available. SILARIS offers a flexible paid time-
off plan which includes vacation, personal, and sick leave. If you choose to accept this job offer, please sign the
second copy of this letter and return it to me at your earliest convenience.
When your acknowledgment is received, we will send you employee benefit enrollment forms and an employee
handbook which details our benefit plans and retirement plan. We look forward to welcoming you to the
SILARIS team.
Please let me know if you have any questions or I can provide any additional information.
Sincerely,
MANUSHI SHARMA
Director, Human Resources
SILARIS Company
Signature
Date
2
2. Salary Increment Letter
2 DEC 2023
SILARIS.PVT.LTD,VIKASPURI
I have been working with your organization from past three years as a (Assistant Director) with full dedication
at work and I have completed all the targets and task within deadline and my attitude in dealing with colleagues
and superiors was excellent.
As I am receiving a low payment and I got my last increment two years ago, I have requested for hike in my
salary a lot of times but there was no response from your side.
I am asking for you to climb my pay as my present pay is low to keep up my family costs. I got an offer from
Convergys and the pay is comparatively higher than what it is now. If you don't mind investigate this demand
and resolve my concern as ahead of schedule as could reasonably be expected.
Much thanks to you and seeking after a positive reaction from you.
Sincerely,
JATIN CHOPRA
(Assistant Director)
SILARIS.PVT.LTD,VIKASPURI
3
3. Mail merge: step 1
4
Mail merge: step 5
5
Mail merge: step 6
6
The steps to macros are as follows –
You can give your macro any name that you’d like, as long as there are
no spaces in the name.
Once you have recorded all of the desired formatting changes and text
insertions, click “Stop Recording” on the Developer tab, and your macro
is now ready to use.
If you want to customize the icon that will appear on the toolbar,
select “Modify” and choose whichever icon you’d like to.
Click OK. You should now see your newly assigned icons at the top of your ribbon,
on your Quick Access toolbar. To run the macro, simply click on the icon.
7
4. INSERT HYPERLINK
First write a paragraph of which you want as a link.
8
5. Insert Picture
1. Open the Word document in which you wants to insert the picture.
2. Click the place in your document where you want the picture to appear.
9
6. EXCEL
10
7: Space and Time
Stephen Hawking talks about how the Aristotle theory of absolute space came to an end by the Newton's
theory that 'rest' and 'motion' can be the same state if an observer sees the event at rest or if he moves with the
same speed as that of the event. So 'rest' can't be the standard position. Moreover, Galileo Galilei also disproves
Aristotle theory that heavier body falls more quickly than the lighter one just because of its mass. He
experimentally proves it by sliding objects of different weights, and even concludes that both these object
would fall at same rate and would reach the bottom at the same time, unless external force acts on them.
James Clerk Maxwell-1999
BIBLIOGRAPHY
Hawking, s. (1988). A times of history . london .
11
- Setting margins;
Page colour, watermark and page borders.
Font customizations.
Page setup.
Paragraph spacing.
12
8. Salary sheet
13
14
Program No. – 09
class Hello
{
public static void main(String args[])
{
System.out.println("Welcome to Java!");
}
}
Output:-
16
Program no-10
Write a program for object and class in java.
class Rectangle
{
privateintl,b;
public void setDimension(intx,int y)
{
l=x;
b=y;
}
publicint area()
{
return l*b;
}
public void display()
{
System.out.println("Length="+l);
System.out.println("Breadth="+b);
}
public static void main(String ac[])
{
Output:
17
18
Program No. – 11
classCommandLineArgument
{
public static void main (String arr[])
{
try
{
int a=Integer.parseInt(arr[0]); int
b=Integer.parseInt(arr[1]); int
sum=a+b;
System.out.println("result is =" +sum);
}
catch(Exception e)
{
System.out.println(e);
}
}
}
Output:
19
20
12. WRITE A PROGRAM TO FIND SIMPLE INTEREST
USING DEFAULT ARGUMENT
#include<iostream.h>
#include<conio.h>
#include<stdio.h>
float interest(int p,int t,float r=0.15)
{
return(p*t*0.15);
}
void main()
{
int p,t,inter;
cout<<"enter the principle";
cin>>p;
cout<<"enter the time period in year";
cin>>t;
inter=interest(p,t);
cout<<"the interest is "<<inter;
getch();
}
OUTPUT
21
13. C Program to check whether the given integer is positive or
negative
#include <stdio.h>
#include<conio.h>
void main()
{
int num;
Output 1.
Enter a number:
0
0 is neither positive nor negative
Output 2.
Enter a number:
-3
-3 is a negative number
Output 3.
Enter a number:
100
100 is a positive number
22
14. Program to find largest number using if statement
#include<stdio.h>
#include<conio.h>
int main() {
return 0;
}
OUTPUT.
Enter first number: 10
Enter second number: 50
Enter third number: 1
50.000000 is the largest number
23
15. Program to add two integer numbers
#include <stdio.h>
int main() {
OUTPUT
24
16. C Program to check if number is even or odd
#include<stdio.h>
int main()
{
// This variable is to store the input number
int num;
return 0;
}
OUTPUT
ENTER AN INTEGER- 66
66 IS AN EVEN NUMBER
25
17. C Program to check if a number is palindrome or not
#include <stdio.h>
int main()
{
int num, reverse_num=0, remainder,temp;
printf("Enter an integer: ");
scanf("%d", &num);
OUTPUT.
ENTER IS AN INTEGER- 123321
123321 IS A PALINDROME NUMVBER
26
18. C program to calculate and print the value of nPr
#include <stdio.h>
void main()
{
int n, r, npr_var;
OUTPUT.
Enter the value of n:
5
Enter the value of r:
2
The value of P(6,2) is: 30
27
19. C Program to calculate Area and Circumference of Circle
#include <stdio.h>
int main()
{
float Pi=3.14, area, circumference, radius;
return 0;
}
OUTPUT.
Enter radius of circle: 4
Area of circle is: 50.240002
Circumference of circle is: 25.120001
28
20 Create a static webpage using table tags of HTML
<html>
<body>
<TABLE BORDER="1" CELLPADDING="2">
<CAPTION ALIGN="Top"><b>Specification Table with Hours and
Marks<CAPTION>
<TR>
<TH ROWSPAN="2">Unit No.</TH>
<TH ROWSPAN="2">Unit Title</TH>
<TH ROWSPAN="2">Teaching Hours</TH>
<TH Colspan="4">Distribution of Theory Marks</TH>
</TR>
<TR>
<TD>R Level </TD>
<TD>U Level </TD>
<TD>A Level </TD>
<TD>Total Marks </TD>
</TR>
<TR>
<TD> <center>I </TD>
<TD>Introduction to Internet Technology</TD>
<TD><center>2</TD>
<TD><center>4</TD>
<TD><center>4</TD>
<TD><center>0</TD>
<TD><center>8</TD>
</TR>
<TR>
<TD> <center>II </TD>
<TD>Basics of HTML & CSS</TD>
<TD><center>6</TD>
<TD><center>0</TD>
<TD><center>2</TD>
<TD><center>6</TD>
<TD><center>8</TD>
</TR>
<TR>
<TD> <center>III </TD>
<TD>Active Server Pages 3.0</TD>
<TD><center>6</TD>
<TD><center>4</TD>
<TD><center>8</TD>
<TD><center>0</TD>
<TD><center>12</TD>
</TR>
<TR>
<TD> <center>IV </TD>
<TD>Server Side Coding with VBScript and XML</TD>
<TD><center>8</TD>
<TD><center>2</TD>
<TD><center>4</TD> 29
<TD><center>8</TD>
</TR> <TD><center>14</TD>
<TR>
<TD> </TD>
<TD><center><b>Total</TD>
<TD><center><b>42</TD>
<TD><center><b>18</TD>
<TD><center><b>26</TD>
</tr> <TD><center><b>26</TD>
</TABLE> <
</body>
</html>
OUTPUT
30
21. Create a static web page which defines all text formatting tags of HTML in
tabular format
<html>
<body>
<center>
<table border=1>
<caption align="top"><font size="+2" color="red">Text Formatting
Tags</font> </caption>
<tr>
<th>HTML Tag</th>
<th>Output</th>
</tr>
<tr>
<td>normal text</td>
<td>hello world</td>
</tr>
<tr>
<td>Font & its attributes</td>
<td><FONT SIZE="+2" COLOR="#RRGGBB"> hello world
</FONT></td>
</tr>
<tr>
</tr>
</tr>
<tr>
</tr>
<tr>
</tr>
<tr>
</tr>
<tr>
</tr>
<tr>
</tr>
<tr>
</tr> 31
<tr>
<td><B> </STRIKE></td>
</td>
<td><B> Bold
</B></td>
<td><I>
</td>
<td><I> Italic
</I></td>
<td><U>
</td>
<td><U>
Underline
</U></td>
<td><EM&
gt;</td>
<td><EM>
Emphasis
</EM></td>
<td><STRO
NG></td>
<td><STRON
G> STRONG
</STRONG><
/td>
<td><TELE
TYPE></
td>
<td><TT>
TELETYPE
</TT></td>
<td><CITE
></td>
<td><CITE>
Citation
</CITE></td>
<td><STRI
KE></td>
<td><STRIKE 32
> strike-
through text
<tr>
<td><BIG></td>
<td><BIG> text in a big font </BIG></td>
</tr>
<tr>
<td><SMALL></td>
<td><SMALL> text in a small font <SMALL></td>
</tr>
<tr>
<td><SUB></td>
<td>a<SUB> b </SUB></td>
</tr>
<tr>
<td><SUP></td>
<td>a<SUP> b</SUP></td>
</tr>
</table>
</body>
</html>
OUTPUT
33
22. Create employee registration webpage using HTML form objects
<html>
<body>
<Center>
<img src="employee_icon.png" height=52 width=52>
<Font size="+3" color=red>Employee Registration Form</font>
<form method=post action="prac.html">
<table>
<tr>
<td></td>
<td><input type=radio name=initial checked>Mr.
<input type=radio name=initial>Mrs.
<input type=radio name=initial>Ms.</td>
</tr><tr>
<td>First Name</td>
<td><input type=text name=fn placeholder="First Name"></td>
</tr><tr>
<td>Last Name</td>
<td><input type=text name=ln placeholder="Last Name"></td>
</tr> <tr>
<td>Mail Address1</td>
<td><input type=text name=add1></td>
</tr><tr>
<td>Mail Address2</td>
<td><input type=text name=add2></td>
</tr><tr>
<td>City</td>
<td><input type=text name=ct></td>
</tr><tr>
<td>State</td>
<td><select name=state>
<option value="Gujarat">Gujarat
<option value="Maharastra">Maharastra
<option value="Karnataka">Karnataka
<option value="Delhi">Delhi
</select>
</td>
</tr><tr>
<td>Zip</td>
<td><input type=text name=zp></td>
</tr><tr>
<td>Upload Photo</td>
<td><input type=file name=photo></td>
</tr><tr>
<td>E-Mail</td>
<td><input type=text name=email size=30></td>
</tr><tr>
<td>Mobile</td>
<td><input type=text name=mob placeholder="+91"></td>
</tr><tr>
<td>Languages known</td>
<td><input type=checkbox name=lk value=Gujarati
checked>Gujarati</td> 34
i >Marathi</td>
t </tr><tr>
y <td>Additional Information</td>
p <td><textarea name=add rows=3 cols=20
e placeholder="Optional" wrap></textarea></td>
= </tr><tr>
<td></td>
v <td><input type=submit value=submit> <input
a type=reset value=reset></td>
l </table>
u </form>
e </body>
= </html>
E
n
g OUTPUT
l
i
s
h
c
h
e
c
k
e
d
>
E
n
g
l
i
s
h
<
/
t
d
>
</tr><tr>
<td></td>
<td><input
type=checkbo 35
x name=lk
value=Marath
S .no Practical List Sign
15 Write a program for object and class in java.
28. Create a static web page which defines all text formatting tags
of HTML in tabular format.
29.
Create employee registration webpage using HTML form
objects.
1
23. JavaScript Program to Print Hello World
<html>
<body>
<script type="text/javascript">
alert("Hello World");
</script>
</body>
</html>
Output
24. A simple login form using HTML and Java script
<html>
<head>
<title> Login Form</title>
</head>
<body>
<h3> LOGIN </h3>
<formform ="Login_form" onsubmit="submit_form()">
<h4> USERNAME</h4>
<input type="text" placeholder="Enter your email id"/>
<h4> PASSWORD</h4>
<input type="password" placeholder="Enter your password"/></br></br>
<input type="submit" value="Login"/>
<input type="button" value="SignUp" onClick="create()"/>
</form>
</html>
OUTPUT